/* ==========================================================================
   Brazu Flow — Landing estática
   Diseño SaaS moderno sobre la identidad visual de Brazu Flow.
   ========================================================================== */

:root {
  --primary: #7c3aed;
  --primary-hover: #6d28d9;
  --primary-con: #ffffff;
  --secondary: #a78bfa;
  --accent: #f59e0b;

  --bg: #f8f7ff;
  --bg-alt: #ede9fe;
  --surface: #ffffff;
  --border: rgba(27, 23, 46, 0.09);

  --text: #1f2937;
  --text-muted: #52525b;
  --text-soft: #6b7280;

  --info: #3b82f6;
  --success: #10b981;
  --warning: #f59e0b;
  --error: #ef4444;

  --radius: 1rem;
  --shadow-sm: 0 1px 2px rgba(17, 24, 39, 0.06), 0 1px 3px rgba(17, 24, 39, 0.08);
  --shadow-md: 0 8px 24px rgba(109, 40, 217, 0.08);
  --shadow-lg: 0 24px 60px rgba(109, 40, 217, 0.16);
  --header-h: 64px;
}

[data-theme="dark"] {
  --primary: #8b5cf6;
  --primary-hover: #7c3aed;
  --primary-con: #ffffff;
  --secondary: #a78bfa;

  --bg: #0f1117;
  --bg-alt: #161b26;
  --surface: #111827;
  --border: rgba(255, 255, 255, 0.09);

  --text: #f3f4f6;
  --text-muted: #cbd0da;
  --text-soft: #9aa3b2;

  --shadow-sm: 0 1px 2px rgba(0, 0, 0, 0.4);
  --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.4);
  --shadow-lg: 0 24px 60px rgba(0, 0, 0, 0.5);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  font-size: 1rem;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

h1,
h2,
h3,
h4,
p,
ul {
  margin: 0;
}

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

img {
  display: block;
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 80rem;
  margin: 0 auto;
  padding-left: 1.25rem;
  padding-right: 1.25rem;
}

.visually-hidden {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 3px solid var(--primary);
  outline-offset: 2px;
  border-radius: 0.5rem;
}

/* --------------------------------------------------------------------------
   Botones
   -------------------------------------------------------------------------- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.7rem 1.4rem;
  border-radius: 0.8rem;
  border: 1px solid transparent;
  font-size: 0.975rem;
  font-weight: 600;
  line-height: 1.2;
  cursor: pointer;
  transition: background 0.16s ease, color 0.16s ease, border-color 0.16s ease,
    transform 0.12s ease, box-shadow 0.16s ease;
  white-space: nowrap;
}

.btn:active {
  transform: translateY(1px);
}

.btn-primary {
  background: var(--primary);
  color: var(--primary-con);
  box-shadow: 0 8px 20px rgba(124, 58, 237, 0.28);
}

.btn-primary:hover {
  background: var(--primary-hover);
}

.btn-ghost {
  background: transparent;
  color: var(--text);
  border-color: var(--border);
}

.btn-ghost:hover {
  background: var(--bg-alt);
}

.btn-lg {
  padding: 1rem 1.8rem;
  font-size: 1.05rem;
}

.btn-block {
  width: 100%;
}

.btn-white {
  background: #fff;
  color: var(--primary);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.18);
}

.btn-white:hover {
  background: #f4f0ff;
}

.btn-outline-light {
  background: transparent;
  border-color: rgba(255, 255, 255, 0.55);
  color: #fff;
}

.btn-outline-light:hover {
  background: rgba(255, 255, 255, 0.12);
}

.btn svg {
  width: 1.15rem;
  height: 1.15rem;
}

/* --------------------------------------------------------------------------
   Navbar
   -------------------------------------------------------------------------- */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  height: var(--header-h);
  background: var(--bg);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  height: 100%;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-weight: 800;
  letter-spacing: -0.02em;
  font-size: 1.15rem;
}

.brand img {
  width: 2.25rem;
  height: 2.25rem;
  border-radius: 0.75rem;
}

