/* Gamasoft — estilos globales (paleta /docs/branding-gamasoft.txt) — refinamiento visual tipo Stripe: aire, hairlines, sombras discretas */

:root {
  --color-primary: #2563eb;
  --color-primary-dark: #1d4ed8;
  --color-dark: #1e293b;
  --color-bg: #f8fafc;
  --color-bg-alt: #f1f5f9;
  --color-bg-elevated: #fafbfc;
  --color-border: #e2e8f0;
  --color-muted: #64748b;
  --color-white: #ffffff;
  --shadow-sm: 0 1px 2px rgba(15, 23, 42, 0.04);
  --shadow-md: 0 12px 28px -6px rgba(15, 23, 42, 0.08);
  /* Tarjetas: borde 1px + sombra muy suave (legibilidad sin dramatismo) */
  --shadow-card: 0 0 0 1px rgba(15, 23, 42, 0.045), 0 2px 4px rgba(15, 23, 42, 0.02),
    0 12px 28px -8px rgba(15, 23, 42, 0.06);
  --shadow-card-hover: 0 0 0 1px rgba(37, 99, 235, 0.09), 0 4px 8px rgba(15, 23, 42, 0.03),
    0 20px 40px -12px rgba(15, 23, 42, 0.09);
  --shadow-nav: 0 1px 0 rgba(15, 23, 42, 0.05), 0 12px 32px -10px rgba(15, 23, 42, 0.08);
  --shadow-btn-primary: 0 1px 2px rgba(15, 23, 42, 0.06), 0 4px 12px -2px rgba(37, 99, 235, 0.35);
  --shadow-btn-primary-hover: 0 2px 4px rgba(15, 23, 42, 0.06), 0 8px 20px -4px rgba(37, 99, 235, 0.42);
  --radius: 12px;
  --radius-lg: 16px;
  --font-sans: "Inter", system-ui, sans-serif;
  --font-display: "Plus Jakarta Sans", "Inter", system-ui, sans-serif;
  --container: min(1180px, calc(100% - 48px));
  --ease-out: cubic-bezier(0.22, 1, 0.36, 1);
  --ease-spring: cubic-bezier(0.34, 1.2, 0.64, 1);
  --ease-ui: cubic-bezier(0.215, 0.61, 0.355, 1);
  --transition-fast: 0.18s var(--ease-ui);
  --section-padding-y: clamp(5.25rem, 10vw, 8.75rem);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: var(--font-sans);
  font-size: 1.0625rem;
  line-height: 1.625;
  letter-spacing: -0.011em;
  color: var(--color-dark);
  background: var(--color-bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  text-rendering: optimizeLegibility;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: var(--color-primary);
  text-decoration-thickness: 1px;
  text-underline-offset: 0.15em;
}

a:hover {
  color: var(--color-primary-dark);
}

h1,
h2,
h3,
h4 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
  line-height: 1.18;
}

p {
  margin: 0 0 1rem;
}

ul,
ol {
  margin: 0;
  padding: 0;
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 1000;
  padding: 0.75rem 1rem;
  background: var(--color-dark);
  color: var(--color-white);
}

.skip-link:focus {
  left: 1rem;
  top: 1rem;
}

.container {
  width: var(--container);
  margin-inline: auto;
}

.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;
}

/* Header */

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255, 255, 255, 0.78);
  backdrop-filter: blur(16px) saturate(1.45);
  -webkit-backdrop-filter: blur(16px) saturate(1.45);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  transition: background 0.28s var(--ease-ui), box-shadow 0.28s var(--ease-ui), border-color 0.28s var(--ease-ui);
}

.site-header.is-scrolled {
  background: rgba(255, 255, 255, 0.94);
  border-color: rgba(15, 23, 42, 0.07);
  box-shadow: var(--shadow-nav);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: clamp(1rem, 3vw, 2rem);
  min-height: 108px;
  padding-block: 1rem;
  overflow: visible;
}

.site-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
  align-self: center;
  overflow: visible;
  max-width: none;
  min-width: min-content;
  text-decoration: none;
  padding: 0.35rem 0.75rem 0.35rem 0;
  line-height: 0;
}

.site-logo img {
  display: block;
  width: auto;
  height: 32px;
  max-width: min(260px, calc(100vw - 10rem));
  object-fit: contain;
  object-position: left center;
  vertical-align: middle;
  filter: drop-shadow(0 1px 2px rgba(15, 23, 42, 0.04));
}

@media (min-width: 640px) {
  .site-logo img {
    height: 40px;
    max-width: min(280px, calc(100vw - 11rem));
  }
}

@media (min-width: 900px) {
  .site-logo img {
    height: 48px;
    max-width: min(300px, calc(100vw - 14rem));
  }
}

.site-nav {
  flex: 1 1 auto;
  min-width: 0;
  display: flex;
  justify-content: center;
}

.site-nav__list {
  list-style: none;
  display: flex;
  align-items: center;
  gap: 0.25rem;
  flex-wrap: wrap;
  justify-content: center;
}

.site-nav__link {
  display: inline-block;
  padding: 0.45rem 0.8rem;
  border-radius: 10px;
  color: var(--color-dark);
  text-decoration: none;
  font-weight: 500;
  font-size: 0.9375rem;
  letter-spacing: -0.015em;
  transition: background var(--transition-fast), color var(--transition-fast);
}

