/* =========================
      LISTIO LP — CSS LIMPO (3 CORES)
      - #292929 (charcoal)
      - #BFF542 (lime)
      - #F0F1E9 (off)
    ========================== */

:root {
  /* Primary */
  --green: #BFF542;
  --green-dark: #A3D435;
  --green-subtle: #EDFCC9;

  /* Neutrals */
  --ink: #1A1A18;
  --charcoal: #292929;
  --muted: #6B6B66;
  --surface: #F4F4F4;
  --canvas: #F8F8F8;
  --line: #E2E3D8;
  --white: #FFFFFF;

  /* Legacy aliases (keep for backward compat) */
  --lime: var(--green);
  --bg: var(--white);
  --off: var(--canvas);
  --line-strong: rgba(26, 26, 24, .22);

  /* Border radius */
  --r-sm: 6px;
  --r-md: 8px;
  --r-lg: 12px;
  --r-xl: 16px;
  --r-2xl: 24px;
  --r-pill: 9999px;

  /* Legacy radius aliases */
  --radius-xl: var(--r-2xl);
  --radius-lg: var(--r-xl);
  --radius-md: var(--r-lg);

  /* Layout */
  --container: 1120px;
  --pad: 22px;

  /* Typography */
  --title-weight: 600;
  --text: 18px;
  --lh: 1.6;

  /* Type scale */
  --t-hero: clamp(32px, 4.2vw, 52px);
  --t-h2: clamp(32px, 3.2vw, 40px);
  --t-card: 20px;
  --t-metric: 30px;

  /* Muted variants */
  --muted-2: rgba(26, 26, 24, .58);

  /* Spacing (base 4px) */
  --sp-xs: 4px;
  --sp-sm: 8px;
  --sp-md: 12px;
  --sp-lg: 16px;
  --sp-xl: 24px;
  --sp-2xl: 32px;
  --sp-3xl: 48px;
  --sp-4xl: 64px;
  --sp-5xl: 96px;
}

* {
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

body {
  margin: 0;
  font-family: "Inter", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  color: var(--ink);
  background: var(--white);
  font-size: var(--text);
  line-height: var(--lh);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

a {
  color: inherit;
  text-decoration: none;
}

button {
  font: inherit;
}

:focus-visible {
  outline: 3px solid var(--lime);
  outline-offset: 3px;
  border-radius: 12px;
}

.container {
  width: min(var(--container), calc(100% - (var(--pad) * 2)));
  margin-inline: auto;
}

/* =========================
      ICONS (Lucide)
    ========================== */
.icon {
  width: 18px;
  height: 18px;
  stroke: var(--charcoal);
  stroke-width: 2;
  flex: 0 0 auto;
}

.icon--md {
  width: 20px;
  height: 20px;
}

.icon--lg {
  width: 22px;
  height: 22px;
}

.icon--xl {
  width: 26px;
  height: 26px;
}

.icon--on-lime {
  stroke: var(--charcoal);
}

.icon--muted {
  stroke: var(--muted);
}

/* =========================
      REUSO: SEÇÕES
    ========================== */
.section {
  padding: 92px 0 96px;
}

.section--tight {
  padding: 34px 0 78px;
}

.section--hero {
  padding: 72px 0 96px;
}

.section--cta {
  background: var(--green);
}

/* Section background variants */
.section-white {
  background: var(--white);
}

.section-gray {
  background: var(--canvas);
}

.section-green {
  background: var(--green);
}

.section-dark {
  background: var(--ink);
  color: var(--white);
}

/* Overrides for content inside green sections */
.section-green .section__eyebrow {
  background: rgba(26, 26, 24, .12);
  color: var(--ink);
}

.section-green .section__subtitle,
.section-green .trust__label,
.section-green .final-cta__subtitle,
.section-green .final-cta__note {
  color: var(--charcoal);
  opacity: .8;
}

.section-green .card {
  background: rgba(255, 255, 255, .45);
  border-color: rgba(26, 26, 24, .10);
}

.section-green .card:hover {
  background: rgba(255, 255, 255, .65);
}

.section-green .trust__metric {
  color: var(--ink);
}

/* Overrides for content inside dark sections */
.section-dark .section__eyebrow {
  background: rgba(255, 255, 255, .10);
  color: var(--muted);
}

.section-dark .section__subtitle {
  color: var(--muted);
}

.section__head {
  max-width: 760px;
  margin-bottom: 42px;
}

.section__eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--green-subtle);
  color: var(--charcoal);
  padding: 6px 20px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 500;
  letter-spacing: .02em;
  border: none;
  width: fit-content;
}