.nav-links {
  display: none;
  align-items: center;
  gap: 0.25rem;
}

.nav-links a {
  padding: 0.5rem 0.85rem;
  border-radius: 0.6rem;
  font-size: 0.92rem;
  font-weight: 500;
  color: var(--text-muted);
  transition: background 0.15s ease, color 0.15s ease;
}

.nav-links a:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.icon-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 0.7rem;
  border: 1px solid var(--border);
  background: transparent;
  color: var(--text-muted);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}

.icon-btn:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.icon-btn svg {
  width: 1.25rem;
  height: 1.25rem;
}

.icon-sun {
  display: none;
}

:root[data-theme="dark"] .icon-moon {
  display: none;
}

:root[data-theme="dark"] .icon-sun {
  display: block;
}

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

.hamburger {
  display: inline-flex;
}

.menu-mobile {
  display: none;
}

.menu-mobile.open {
  display: block;
  border-top: 1px solid var(--border);
  background: var(--bg);
}

.menu-mobile nav {
  display: flex;
  flex-direction: column;
  gap: 0.15rem;
  padding: 0.75rem 1rem 1.1rem;
}

.menu-mobile a {
  padding: 0.7rem 0.85rem;
  border-radius: 0.6rem;
  font-weight: 500;
  font-size: 0.95rem;
  color: var(--text-muted);
}

.menu-mobile a:hover {
  background: var(--bg-alt);
  color: var(--text);
}

.menu-mobile .menu-cta {
  margin-top: 0.6rem;
  background: var(--primary);
  color: #fff;
  text-align: center;
}

@media (min-width: 64rem) {
  .nav-links {
    display: flex;
  }

  .nav-cta-mobile {
    display: inline-flex;
  }

  .hamburger {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Hero
   -------------------------------------------------------------------------- */
.hero {
  position: relative;
  overflow: hidden;
}

.hero-bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.hero-glow {
  position: absolute;
  top: -6rem;
  left: 50%;
  width: 42rem;
  height: 24rem;
  transform: translateX(-50%);
  border-radius: 9999px;
  background: linear-gradient(to bottom, rgba(124, 58, 237, 0.22), transparent);
  filter: blur(3rem);
}

.hero-glow-2 {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 18rem;
  height: 18rem;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.1);
  filter: blur(3rem);
}

.hero-grid {
  position: absolute;
  inset: 0;
  opacity: 0.045;
  background-image: linear-gradient(to right, currentColor 1px, transparent 1px),
    linear-gradient(to bottom, currentColor 1px, transparent 1px);
  background-size: 4rem 4rem;
}

.hero-content {
  position: relative;
  max-width: 60rem;
  margin: 0 auto;
  text-align: center;
  padding-top: 5rem;
  padding-bottom: 5rem;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.4rem 0.9rem;
  border-radius: 9999px;
  border: 1px solid rgba(124, 58, 237, 0.3);
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary);
  font-size: 0.875rem;
  font-weight: 600;
}

.badge .dot {
  position: relative;
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 9999px;
  background: var(--primary);
}

.badge .dot::after {
  content: "";
  position: absolute;
  inset: -0.35rem;
  border-radius: 9999px;
  border: 2px solid var(--primary);
  opacity: 0.5;
  animation: pulse 1.6s ease-out infinite;
}

@keyframes pulse {
  0% {
    transform: scale(0.6);
    opacity: 0.6;
  }
  100% {
    transform: scale(1.4);
    opacity: 0;
  }
}