.site-nav__link:hover {
  background: rgba(15, 23, 42, 0.045);
  color: var(--color-dark);
}

.site-nav__link.is-active {
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.08);
}

.site-nav__footer {
  display: none;
}

.site-header__actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  flex-shrink: 0;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid rgba(15, 23, 42, 0.08);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.95);
  cursor: pointer;
  padding: 0;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 6px;
  transition: border-color var(--transition-fast), background var(--transition-fast), box-shadow var(--transition-fast);
}

.nav-toggle:hover {
  border-color: rgba(15, 23, 42, 0.12);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.nav-toggle__bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--color-dark);
  border-radius: 2px;
  transition: transform 0.2s var(--ease-out), opacity 0.2s ease;
  transform-origin: center;
}

@media (max-width: 899px) {
  .nav-toggle {
    display: inline-flex;
    gap: 5px;
  }

  .site-logo img {
    max-width: min(260px, calc(100vw - 5.5rem));
    height: auto;
    max-height: 44px;
  }

  .site-nav {
    position: fixed;
    z-index: 60;
    flex-direction: column;
    align-items: stretch;
    justify-content: flex-start;
    left: max(16px, env(safe-area-inset-left));
    right: max(16px, env(safe-area-inset-right));
    top: calc(116px + 8px);
    width: auto;
    max-height: min(520px, calc(100vh - 140px));
    overflow-x: hidden;
    overflow-y: auto;
    -webkit-overflow-scrolling: touch;
    background: linear-gradient(180deg, #ffffff 0%, var(--color-bg-elevated) 100%);
    border: 1px solid rgba(226, 232, 240, 0.95);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-card-hover);
    padding: 0.5rem 0.65rem 0.85rem;
    transform: translateY(-12px) scale(0.98);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.28s var(--ease-out), opacity 0.22s ease, box-shadow 0.25s ease;
  }

  .site-nav.is-open {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
  }

  .site-nav__list {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    flex: 0 0 auto;
    gap: 0.2rem;
    padding: 0.15rem 0.15rem 0;
  }

  .site-nav__list li {
    border-bottom: 1px solid rgba(15, 23, 42, 0.06);
  }

  .site-nav__list li:last-of-type {
    border-bottom: none;
  }

  .site-nav__link {
    display: flex;
    align-items: center;
    width: 100%;
    padding: 0.95rem 0.85rem;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 1.0625rem;
    font-weight: 600;
    letter-spacing: -0.02em;
    color: var(--color-dark);
  }

  .site-nav__link:hover {
    background: rgba(15, 23, 42, 0.04);
  }

  .site-nav__link.is-active {
    color: var(--color-primary);
    background: linear-gradient(90deg, rgba(37, 99, 235, 0.12) 0%, rgba(37, 99, 235, 0.04) 100%);
    box-shadow: inset 3px 0 0 var(--color-primary);
  }

  .site-nav__footer {
    display: block;
    flex: 0 0 auto;
    width: 100%;
    margin-top: 0.35rem;
    padding: 0.85rem 0.35rem 0.15rem;
    border-top: 1px solid rgba(15, 23, 42, 0.08);
  }

  .site-nav__cta {
    box-sizing: border-box;
    width: 100%;
    max-width: 100%;
    justify-content: center;
    font-size: 0.98rem;
    padding: 0.88rem 1.1rem;
    box-shadow: 0 6px 20px rgba(37, 99, 235, 0.2);
  }

  .site-header__actions > .site-header__cta {
    display: none !important;
  }

  .site-nav.is-open ~ .site-header__actions .nav-toggle .nav-toggle__bar:nth-child(1) {
    transform: translateY(8px) rotate(45deg);
  }

  .site-nav.is-open ~ .site-header__actions .nav-toggle .nav-toggle__bar:nth-child(2) {
    opacity: 0;
  }

  .site-nav.is-open ~ .site-header__actions .nav-toggle .nav-toggle__bar:nth-child(3) {
    transform: translateY(-8px) rotate(-45deg);
  }
}

@media (max-width: 899px) and (prefers-reduced-motion: reduce) {
  .site-nav {
    transition: opacity 0.15s ease;
    transform: none;
  }

  .site-nav.is-open {
    transform: none;
  }

  .nav-toggle__bar {
    transition: opacity 0.15s ease;
  }

  .site-nav.is-open ~ .site-header__actions .nav-toggle .nav-toggle__bar:nth-child(1),
  .site-nav.is-open ~ .site-header__actions .nav-toggle .nav-toggle__bar:nth-child(3) {
    transform: none;
  }
}

/* Buttons */

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  padding: 0.78rem 1.4rem;
  border-radius: var(--radius);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.96875rem;
  text-decoration: none;
  border: 1px solid transparent;
  cursor: pointer;
  transition: background 0.3s var(--ease-ui), border-color 0.3s var(--ease-ui), color 0.3s var(--ease-ui),
    box-shadow 0.3s var(--ease-ui), transform 0.3s var(--ease-ui);
}

.btn:active:not(:disabled) {
  transform: scale(0.99);
  transition-duration: 0.1s;
}