.section__title {
  margin: 10 0 14px;
  font-size: var(--t-h2);
  line-height: 1.18;
  letter-spacing: -0.03em;
  font-weight: var(--title-weight);
}

.section__subtitle {
  margin: 0;
  font-size: 18px;
  line-height: var(--lh);
  color: var(--muted);
}

/* =========================
   HEADER — LISTIO
========================= */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: var(--white);
}

.site-header::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: -1px;
  height: 1px;
  background: var(--line);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  min-height: 88px;
  padding: 12px 18px;
}

/* LOGO */

.brand {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.brand__name {
  font-family: "Space Grotesk", sans-serif;
  font-weight: 600;
  font-size: 2.2rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: var(--charcoal);
  white-space: nowrap;
}

/* NAV */

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 6px;
  flex: 1;
}

.nav>a,
.nav__dropdown-toggle {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 500;
  color: var(--ink);
  white-space: nowrap;
  transition: background .15s ease;
}

.nav>a:hover,
.nav__dropdown-toggle:hover {
  background: rgba(26, 26, 24, .05);
}

/* =========================
   CONTATO — DIAGRAMAÇÃO
========================= */

.page--contact {
  padding: 24px 0 56px;
}

.contact-hero {
  padding: 20px 0 28px;
}

.contact-hero__content {
  max-width: 760px;
}

.contact-hero .title {
  margin: 14px 0 14px;
  font-size: clamp(34px, 4vw, 52px);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.contact-hero .subtitle {
  margin: 0;
  max-width: 720px;
  font-size: 20px;
  line-height: 1.65;
  color: var(--muted);
}

.contact-hero__actions {
  margin-top: 24px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.contact-layout {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
  gap: 22px;
  align-items: start;
}

.contact-form-card,
.contact-info-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-2xl);
  padding: 28px;
}

.contact-section-head {
  margin-bottom: 22px;
}

.contact-section-head h2 {
  margin: 0 0 10px;
  font-size: 24px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

.contact-section-head .hint {
  margin: 0;
  font-size: 15px;
  line-height: 1.6;
  color: var(--muted);
}

.form--contact {
  display: grid;
  gap: 18px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}

.field {
  display: grid;
  gap: 8px;
}

.label {
  font-size: 14px;
  font-weight: 500;
  color: var(--ink);
}

.input,
.textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  background: var(--white);
  color: var(--ink);
  font: inherit;
  padding: 14px 16px;
  outline: none;
  transition: border-color .12s ease, background .12s ease;
}

.input {
  min-height: 50px;
}

.textarea {
  min-height: 150px;
  resize: vertical;
}

.input:focus,
.textarea:focus {
  border: 1.5px solid var(--green);
  background: var(--white);
}

.actions--contact {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.contact-list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  font-size: 17px;
  line-height: 1.55;
  color: var(--charcoal);
}

.contact-pills {
  display: grid;
  gap: 12px;
  margin-top: 24px;
}

.contact-info-card .pill {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 52px;
  padding: 0 16px;
  border-radius: var(--r-lg);
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 15px;
  font-weight: 500;
  color: var(--charcoal);
}

@media (max-width: 980px) {
  .page--contact {
    padding: 16px 0 44px;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-form-card,
  .contact-info-card {
    padding: 22px;
    border-radius: 20px;
  }

  .contact-hero .title {
    font-size: clamp(30px, 9vw, 42px);
  }

  .contact-hero .subtitle {
    font-size: 18px;
  }

  .actions--contact {
    flex-direction: column;
    align-items: stretch;
  }

  .actions--contact .btn {
    width: 100%;
    justify-content: center;
  }
}


/* DROPDOWN */

.nav__dropdown {
  position: relative;
  display: flex;
  align-items: center;
}

.nav__dropdown-menu {
  position: absolute;
  top: calc(100% + 10px);
  left: 0;
  min-width: 260px;
  padding: 10px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  display: none;
  z-index: 60;
}

.nav__dropdown-menu a {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  border-radius: 12px;
  font-size: 15px;
  color: var(--ink);
}

.nav__dropdown-menu a:hover {
  background: rgba(26, 26, 24, .05);
}

/* ACTIONS */

.header-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

/* BUTTONS */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 13px 22px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  cursor: pointer;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  transition: background .12s ease, border-color .12s ease;
  white-space: nowrap;
}