.hero h1 {
  margin-top: 1.5rem;
  font-size: clamp(2.1rem, 6vw, 3.6rem);
  font-weight: 800;
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.hero h1 .gradient {
  background: linear-gradient(90deg, var(--primary), var(--secondary));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero-sub {
  margin: 1.5rem auto 0;
  max-width: 40rem;
  font-size: clamp(1.05rem, 2.4vw, 1.25rem);
  color: var(--text-muted);
}

.hero-actions {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
  margin-top: 2.5rem;
}

.hero-bullets {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem 1.5rem;
  margin-top: 2rem;
  list-style: none;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.hero-bullets li {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
}

.hero-bullets svg {
  width: 1rem;
  height: 1rem;
  color: var(--primary);
}

@media (min-width: 40rem) {
  .hero-actions {
    flex-direction: row;
    justify-content: center;
  }
}

/* Mockup del dashboard */
.mock {
  position: relative;
  max-width: 60rem;
  margin: 2rem auto 0;
}

.mock-frame {
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  background: var(--surface);
  box-shadow: var(--shadow-lg);
  padding: 0.5rem;
}

.mock-window {
  border: 1px solid var(--border);
  border-radius: 1rem;
  background: var(--surface);
  padding: 1.1rem;
}

.mock-bar {
  display: flex;
  align-items: center;
  gap: 0.35rem;
  margin-bottom: 1.1rem;
}

.mock-bar span.dot {
  width: 0.7rem;
  height: 0.7rem;
  border-radius: 9999px;
}

.mock-bar .red {
  background: #f87171;
}
.mock-bar .yellow {
  background: #fbbf24;
}
.mock-bar .green {
  background: #34d399;
}

.mock-bar .bar {
  margin-left: 0.75rem;
  height: 0.9rem;
  width: 9rem;
  border-radius: 0.4rem;
  background: var(--bg-alt);
}

.mock-stats {
  display: grid;
  gap: 0.75rem;
  grid-template-columns: repeat(3, 1fr);
}

.stat {
  background: var(--bg-alt);
  border-radius: 0.8rem;
  padding: 1rem;
  text-align: left;
}

.stat p {
  font-size: 0.78rem;
  color: var(--text-soft);
}

.stat strong {
  display: block;
  margin-top: 0.3rem;
  font-size: 1.3rem;
  letter-spacing: -0.02em;
}

.stat .up {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
  font-size: 0.72rem;
  font-weight: 600;
}

.stat .warning {
  display: inline-flex;
  margin-top: 0.5rem;
  padding: 0.1rem 0.5rem;
  border-radius: 9999px;
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
  font-size: 0.72rem;
  font-weight: 600;
}

[data-theme="dark"] .stat .up {
  color: #34d399;
}

[data-theme="dark"] .stat .warning {
  color: #fbbf24;
}

.mock-table {
  margin-top: 1rem;
  border: 1px solid var(--border);
  border-radius: 0.85rem;
  overflow: hidden;
}

.mock-table-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.7rem 1rem;
  background: var(--bg-alt);
  font-size: 0.875rem;
  font-weight: 600;
}

.mock-table-head span {
  font-size: 0.75rem;
  color: var(--text-soft);
  font-weight: 500;
}

.mock-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.65rem 1rem;
  border-top: 1px solid var(--border);
}

.mock-row .left {
  display: flex;
  align-items: center;
  gap: 0.7rem;
}

.mock-row .ico {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  border-radius: 0.6rem;
  background: rgba(124, 58, 237, 0.12);
  color: var(--primary);
}

.mock-row .ico svg {
  width: 1rem;
  height: 1rem;
}

.mock-row .code {
  font-size: 0.875rem;
  font-weight: 600;
}

.mock-row .sender {
  font-size: 0.75rem;
  color: var(--text-soft);
}

.chip {
  padding: 0.25rem 0.6rem;
  border-radius: 9999px;
  font-size: 0.72rem;
  font-weight: 600;
  white-space: nowrap;
}

.chip-info {
  background: rgba(59, 130, 246, 0.15);
  color: #2563eb;
}

.chip-warning {
  background: rgba(245, 158, 11, 0.16);
  color: #b45309;
}

.chip-success {
  background: rgba(16, 185, 129, 0.15);
  color: #059669;
}

[data-theme="dark"] .chip-info {
  color: #60a5fa;
}

[data-theme="dark"] .chip-warning {
  color: #fbbf24;
}

[data-theme="dark"] .chip-success {
  color: #34d399;
}

@media (max-width: 40rem) {
  .mock-bar .bar {
    display: none;
  }
}

/* --------------------------------------------------------------------------
   Secciones
   -------------------------------------------------------------------------- */
.section {
  padding: 5rem 0;
  scroll-margin-top: var(--header-h);
}

.section-alt {
  background: var(--bg-alt);
}

.section-head {
  max-width: 48rem;
  margin: 0 auto 3rem;
  text-align: center;
}

.eyebrow {
  font-size: 0.8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--primary);
}