.btn--sm {
  padding: 0.52rem 1.1rem;
  font-size: 0.90625rem;
}

.btn--lg {
  padding: 0.95rem 1.7rem;
  font-size: 1.03125rem;
}

.btn--primary {
  background: var(--color-primary);
  color: var(--color-white);
  box-shadow: var(--shadow-btn-primary);
}

.btn--primary:hover {
  background: var(--color-primary-dark);
  color: var(--color-white);
  box-shadow: var(--shadow-btn-primary-hover);
  transform: translateY(-1px);
}

.btn--secondary {
  background: var(--color-white);
  color: var(--color-dark);
  border-color: rgba(15, 23, 42, 0.1);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.04);
}

.btn--secondary:hover {
  border-color: rgba(37, 99, 235, 0.22);
  color: var(--color-dark);
  box-shadow: var(--shadow-card);
  transform: translateY(-1px);
}

.btn--hero-primary {
  box-shadow: 0 2px 6px rgba(15, 23, 42, 0.08), 0 8px 24px -4px rgba(37, 99, 235, 0.35);
}

.btn--hero-secondary {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(226, 232, 240, 0.95);
}

.btn--primary-cta {
  background: var(--color-primary);
  color: var(--color-white);
}

.btn--cta-primary {
  background: var(--color-white);
  color: var(--color-primary);
  box-shadow: 0 1px 2px rgba(15, 23, 42, 0.06), 0 8px 24px -6px rgba(15, 23, 42, 0.12);
}

.btn--cta-primary:hover {
  background: rgba(255, 255, 255, 0.98);
  color: var(--color-primary-dark);
  box-shadow: 0 2px 4px rgba(15, 23, 42, 0.06), 0 12px 32px -8px rgba(15, 23, 42, 0.14);
  transform: translateY(-1px);
}

.btn--cta-ghost {
  background: transparent;
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.35);
}

.btn--cta-ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-white);
  border-color: rgba(255, 255, 255, 0.48);
  transform: translateY(-1px);
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn:active,
  .btn--primary:hover,
  .btn--secondary:hover,
  .btn--cta-primary:hover,
  .btn--cta-ghost:hover {
    transform: none;
  }
}

/* Sections */

.section {
  padding: var(--section-padding-y) 0;
}

.section--surface {
  background: linear-gradient(180deg, var(--color-bg-elevated) 0%, var(--color-bg) 100%);
  border-block: 1px solid rgba(226, 232, 240, 0.65);
}

.section--strip-a {
  background: var(--color-bg);
  border-block: 1px solid rgba(15, 23, 42, 0.05);
}

.section--strip-b {
  background: linear-gradient(180deg, #f8fafc 0%, #f1f5f9 100%);
  border-block: 1px solid rgba(15, 23, 42, 0.045);
}

.section--muted {
  background: var(--color-white);
  border-block: 1px solid var(--color-border);
}

.section--airy {
  padding: clamp(6.25rem, 11vw, 9.5rem) 0;
}

.section__eyebrow {
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--color-primary);
  margin: 0 0 1rem;
}