.btn:hover {
  background: var(--canvas);
  border-color: var(--line-strong);
}

.btn--primary {
  background: var(--lime);
  border-color: transparent;
  color: var(--charcoal);
}

.btn--primary:hover {
  background: var(--green-dark);
  border-color: transparent;
}

.btn--ghost {
  background: transparent;
  border-color: transparent;
}

.btn--ghost:hover {
  background: rgba(26, 26, 24, .05);
}

.btn--dark {
  background: var(--ink);
  border-color: transparent;
  color: var(--white);
}

.btn--dark:hover {
  background: var(--charcoal);
  border-color: transparent;
}

.btn--xl {
  padding: 18px 36px;
  font-size: 16px;
}

/* MOBILE */

.mobile-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  place-items: center;
}

/* #mobileMenu é apenas o mount point do JS — não esconde */
.mobile-menu {
  display: contents;
}

.mobile-ctas {
  display: grid;
  gap: 10px;
  margin-top: 10px;
}

/* RESPONSIVE */

@media (max-width:980px) {

  .nav,
  .header-ctas {
    display: none;
  }

  .mobile-toggle {
    display: inline-grid;
  }

  .site-header__inner {
    min-height: 72px;
  }

  .brand__name {
    font-size: 1.9rem;
  }

}

/* =========================
      HERO
    ========================== */
.hero__grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 56px;
  align-items: center;
}

.hero__title {
  font-size: var(--t-hero);
  line-height: 1.18;
  letter-spacing: -0.03em;
  margin: 10 0 18px;
  font-weight: var(--title-weight);
}

.hero__subtitle {
  margin: 0 0 22px;
  font-size: 18px;
  line-height: var(--lh);
  color: var(--muted);
  max-width: 560px;
}

.hero__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 30px;
  display: grid;
  gap: 14px;
}

.hero__bullets li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 500;
  color: var(--ink);
}

.hero__ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hero__image-wrap {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--line);
  background: var(--green);
}

.hero__image-wrap img {
  width: 100%;
  height: auto;
  display: block;
}

/* Nova faixa de "microproof" no hero */
.hero__microproof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 14px;
}

.chip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 12px;
  border-radius: 999px;
  background: var(--surface);
  border: 1px solid var(--line);
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

@media (max-width:980px) {
  .section--hero {
    padding: 20px 35px;
  }

  .hero__grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .hero__subtitle {
    max-width: 100%;
  }

  .hero__media {
    order: -1;
  }
}

/* =========================
      TRUST
    ========================== */
.trust {
  padding: 60px 0 60px;
}

.trust__line {
  margin: 0 0 14px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted-2);
  display: flex;
  align-items: center;
  gap: 10px;
}

.trust__cards {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 18px;
  transition: background .12s ease, border-color .12s ease;
}

.card:hover {
  background: var(--canvas);
  border-color: var(--line-strong);
}

.trust__metric {
  font-weight: 600;
  font-size: var(--t-metric);
  letter-spacing: -0.03em;
  line-height: 1.1;
}

.trust__label {
  margin-top: 6px;
  font-weight: 400;
  color: var(--muted-2);
  font-size: 14px;
  line-height: 1.4;
}

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


/* =========================
      GRID DE CARDS
    ========================== */
.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

@media (max-width:980px) {

  .grid-4,
  .grid-3 {
    grid-template-columns: 1fr;
    gap: 12px;
  }
}

.card__icon {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--canvas);
  margin-bottom: 12px;
}