.section-head h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section-head p {
  margin-top: 1rem;
  color: var(--text-muted);
  font-size: clamp(1rem, 2vw, 1.15rem);
}

.grid-cards {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
}

/* Cards genéricas */
.card {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.5rem;
  box-shadow: var(--shadow-sm);
  transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}

.card-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 0.8rem;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary);
}

.card-icon svg {
  width: 1.35rem;
  height: 1.35rem;
}

.card h3 {
  margin-top: 1rem;
  font-size: 1.05rem;
  font-weight: 650;
  letter-spacing: -0.01em;
}

.card p {
  margin-top: 0.5rem;
  color: var(--text-muted);
  font-size: 0.95rem;
}

/* Problemas */
.problem-card .card-icon {
  background: rgba(239, 68, 68, 0.1);
  color: #dc2626;
}

[data-theme="dark"] .problem-card .card-icon {
  color: #f87171;
}

.problem-card .headline {
  display: flex;
  align-items: center;
  gap: 0.6rem;
}

.problem-card h3 {
  margin-top: 0;
}

/* Beneficios */
.benefits {
  display: grid;
  gap: 3rem;
  grid-template-columns: 1fr;
}

.benefits-left h2 {
  margin-top: 0.75rem;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.benefits-left > p {
  margin-top: 1rem;
  color: var(--text-muted);
}

.benefits-left .link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  margin-top: 1.5rem;
  font-weight: 600;
  color: var(--primary);
}

.benefits-left .link:hover {
  text-decoration: underline;
}

.benefits-list {
  list-style: none;
  display: grid;
  gap: 1rem;
}

.benefit-item {
  display: flex;
  gap: 1rem;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.benefit-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  width: 2.5rem;
  height: 2.5rem;
  border-radius: 9999px;
  background: rgba(124, 58, 237, 0.1);
  color: var(--primary);
  font-weight: 700;
}

.benefit-item h3 {
  font-size: 1rem;
  font-weight: 650;
}

.benefit-item p {
  margin-top: 0.3rem;
  color: var(--text-muted);
  font-size: 0.92rem;
}

/* Para quién */
.audience-card {
  text-align: center;
}

.audience-card .card-icon {
  margin: 0 auto;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  color: #fff;
}

/* Precios */
.pricing-grid {
  display: grid;
  gap: 1.5rem;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
}

.price-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: 1.25rem;
  padding: 1.9rem;
  box-shadow: var(--shadow-sm);
}

.price-card.popular {
  border-color: var(--primary);
  box-shadow: var(--shadow-md);
}

.price-card .flag {
  position: absolute;
  top: -0.85rem;
  left: 50%;
  transform: translateX(-50%);
  padding: 0.3rem 0.9rem;
  border-radius: 9999px;
  background: var(--primary);
  color: #fff;
  font-size: 0.75rem;
  font-weight: 700;
  box-shadow: 0 6px 16px rgba(124, 58, 237, 0.35);
}

.price-card h3 {
  font-size: 1.2rem;
  font-weight: 700;
}

.price-card .tagline {
  margin-top: 0.3rem;
  color: var(--text-soft);
  font-size: 0.875rem;
}

.price-card .price-label {
  margin-top: 1.2rem;
  font-size: 0.72rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-soft);
}

.price-card .btn {
  margin-top: 1rem;
}

.price-card ul {
  list-style: none;
  margin-top: 1.5rem;
  display: grid;
  gap: 0.75rem;
}