.section__title {
  font-size: clamp(1.7rem, 2.9vw, 2.35rem);
  font-weight: 600;
  margin: 0 0 0.85rem;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.section__lead {
  font-size: 1.1875rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 56ch;
  letter-spacing: -0.012em;
}

.section__lead--compact {
  margin-inline: auto;
}

.section__head {
  margin-bottom: 2.5rem;
}

.section__head--center {
  text-align: center;
}

.section__head--narrow .section__lead {
  margin-left: auto;
  margin-right: auto;
}

/* Hero */

.hero {
  position: relative;
  overflow: hidden;
  padding: 3.5rem 0 4rem;
}

.hero__bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.hero__bg-gradient {
  position: absolute;
  inset: 0;
  background: linear-gradient(
    148deg,
    #1e3a8a 0%,
    #1d4ed8 28%,
    #2563eb 52%,
    #3b82f6 78%,
    #60a5fa 100%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-shine {
  position: absolute;
  inset: -25% -15% auto -15%;
  height: 78%;
  background: linear-gradient(
    118deg,
    transparent 0%,
    rgba(255, 255, 255, 0.04) 38%,
    rgba(255, 255, 255, 0.07) 48%,
    transparent 58%
  );
  opacity: 0;
  pointer-events: none;
  z-index: 0;
}

.hero__bg-noise {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  mix-blend-mode: soft-light;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.82' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

.hero__bg-glow--iso {
  position: absolute;
  width: min(480px, 55vw);
  height: min(480px, 55vw);
  border-radius: 50%;
  filter: blur(88px);
  opacity: 0;
  pointer-events: none;
  background: radial-gradient(circle, rgba(96, 165, 250, 0.5) 0%, rgba(37, 99, 235, 0.15) 45%, transparent 70%);
  top: 8%;
  right: 4%;
  z-index: 0;
}

.hero__bg-vignette--premium {
  position: absolute;
  inset: 0;
  opacity: 0;
  pointer-events: none;
  z-index: 0;
  /* Solo profundidad muy suave en bordes; sin “niebla” sobre la zona de lectura */
  background: radial-gradient(ellipse 120% 80% at 50% 100%, rgba(30, 58, 138, 0.18) 0%, transparent 55%);
}

.hero__bg-grid {
  position: absolute;
  inset: -20%;
  background-image: linear-gradient(rgba(148, 163, 184, 0.12) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.12) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse at 50% 20%, #000 20%, transparent 70%);
}

.hero__bg-grid--fine {
  opacity: 0.5;
  background-size: 12px 12px;
}

.hero__bg-glow {
  position: absolute;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero__bg-glow--blue {
  top: -120px;
  right: -80px;
  background: var(--color-primary);
}

.hero__bg-glow--amber {
  bottom: -180px;
  left: -100px;
  background: var(--color-muted);
  opacity: 0.2;
}

.hero__bg-glow--muted {
  bottom: -180px;
  left: -100px;
  background: var(--color-muted);
  opacity: 0.18;
}

.hero__bg-vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, transparent 40%, rgba(248, 250, 252, 0.95) 85%);
}

.hero__inner {
  position: relative;
  z-index: 2;
  width: var(--container);
  margin-inline: auto;
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: 2.5rem;
  align-items: center;
}

.hero__content {
  position: relative;
  z-index: 2;
}

@media (max-width: 1023px) {
  .hero__inner {
    grid-template-columns: 1fr;
  }
}

.hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.75rem;
  border-radius: 999px;
  background: rgba(37, 99, 235, 0.08);
  color: var(--color-primary-dark);
  font-size: 0.8125rem;
  font-weight: 600;
  margin: 0 0 1rem;
}

.hero__badge-iso {
  flex-shrink: 0;
}

.hero__title {
  font-size: clamp(2rem, 4vw, 2.75rem);
  margin: 0 0 1rem;
  color: var(--color-dark);
}

.hero__lead {
  font-size: 1.0625rem;
  color: var(--color-muted);
  max-width: 52ch;
  margin: 0 0 1.5rem;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.hero__cta-note {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0 0 1.25rem;
}

.hero__trust {
  list-style: none;
  padding: 0;
  margin: 0 0 1rem;
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
}

.hero__trust-item {
  padding: 0.35rem 0.65rem;
  border-radius: 8px;
  background: var(--color-white);
  border: 1px solid var(--color-border);
  font-size: 0.8125rem;
  font-weight: 500;
}

.hero__trust-micro {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

/* Hero mockup */

.hero-mockup {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  background: linear-gradient(180deg, #1e293b 0%, #1e293b 100%);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

.hero-mockup__viewport {
  display: flex;
  flex-direction: column;
  min-height: 320px;
}

.hero-mockup__topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.65rem 0.85rem;
  border-bottom: 1px solid rgba(148, 163, 184, 0.15);
}

.hero-mockup__topbar-left {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-mockup__logo {
  height: 22px;
  width: auto;
}

.hero-mockup__topbar-pill {
  font-size: 0.6875rem;
  padding: 0.2rem 0.45rem;
  border-radius: 6px;
  background: rgba(37, 99, 235, 0.2);
  color: #e2e8f0;
}

.hero-mockup__topbar-right {
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.hero-mockup__search {
  width: 120px;
  height: 22px;
  border-radius: 6px;
  background: rgba(148, 163, 184, 0.12);
}

.hero-mockup__avatar {
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: rgba(37, 99, 235, 0.35);
  border: 1px solid rgba(226, 232, 240, 0.2);
}

.hero-mockup__body {
  display: grid;
  grid-template-columns: 44px 1fr;
  flex: 1;
  min-height: 0;
}

.hero-mockup__sidebar {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.45rem;
  padding: 0.65rem 0;
  border-right: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(30, 41, 59, 0.5);
}

.hero-mockup__sb-icon {
  width: 22px;
  height: 22px;
  border-radius: 7px;
  background: rgba(148, 163, 184, 0.12);
}

.hero-mockup__sb-icon.is-active {
  background: rgba(37, 99, 235, 0.35);
  box-shadow: 0 0 0 1px rgba(37, 99, 235, 0.45);
}

.hero-mockup__sb-icon--accent {
  background: rgba(37, 99, 235, 0.45);
}

.hero-mockup__sb-spacer {
  flex: 1;
  min-height: 8px;
}

.hero-mockup__stage {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.hero-mockup__kpis {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.5rem;
}

@media (min-width: 640px) {
  .hero-mockup__kpis {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.hero-mockup__kpi {
  padding: 0.45rem 0.5rem;
  border-radius: 8px;
  background: rgba(30, 41, 59, 0.55);
  border: 1px solid rgba(148, 163, 184, 0.12);
}

.hero-mockup__kpi-label {
  display: block;
  font-size: 0.625rem;
  color: rgba(226, 232, 240, 0.65);
  margin-bottom: 0.15rem;
}

.hero-mockup__kpi-value {
  font-size: 0.8125rem;
  font-weight: 700;
  color: #f8fafc;
}

.hero-mockup__kpi-sub {
  font-weight: 500;
  color: rgba(226, 232, 240, 0.55);
  font-size: 0.75rem;
}

.hero-mockup__kpi-value--accent {
  color: var(--color-primary);
}

.hero-mockup__split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.5rem;
}

@media (max-width: 639px) {
  .hero-mockup__split {
    grid-template-columns: 1fr;
  }
}

.hero-mockup__chart-card,
.hero-mockup__list-card {
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  background: rgba(30, 41, 59, 0.45);
  padding: 0.5rem;
}

.hero-mockup__chart-head {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 0.35rem;
}

.hero-mockup__chart-title {
  font-size: 0.6875rem;
  color: #e2e8f0;
  font-weight: 600;
}

.hero-mockup__chart-meta {
  font-size: 0.5625rem;
  color: rgba(226, 232, 240, 0.45);
}

.hero-mockup__chart {
  width: 100%;
  height: auto;
  display: block;
}

.hero-mockup__list-title {
  font-size: 0.6875rem;
  font-weight: 600;
  color: #e2e8f0;
  margin: 0 0 0.35rem;
}

.hero-mockup__list {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.625rem;
  color: rgba(226, 232, 240, 0.75);
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.hero-mockup__list-dot {
  display: inline-block;
  width: 6px;
  height: 6px;
  border-radius: 50%;
  margin-right: 0.35rem;
  background: rgba(148, 163, 184, 0.35);
  vertical-align: middle;
}

.hero-mockup__list-dot--on {
  background: var(--color-primary);
}

.hero-mockup__table {
  border-radius: 8px;
  border: 1px solid rgba(148, 163, 184, 0.12);
  overflow: hidden;
  font-size: 0.625rem;
}

.hero-mockup__tr {
  display: grid;
  grid-template-columns: 1fr 1.4fr 0.9fr;
  gap: 0.35rem;
  padding: 0.4rem 0.5rem;
  color: rgba(226, 232, 240, 0.85);
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.hero-mockup__tr--head {
  background: rgba(30, 41, 59, 0.65);
  font-weight: 600;
  color: rgba(226, 232, 240, 0.55);
  border-top: none;
}

.hero-mockup__tr-num {
  text-align: right;
}

.hero-mockup__tag {
  display: inline-block;
  padding: 0.15rem 0.35rem;
  border-radius: 6px;
  background: rgba(34, 197, 94, 0.15);
  color: #bbf7d0;
  font-size: 0.5625rem;
}

.hero-mockup__tag--accent {
  background: rgba(37, 99, 235, 0.25);
  color: #dbeafe;
}

/* Post hero demo */

.post-hero-demo__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 2.5rem;
  align-items: center;
}

@media (max-width: 899px) {
  .post-hero-demo__grid {
    grid-template-columns: 1fr;
  }
}

.post-hero-demo__title {
  font-size: clamp(1.5rem, 2.5vw, 1.85rem);
  margin: 0 0 0.75rem;
}

.post-hero-demo__lead {
  color: var(--color-muted);
  margin: 0 0 1rem;
}

.post-hero-demo__bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.post-hero-demo__bullets li {
  padding: 0.35rem 0 0.35rem 1.35rem;
  position: relative;
}

.post-hero-demo__bullets li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.65rem;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--color-primary);
  opacity: 0.85;
}

.post-hero-demo__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.post-hero-demo__compare-col {
  border-radius: var(--radius);
  padding: 1rem;
  border: 1px solid var(--color-border);
  background: #fafafa;
}

.post-hero-demo__compare-col--after {
  border-color: rgba(37, 99, 235, 0.25);
  background: rgba(37, 99, 235, 0.04);
}

.post-hero-demo__compare-label {
  display: block;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  margin-bottom: 0.5rem;
  color: var(--color-muted);
}

.post-hero-demo__compare-col ul {
  margin: 0;
  padding-left: 1.1rem;
  font-size: 0.875rem;
  color: var(--color-dark);
}

.post-hero-demo__frame {
  border-radius: var(--radius-lg);
  padding: 0.5rem;
  background: linear-gradient(135deg, rgba(37, 99, 235, 0.08), rgba(148, 163, 184, 0.08));
}

.post-hero-demo__mock .hero-mockup {
  box-shadow: none;
}

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.55s cubic-bezier(0.22, 1, 0.36, 1), transform 0.55s cubic-bezier(0.22, 1, 0.36, 1);
}

[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
}

/* Flow band */

.section--band {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
}

.band-v1 {
  background: linear-gradient(180deg, #1e293b 0%, #1e293b 100%);
  color: #e2e8f0;
}

.band-v1__decor {
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.band-v1__grid {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: linear-gradient(rgba(148, 163, 184, 0.15) 1px, transparent 1px),
    linear-gradient(90deg, rgba(148, 163, 184, 0.15) 1px, transparent 1px);
  background-size: 40px 40px;
}

.band-v1__vignette {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 50% 0%, rgba(37, 99, 235, 0.2), transparent 55%);
}

.nexa-flow-section__head {
  text-align: center;
  margin-bottom: 2.5rem;
}

.band-v1 .section__eyebrow {
  color: var(--color-primary);
}

.band-v1 .section__title {
  color: #f8fafc;
}

.band-v1 .section__lead {
  color: rgba(226, 232, 240, 0.75);
}

.nexa-flow-board {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.nexa-flow-board__row {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: stretch;
  gap: 0.75rem;
}

.nexa-flow-card {
  flex: 1 1 160px;
  max-width: 220px;
  padding: 1rem;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(226, 232, 240, 0.14);
}

.nexa-flow-card__n {
  display: inline-block;
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 0.35rem;
}

.nexa-flow-card__title {
  font-size: 1rem;
  margin: 0 0 0.35rem;
  color: #f8fafc;
}

.nexa-flow-card__text {
  font-size: 0.8125rem;
  color: rgba(226, 232, 240, 0.72);
  margin: 0;
  line-height: 1.5;
}

.nexa-flow-board__connector {
  display: flex;
  align-items: center;
  color: rgba(226, 232, 240, 0.45);
}

@media (max-width: 767px) {
  .nexa-flow-board__connector {
    display: none;
  }
}

.nexa-flow-board__bridge {
  display: flex;
  justify-content: center;
}

.nexa-flow-board__bridge-line {
  width: 2px;
  height: 28px;
  background: linear-gradient(180deg, rgba(148, 163, 184, 0.35), transparent);
  border-radius: 2px;
}

/* Modules */

.modules {
  display: grid;
  gap: 1rem;
}

.modules--capabilities {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.module-card {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  padding: 1.25rem;
  box-shadow: var(--shadow-sm);
}

.module-card--premium {
  display: flex;
  flex-direction: column;
  gap: 0.65rem;
}

.module-card__icon {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.08);
}

.module-card__icon--accent {
  color: var(--color-primary-dark);
  background: rgba(37, 99, 235, 0.12);
}

.module-card__title {
  font-size: 1.0625rem;
  margin: 0;
}

.module-card__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
}

.module-card__text--wrap {
  text-wrap: balance;
}

/* Product ops */

.product-ops-section__intro {
  text-align: center;
  margin-bottom: 2rem;
}

.product-ops-section__lead {
  margin-inline: auto;
}

.product-ops__shell {
  border-radius: var(--radius-lg);
  border: 1px solid var(--color-border);
  overflow: hidden;
  background: var(--color-white);
  box-shadow: var(--shadow-md);
}

.product-ops__chrome {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.6rem 0.85rem;
  background: #f8fafc;
  border-bottom: 1px solid var(--color-border);
}

.product-ops__dots span {
  display: inline-block;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-right: 4px;
  background: #cbd5e1;
}

.product-ops__chrome-title {
  flex: 1;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--color-muted);
}

.product-ops__live {
  font-size: 0.6875rem;
  color: var(--color-primary);
  font-weight: 600;
}

.product-ops__body {
  display: grid;
  grid-template-columns: minmax(0, 240px) 1fr;
}

@media (max-width: 899px) {
  .product-ops__body {
    grid-template-columns: 1fr;
  }
}

.product-ops__sidebar {
  border-right: 1px solid var(--color-border);
  background: #fafafa;
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-ops-panel {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  background: var(--color-white);
  padding: 0.75rem;
}

.product-ops-panel__label {
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin: 0 0 0.35rem;
}

.product-ops-panel__name {
  font-weight: 700;
  font-size: 0.875rem;
  margin: 0 0 0.5rem;
}

.product-ops-dl {
  margin: 0;
  font-size: 0.75rem;
}

.product-ops-dl div {
  display: flex;
  justify-content: space-between;
  gap: 0.5rem;
  padding: 0.2rem 0;
  border-top: 1px solid var(--color-border);
}

.product-ops-dl dt {
  color: var(--color-muted);
  font-weight: 500;
}

.product-ops-dl dd {
  margin: 0;
  font-weight: 600;
}

.product-ops-credit__row {
  display: flex;
  justify-content: space-between;
  font-size: 0.8125rem;
  margin-bottom: 0.35rem;
}

.product-ops-credit__row--muted {
  color: var(--color-muted);
}

.product-ops-credit__bar {
  height: 6px;
  border-radius: 999px;
  background: #e2e8f0;
  overflow: hidden;
  margin: 0.35rem 0;
}

.product-ops-credit__bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
  background: linear-gradient(90deg, var(--color-primary), rgba(37, 99, 235, 0.65));
}

.product-ops-credit__hint {
  font-size: 0.6875rem;
  color: var(--color-muted);
  margin: 0;
}

.product-ops__main {
  padding: 0.75rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.product-ops-toolbar {
  display: flex;
  gap: 0.5rem;
  align-items: center;
}

.product-ops-toolbar__search {
  flex: 1;
  height: 32px;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  background: #f8fafc;
}

.product-ops-toolbar__pill {
  font-size: 0.75rem;
  padding: 0.35rem 0.6rem;
  border-radius: 999px;
  border: 1px solid var(--color-border);
  font-weight: 600;
}

.product-ops-queue {
  border: 1px solid var(--color-border);
  border-radius: var(--radius);
  overflow: hidden;
  font-size: 0.75rem;
}

.product-ops-queue__head,
.product-ops-queue__row {
  display: grid;
  grid-template-columns: 0.9fr 1fr 0.8fr 1.2fr;
  gap: 0.35rem;
  padding: 0.45rem 0.5rem;
}

@media (max-width: 639px) {
  .product-ops-queue__head,
  .product-ops-queue__row {
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: auto;
  }
}

.product-ops-queue__head {
  background: var(--color-bg);
  font-weight: 700;
  color: var(--color-muted);
  font-size: 0.6875rem;
}

.product-ops-queue__row {
  border-top: 1px solid var(--color-border);
}

.product-ops-queue__id {
  font-weight: 700;
}

.product-ops-pill {
  display: inline-block;
  padding: 0.15rem 0.4rem;
  border-radius: 999px;
  font-size: 0.6875rem;
  font-weight: 600;
}

.product-ops-pill--ok {
  background: rgba(34, 197, 94, 0.12);
  color: #166534;
}

.product-ops-pill--warn {
  background: rgba(234, 179, 8, 0.15);
  color: #854d0e;
}

.product-ops-pill--wait {
  background: rgba(37, 99, 235, 0.12);
  color: #1e40af;
}

.product-ops-queue__meta {
  color: var(--color-muted);
  font-size: 0.6875rem;
}

.product-ops-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 0.75rem;
}

@media (max-width: 639px) {
  .product-ops-split {
    grid-template-columns: 1fr;
  }
}

.product-ops-alerts {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
  color: var(--color-dark);
}

.product-ops-alerts li {
  display: flex;
  gap: 0.35rem;
  margin-bottom: 0.35rem;
}

.product-ops-alerts__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  margin-top: 0.35rem;
  flex-shrink: 0;
  background: #cbd5e1;
}

.product-ops-alerts__dot--risk {
  background: #f59e0b;
}

.product-ops-trace {
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 0.75rem;
}

.product-ops-trace li {
  display: flex;
  gap: 0.5rem;
  margin-bottom: 0.35rem;
  color: var(--color-muted);
}

.product-ops-trace__t {
  font-variant-numeric: tabular-nums;
  color: var(--color-dark);
  font-weight: 600;
}

/* Benefits */

.benefit-grid {
  display: grid;
  gap: 1rem;
}

.benefit-grid--visual {
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
}

.benefit-card {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 1.25rem;
  background: var(--color-white);
}

.benefit-card__icon {
  width: 42px;
  height: 42px;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--color-primary);
  background: rgba(37, 99, 235, 0.08);
  margin-bottom: 0.75rem;
}

.benefit-card__title {
  font-size: 1rem;
  margin: 0 0 0.35rem;
}

.benefit-card__text {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0;
}

/* Wow */

.wow-section {
  position: relative;
  padding: 5rem 0;
  overflow: hidden;
  background: #1e293b;
  color: #e2e8f0;
}

.wow-section__bg {
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at 30% 20%, rgba(37, 99, 235, 0.35), transparent 55%),
    radial-gradient(ellipse at 80% 60%, rgba(100, 116, 139, 0.25), transparent 50%);
}

.wow-section__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
}

.wow-section__mesh-svg {
  width: 100%;
  height: 100%;
}

.wow-section__inner {
  position: relative;
  text-align: center;
}

.section__eyebrow--on-dark {
  color: var(--color-primary);
}

.wow-section__title {
  font-size: clamp(1.5rem, 3vw, 2.1rem);
  color: #f8fafc;
  margin: 0 0 0.75rem;
}

.wow-section__lead {
  color: rgba(226, 232, 240, 0.78);
  max-width: 52ch;
  margin: 0 auto 1.25rem;
}

.wow-section__tags {
  list-style: none;
  padding: 0;
  margin: 0 auto 2rem;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.5rem;
  max-width: 640px;
}

.wow-section__tags li {
  padding: 0.35rem 0.65rem;
  border-radius: 999px;
  border: 1px solid rgba(148, 163, 184, 0.35);
  font-size: 0.8125rem;
  color: #e2e8f0;
}

.wow-section__viz {
  max-width: 900px;
  margin: 0 auto;
}

.wow-section__svg {
  width: 100%;
  height: auto;
}

/* CTA band */

.cta-band {
  position: relative;
  padding: clamp(4.5rem, 9vw, 6.5rem) 0;
  overflow: hidden;
}

.cta-band--premium {
  background: linear-gradient(145deg, #1e293b 0%, #1e40af 38%, #2563eb 72%, #2563eb 100%);
  color: #f8fafc;
}

.cta-band__bg {
  position: absolute;
  inset: 0;
  opacity: 0.4;
  background:
    radial-gradient(ellipse 90% 70% at 15% 20%, rgba(255, 255, 255, 0.2), transparent 50%),
    radial-gradient(circle at 85% 75%, rgba(96, 165, 250, 0.15), transparent 45%);
}

.cta-band__inner {
  position: relative;
  text-align: center;
  max-width: 680px;
  margin: 0 auto;
}

.cta-band__brand img {
  margin: 0 auto 1rem;
  height: 56px;
  width: auto;
}

.cta-band__title {
  font-size: clamp(1.65rem, 3vw, 2.15rem);
  font-weight: 600;
  letter-spacing: -0.03em;
  line-height: 1.2;
  margin: 0 0 0.85rem;
  color: #fff;
}

.cta-band__lead {
  font-size: 1.0625rem;
  line-height: 1.65;
  color: rgba(248, 250, 252, 0.9);
  margin: 0 0 1.65rem;
}

.cta-band__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
}

.cta-band__note {
  font-size: 0.875rem;
  color: rgba(248, 250, 252, 0.75);
  margin: 0;
}

/* Page templates */

.page-hero {
  padding: clamp(3.25rem, 8vw, 4.25rem) 0 clamp(2.75rem, 6vw, 3.5rem);
  background: linear-gradient(180deg, #ffffff 0%, var(--color-bg) 100%);
  border-bottom: 1px solid rgba(15, 23, 42, 0.06);
}

.page-hero__title {
  font-size: clamp(1.85rem, 3.2vw, 2.5rem);
  letter-spacing: -0.03em;
  line-height: 1.15;
  margin: 0 0 0.85rem;
}

.page-hero__lead {
  font-size: 1.125rem;
  line-height: 1.65;
  color: var(--color-muted);
  max-width: 58ch;
  margin: 0;
  letter-spacing: -0.012em;
}

.content-block {
  padding: 3rem 0;
}

.content-block h2 {
  font-size: 1.35rem;
  margin: 2rem 0 0.75rem;
}

.content-block h2:first-child {
  margin-top: 0;
}

.content-block p {
  color: var(--color-dark);
  max-width: 70ch;
}

.solutions-grid {
  display: grid;
  gap: 1rem;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.solution-card {
  border-radius: var(--radius);
  border: 1px solid var(--color-border);
  padding: 1.25rem;
  background: var(--color-white);
  box-shadow: var(--shadow-sm);
}

.solution-card h3 {
  font-size: 1.05rem;
  margin: 0 0 0.5rem;
}

.solution-card p {
  margin: 0;
  font-size: 0.9375rem;
  color: var(--color-muted);
}

.list-check {
  list-style: none;
  padding: 0;
  margin: 0 0 1.5rem;
}

.list-check li {
  padding: 0.4rem 0 0.4rem 1.5rem;
  position: relative;
  color: var(--color-dark);
}

.list-check li::before {
  content: "✓";
  position: absolute;
  left: 0;
  color: var(--color-primary);
  font-weight: 700;
}

.section-cta {
  margin-top: 1rem;
}

/* Forms */

.form {
  max-width: 720px;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media (max-width: 639px) {
  .form-grid {
    grid-template-columns: 1fr;
  }
}

.form__row {
  margin-bottom: 1rem;
}

.form__row label {
  display: block;
  font-size: 0.875rem;
  font-weight: 600;
  margin-bottom: 0.35rem;
}

.form__row input,
.form__row textarea {
  width: 100%;
  padding: 0.65rem 0.75rem;
  border-radius: 8px;
  border: 1px solid var(--color-border);
  font: inherit;
  background: var(--color-white);
}

.form__row textarea {
  min-height: 140px;
  resize: vertical;
}

.form__row--honeypot {
  position: absolute;
  left: -9999px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.form__error {
  font-size: 0.8125rem;
  color: #b91c1c;
  margin: 0.35rem 0 0;
}

.alert {
  padding: 1rem 1.15rem;
  border-radius: var(--radius);
  margin-bottom: 1rem;
  font-size: 0.9375rem;
}

.alert--success {
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.35);
  color: #14532d;
}

.alert--error {
  background: rgba(239, 68, 68, 0.1);
  border: 1px solid rgba(239, 68, 68, 0.35);
  color: #991b1b;
}

/* Footer */

.site-footer {
  background: linear-gradient(180deg, #fafbfc 0%, var(--color-bg) 100%);
  border-top: 1px solid rgba(15, 23, 42, 0.06);
  padding: 4rem 0 0;
}

.site-footer__grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 2rem;
  padding-bottom: 2.5rem;
}

@media (max-width: 899px) {
  .site-footer__grid {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 539px) {
  .site-footer__grid {
    grid-template-columns: 1fr;
  }
}

.site-footer__logo {
  display: inline-flex;
}

.site-footer__logo img {
  height: 56px;
  width: auto;
  filter: drop-shadow(0 1px 6px rgba(15, 23, 42, 0.05));
}

.site-footer__tagline {
  font-size: 0.9375rem;
  color: var(--color-muted);
  margin: 0.75rem 0 0;
  max-width: 48ch;
}

.site-footer__heading {
  font-size: 0.8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--color-muted);
  margin: 0 0 0.65rem;
}

.site-footer__links {
  list-style: none;
  padding: 0;
  margin: 0;
}

.site-footer__links a {
  color: var(--color-dark);
  text-decoration: none;
  font-size: 0.9375rem;
  display: inline-block;
  padding: 0.2rem 0;
  transition: color var(--transition-fast);
}

.site-footer__links a:hover {
  color: var(--color-primary);
}

.site-footer__note {
  font-size: 0.875rem;
  color: var(--color-muted);
  margin: 0 0 0.75rem;
}

.site-footer__bar {
  border-top: 1px solid var(--color-border);
  background: var(--color-bg);
}

.site-footer__bar-inner {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 0.75rem;
  padding: 1rem 0;
  font-size: 0.8125rem;
  color: var(--color-muted);
}

.site-footer__copy {
  margin: 0;
}

.site-footer__meta {
  margin: 0;
  font-variant-numeric: tabular-nums;
}