.card__title {
  margin: 0 0 15px;
  font-size: var(--t-card);
  letter-spacing: -0.02em;
  line-height: 1.2;
  font-weight: 600;
}

.card__text {
  margin: 0;
  font-size: 18px;
  line-height: var(--lh);
  color: var(--muted);
}

.pain__head {
  max-width: 760px;
}

.pain__head .section__title {
  margin-bottom: 10px;
}

.pain__head .section__subtitle {
  margin: 0;
}

.solution__grid .card {
  padding: 22px 20px 24px;
}

.solution__grid .card__icon {
  width: 48px;
  height: 48px;
  border-radius: 18px;
  margin-bottom: 14px;
}

.value__metric {
  width: 54px;
  height: 54px;
  border-radius: 18px;
  display: grid;
  place-items: center;
  background: var(--lime);
  margin-bottom: 18px;
}

/* =========================
      HOW (mantém, mas textos ajustados)
    ========================== */
.how__steps {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.how__step {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 28px 26px 30px;
  display: flex;
  gap: 18px;
  transition: background .15s ease, border-color .15s ease;
}

.how__step:hover {
  background: var(--canvas);
  border-color: var(--line-strong);
}

.how__badge {
  width: 42px;
  height: 42px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--lime);
  color: var(--charcoal);
  font-weight: 600;
  font-size: 18px;
  flex-shrink: 0;
}

.how__content h3 {
  margin: 0 0 15px;
  font-size: var(--t-card);
  font-weight: 600;
  letter-spacing: -0.02em;
  line-height: 1.2;
}

.how__content p {
  margin: 0;
  font-size: 18px;
  line-height: var(--lh);
  color: var(--muted);
}

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

/* =========================
      NOVA SEÇÃO: "Automação na prática"
      - Mesmo visual (cards), sem mudar base.
    ========================== */
.auto {
  background: var(--surface);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.auto__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 22px;
  align-items: start;
}

.auto__panel {
  background: var(--canvas);
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  padding: 22px;
}

.auto__panel h3 {
  margin: 0 0 10px;
  font-size: 20px;
  font-weight: 600;
  letter-spacing: -0.02em;
}

.auto__panel p {
  margin: 0;
  color: var(--muted);
  font-size: 18px;
  line-height: var(--lh);
}

.auto__list {
  margin: 14px 0 0;
  padding: 0;
  list-style: none;
  display: grid;
  gap: 12px;
}

.auto__list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  color: var(--ink);
  font-weight: 500;
}

.auto__note {
  margin-top: 14px;
  font-size: 14px;
  color: var(--muted-2);
}

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

.compare__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
}

.compare__card {
  position: relative;
}

.compare__card--highlight {
  background: var(--lime);
  border-color: transparent;
}

.compare__badge {
  position: absolute;
  top: -12px;
  right: 18px;
  background: var(--charcoal);
  color: var(--white);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .04em;
}

.compare__list {
  list-style: none;
  padding: 0;
  margin: 0;
  display: grid;
  gap: 10px;
}

.compare__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 18px;
  line-height: 1.5;
  color: var(--ink);
}

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

.final-cta__wrap {
  display: grid;
  place-items: center;
  text-align: center;
}

.final-cta__subtitle {
  margin: 0 auto 28px;
  max-width: 680px;
  font-size: 18px;
  color: var(--muted);
  line-height: var(--lh);
}

.final-cta__actions {
  display: grid;
  gap: 12px;
  place-items: center;
}

.final-cta__note {
  margin: 0;
  font-size: 14px;
  color: var(--muted-2);
  line-height: 1.4;
}

.faq .container {
  display: grid;
  gap: 22px;
}

.faq__list {
  width: min(1078.5px, 100%);
  margin: 0;
}

.faq__item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: background .12s ease, border-color .12s ease;
}

.faq__item:hover {
  background: var(--canvas);
  border-color: var(--line-strong);
}

.faq__question {
  list-style: none;
  cursor: pointer;
  padding: 18px 18px;
  font-size: 17px;
  font-weight: 600;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  color: var(--ink);
}

.faq__question::-webkit-details-marker {
  display: none;
}

.faq__plus {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--canvas);
  transition: transform .2s ease;
  flex-shrink: 0;
}