.price-card li {
  display: flex;
  align-items: flex-start;
  gap: 0.6rem;
  font-size: 0.92rem;
  color: var(--text-muted);
}

.price-card li svg {
  width: 1rem;
  height: 1rem;
  margin-top: 0.15rem;
  color: var(--primary);
  flex-shrink: 0;
}

.pricing-note {
  max-width: 44rem;
  margin: 2rem auto 0;
  text-align: center;
  color: var(--text-soft);
  font-size: 0.9rem;
}

@media (min-width: 64rem) {
  .price-card.popular {
    transform: translateY(-0.5rem);
  }

  .benefits {
    grid-template-columns: 2fr 3fr;
    align-items: start;
  }
}

/* FAQ */
.faq-list {
  max-width: 48rem;
  margin: 0 auto;
  display: grid;
  gap: 0.75rem;
}

.faq details {
  background: var(--surface);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  box-shadow: var(--shadow-sm);
}

.faq summary {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 1.4rem;
  list-style: none;
  cursor: pointer;
  font-weight: 600;
}

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

.faq summary::after {
  content: "+";
  font-size: 1.5rem;
  font-weight: 500;
  color: var(--primary);
  line-height: 1;
  transition: transform 0.2s ease;
}

.faq details[open] summary::after {
  transform: rotate(45deg);
}

.faq .answer {
  padding: 0 1.4rem 1.2rem;
  color: var(--text-muted);
}

/* CTA final */
.final-cta {
  padding-bottom: 5rem;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  border-radius: 1.75rem;
  padding: 4rem 1.5rem;
  text-align: center;
  background: linear-gradient(135deg, var(--primary), var(--secondary));
  box-shadow: var(--shadow-lg);
}

.cta-panel::before,
.cta-panel::after {
  content: "";
  position: absolute;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.14);
  filter: blur(2rem);
}

.cta-panel::before {
  width: 14rem;
  height: 14rem;
  top: -4rem;
  right: -3rem;
}

.cta-panel::after {
  width: 18rem;
  height: 18rem;
  bottom: -6rem;
  left: -4rem;
}

.cta-inner {
  position: relative;
  max-width: 44rem;
  margin: 0 auto;
}

.cta-inner h2 {
  color: #fff;
  font-size: clamp(1.7rem, 4vw, 2.4rem);
  font-weight: 800;
  letter-spacing: -0.03em;
}

.cta-inner p {
  margin: 1rem auto 0;
  max-width: 36rem;
  color: rgba(255, 255, 255, 0.85);
  font-size: 1.1rem;
}

.cta-actions {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 2.2rem;
  justify-content: center;
}

@media (min-width: 40rem) {
  .cta-actions {
    flex-direction: row;
  }
}

/* --------------------------------------------------------------------------
   Footer
   -------------------------------------------------------------------------- */
.footer {
  border-top: 1px solid var(--border);
  background: var(--surface);
}

.footer-inner {
  padding: 3.5rem 0 2rem;
}

.footer-grid {
  display: grid;
  gap: 2.5rem;
  grid-template-columns: 1fr;
}

.footer-brand p {
  margin-top: 1rem;
  max-width: 22rem;
  color: var(--text-soft);
  font-size: 0.9rem;
}

.footer-brand .btn {
  margin-top: 1.4rem;
}

.footer-col h3 {
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--text-soft);
}

.footer-col ul {
  list-style: none;
  margin-top: 1rem;
  display: grid;
  gap: 0.6rem;
}

.footer-col a {
  color: var(--text-muted);
  font-size: 0.9rem;
  transition: color 0.15s ease;
}

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

.footer-bottom {
  margin-top: 2.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  align-items: center;
  justify-content: space-between;
  color: var(--text-soft);
  font-size: 0.8rem;
}

@media (min-width: 48rem) {
  .footer-grid {
    grid-template-columns: 2fr 1fr 1fr;
  }

  .footer-bottom {
    flex-direction: row;
  }
}

@media (min-width: 40rem) {
  .grid-cards.audience {
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  }
}