.faq__item[open] .faq__plus {
  transform: rotate(45deg);
}

.faq__answer {
  padding: 0 18px 18px;
  border-top: 1px solid var(--line);
}

.faq__answer p {
  margin: 12px 0 0;
  font-size: 18px;
  line-height: var(--lh);
  color: var(--muted);
}

@media (max-width:980px) {
  .section {
    padding: 30px 0 35px;
  }

  .section--tight {
    padding: 26px 0 58px;
  }

  .section--cta {
    padding: 60px 0 68px;
  }

  .faq__question {
    padding: 18px 18px;
  }

  .faq__answer {
    padding: 0 18px 18px;
  }
}

.card--review {
  position: relative;
}

.review__footer {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.review__stars {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  opacity: .92;
}

.review__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
  text-align: right;
}

.review__name {
  font-weight: 600;
}

.review__handle {
  opacity: .75;
  font-size: .95em;
}

.wa-fab {
  position: fixed;
  right: 18px;
  bottom: 24px;
  z-index: 9999;
  text-decoration: none;
  -webkit-tap-highlight-color: transparent;
}

.wa-fab__outer {
  width: 74px;
  height: 74px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--ink);
  transition: transform 160ms ease;
}

.wa-fab__inner {
  width: 46px;
  height: 46px;
  border-radius: 999px;
  display: grid;
  place-items: center;
  background: var(--green);
  line-height: 0;
  overflow: hidden;
}

.wa-fab__inner svg {
  display: block;
  width: 24px;
  height: 24px;
  line-height: 0;
  color: var(--ink);
}

.wa-fab:hover .wa-fab__outer,
.wa-fab:focus-visible .wa-fab__outer {
  transform: translateY(-1px);
}

/* === DARK FOOTER === */
.listio-footer {
  background: #0e0e0c;
  color: var(--white);
}

.listio-footer__inner {
  padding: 56px 0 28px;
  display: grid;
  gap: 40px;
}

.listio-footer__top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr;
  gap: 32px;
  align-items: start;
}

.listio-footer__brand {
  display: grid;
  gap: 10px;
}

.listio-footer__logo {
  font-family: "Space Grotesk", system-ui, -apple-system, Segoe UI, Roboto, Arial, sans-serif;
  font-weight: 600;
  font-size: 22px;
  letter-spacing: -0.02em;
  color: var(--white);
  line-height: 1.1;
}

.listio-footer__desc {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
  max-width: 52ch;
}

.listio-footer__pill {
  margin-top: 4px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(255, 255, 255, .08);
  border: 1px solid rgba(255, 255, 255, .12);
  color: var(--white);
  font-size: 14px;
  font-weight: 600;
  line-height: 1;
  text-decoration: none;
}

.listio-footer__pill:hover {
  background: rgba(255, 255, 255, .14);
  border-color: var(--line-strong);
}

.listio-footer__title {
  font-size: 11px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .08em;
  color: var(--muted);
  margin-bottom: 4px;
}

.listio-footer__col {
  display: grid;
  gap: 10px;
  align-content: start;
  justify-items: start;
}

.listio-footer__link {
  font-size: 14px;
  font-weight: 400;
  color: var(--muted);
  text-decoration: none;
  padding: 3px 0;
  transition: color .12s ease;
}

.listio-footer__link:hover {
  color: var(--white);
}

.listio-footer__icon {
  width: 18px;
  height: 18px;
  stroke: currentColor;
  stroke-width: 2;
  fill: none;
  flex: 0 0 auto;
}

.listio-footer__bottom {
  padding-top: 20px;
  border-top: 1px solid #292929;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 10px 14px;
}

.listio-footer__copy {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.4;
}

.listio-footer__mini-links {
  font-size: 13px;
  color: var(--muted);
  display: inline-flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.listio-footer__mini-links a {
  color: var(--muted);
  text-decoration: none;
  transition: color .12s ease;
}

.listio-footer__mini-links a:hover {
  color: var(--white);
}

@media (max-width: 980px) {
  .listio-footer__top {
    grid-template-columns: 1fr 1fr;
    gap: 28px;
  }

  .listio-footer__brand {
    grid-column: 1 / -1;
  }

  .listio-footer__bottom {
    flex-direction: column;
    gap: 12px;
    text-align: center;
  }
}

@media (max-width: 480px) {
  .listio-footer__top {
    grid-template-columns: 1fr;
    gap: 24px;
  }
}

.lp-btn {
  appearance: none;
  border: 1px solid var(--line);
  background: var(--surface);
  color: var(--ink);
  border-radius: 999px;
  padding: 10px 14px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  line-height: 1;
}

.lp-btn:hover {
  border-color: var(--line-strong);
  background: var(--canvas);
}

.lp-btn--primary {
  background: var(--lime);
  border-color: transparent;
  color: var(--charcoal);
}

.lp-btn--primary:hover {
  background: var(--green-dark);
  border-color: transparent;
}

.lp-btn--ghost {
  background: transparent;
  border-color: transparent;
}

.lp-btn--ghost:hover {
  background: var(--canvas);
  border-color: transparent;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  padding: 12px;
  background: rgba(255, 255, 255, .92);
  border-top: 1px solid var(--line);
  display: none;
  z-index: 9999;
}

.cookie-banner.is-open {
  display: block;
}

.cookie-banner__card {
  width: min(var(--container), calc(100% - 24px));
  margin-inline: auto;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 14px;
  display: grid;
  gap: 10px;
}

.cookie-banner__row {
  display: flex;
  gap: 12px;
  align-items: flex-start;
  justify-content: space-between;
  flex-wrap: wrap;
}

.cookie-banner__text {
  max-width: 72ch;
}

.cookie-banner__title {
  margin: 0 0 6px;
  font-size: 14px;
  font-weight: 600;
  letter-spacing: .02em;
  color: var(--ink);
}

.cookie-banner__p {
  margin: 0;
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted);
}

.cookie-banner__actions {
  display: inline-flex;
  gap: 10px;
  flex-wrap: wrap;
  align-items: center;
  justify-content: flex-end;
}

.cookie-modal {
  position: fixed;
  inset: 0;
  display: none;
  background: rgba(26, 26, 24, .35);
  z-index: 10000;
  padding: 14px;
}

.cookie-modal.is-open {
  display: grid;
  place-items: center;
}

.cookie-modal__card {
  width: min(640px, 100%);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--radius-xl);
  padding: 18px;
  display: grid;
  gap: 12px;
}

.cookie-modal__head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}

.cookie-modal__head h3 {
  margin: 0;
  font-size: 18px;
  font-weight: 600;
  letter-spacing: -0.02em;
  color: var(--ink);
}

.cookie-modal__close {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  font-size: 18px;
  line-height: 1;
  font-weight: 600;
}

.cookie-modal__close:hover {
  background: var(--canvas);
  border-color: var(--line-strong);
}

.cookie-modal__desc {
  margin: 0;
  font-size: 18px;
  line-height: 1.6;
  color: var(--muted);
}

.cookie-prefs {
  display: grid;
  gap: 10px;
  padding: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--canvas);
}

.cookie-toggle {
  display: flex;
  gap: 10px;
  align-items: flex-start;
  justify-content: space-between;
}

.cookie-toggle__text {
  display: grid;
  gap: 2px;
}

.cookie-toggle__text b {
  font-size: 14px;
  font-weight: 600;
  color: var(--ink);
}

.cookie-toggle__text span {
  font-size: 14px;
  color: var(--muted);
  line-height: 1.4;
}

.switch {
  position: relative;
  width: 48px;
  height: 28px;
  flex: 0 0 auto;
}

.switch input {
  display: none;
}

.switch span {
  position: absolute;
  inset: 0;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: var(--surface);
  cursor: pointer;
  transition: background .15s ease, border-color .15s ease;
}

.switch span::after {
  content: "";
  position: absolute;
  top: 3px;
  left: 3px;
  width: 22px;
  height: 22px;
  border-radius: 999px;
  background: var(--charcoal);
  transition: transform .15s ease;
}

.switch input:checked+span {
  background: var(--lime);
  border-color: transparent;
}

.switch input:checked+span::after {
  transform: translateX(20px);
}

.cookie-modal__actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  padding-top: 6px;
}