/* Linkeo.vip — CSS semántico del site comercial (sin Tailwind) */

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

:root {
  --brand-50: #ecfdf5;
  --brand-100: #d1fae5;
  --brand-500: #10b981;
  --brand-600: #0e9f6e;
  --brand-700: #047857;
  --brand-800: #065f46;
  --brand-900: #064e3b;
  --slate-50: #f8fafc;
  --slate-100: #f1f5f9;
  --slate-200: #e2e8f0;
  --slate-300: #cbd5e1;
  --slate-400: #94a3b8;
  --slate-500: #64748b;
  --slate-600: #475569;
  --slate-700: #334155;
  --slate-800: #1e293b;
  --slate-900: #0f172a;
  --slate-950: #020617;
  --amber-100: #fef3c7;
  --amber-700: #b45309;
  --blue-100: #dbeafe;
  --blue-700: #1d4ed8;
  --font: 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  --radius: 0.75rem;
  --radius-lg: 1rem;
  --radius-xl: 1.25rem;
  --shadow: 0 1px 2px rgba(15, 23, 42, 0.06);
  --shadow-md: 0 8px 24px rgba(15, 23, 42, 0.1);
  --shadow-lg: 0 18px 40px rgba(15, 23, 42, 0.16);
  --shell: 72rem;
}

html {
  scroll-behavior: smooth;
}

body.site {
  margin: 0;
  min-height: 100vh;
  font-family: var(--font);
  line-height: 1.5;
  color: var(--slate-900);
  background: var(--slate-50);
  -webkit-font-smoothing: antialiased;
  padding-bottom: 4.5rem;
}

@media (min-width: 768px) {
  body.site {
    padding-bottom: 0;
  }
}

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

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

button,
input,
select,
textarea {
  font: inherit;
}

input,
select,
textarea {
  font-size: 16px !important;
}

.is-hidden {
  display: none !important;
}

.site-br-desktop {
  display: none;
}

@media (min-width: 640px) {
  .site-br-desktop {
    display: inline;
  }
}

.site-shell {
  width: 100%;
  max-width: var(--shell);
  margin: 0 auto;
  padding: 0 1rem;
}

@media (min-width: 640px) {
  .site-shell {
    padding: 0 1.5rem;
  }
}

.site-shell--narrow {
  max-width: 56rem;
}

.site-shell--closing {
  max-width: 48rem;
  text-align: center;
}

.site-text-brand {
  color: var(--brand-600);
}

/* Buttons */
.site-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  font-weight: 650;
  cursor: pointer;
  transition: background-color 0.15s ease, border-color 0.15s ease, color 0.15s ease, box-shadow 0.15s ease;
}

.site-btn--sm {
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
}

.site-btn--lg {
  padding: 0.85rem 1.5rem;
  font-size: 1rem;
}

.site-btn--block {
  width: 100%;
  padding: 1rem 1.5rem;
  font-size: 1rem;
}

.site-btn--primary {
  color: #fff;
  background: var(--brand-600);
  box-shadow: 0 10px 24px rgba(14, 159, 110, 0.22);
}

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

.site-btn--secondary {
  color: var(--slate-700);
  background: #fff;
  border-color: var(--slate-300);
}

.site-btn--secondary:hover {
  background: var(--slate-100);
}

.site-btn--dark {
  color: #fff;
  background: var(--slate-900);
}

.site-btn--dark:hover {
  background: var(--slate-800);
}

.site-btn--light {
  color: var(--slate-900);
  background: #fff;
}

.site-btn--light:hover {
  background: var(--slate-100);
}

.site-btn--header-cta {
  display: none;
}

@media (min-width: 640px) {
  .site-btn--header-cta {
    display: inline-flex;
  }
}

/* Header */
.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(10px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.9);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 4rem;
  gap: 1rem;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.site-brand__mark {
  width: 2rem;
  height: 2rem;
  border-radius: 0.5rem;
  background: var(--brand-600);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  box-shadow: var(--shadow);
}

.site-brand:hover .site-brand__mark {
  background: var(--brand-700);
}

.site-brand__text {
  display: flex;
  flex-direction: column;
  line-height: 1.1;
}

.site-brand__name {
  font-weight: 750;
  font-size: 1.125rem;
  letter-spacing: -0.02em;
}

.site-brand__tld {
  color: var(--brand-600);
}

.site-brand__tag {
  font-size: 0.625rem;
  font-weight: 650;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.site-nav {
  display: none;
  align-items: center;
  gap: 2rem;
  font-size: 0.875rem;
  font-weight: 550;
  color: var(--slate-600);
}

.site-nav a:hover {
  color: var(--slate-900);
}

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

/* Hero */
.site-hero {
  position: relative;
  overflow: hidden;
  padding: 2rem 0 4rem;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
  background: linear-gradient(180deg, #ffffff 0%, var(--slate-50) 100%);
}

@media (min-width: 768px) {
  .site-hero {
    padding: 4rem 0 6rem;
  }
}

.site-hero__grid {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .site-hero__grid {
    grid-template-columns: 1.15fr 0.85fr;
    gap: 2rem;
  }
}

.site-pill {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  margin: 0 0 1.5rem;
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  border: 1px solid #a7f3d0;
  background: var(--brand-50);
  color: var(--brand-700);
  font-size: 0.75rem;
  font-weight: 650;
}

.site-pill--solid {
  border-color: transparent;
  background: var(--brand-100);
  color: var(--brand-800);
  margin-bottom: 1rem;
}

.site-pill__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  background: var(--brand-600);
  animation: site-ping 1.4s ease-out infinite;
}

@keyframes site-ping {
  0% { transform: scale(1); opacity: 1; }
  70% { transform: scale(1.8); opacity: 0; }
  100% { transform: scale(1.8); opacity: 0; }
}

.site-hero__title {
  margin: 0 0 1.5rem;
  font-size: clamp(1.875rem, 4vw, 3rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.15;
}

.site-hero__lead {
  margin: 0 0 2rem;
  max-width: 40rem;
  font-size: 1.125rem;
  color: var(--slate-600);
  line-height: 1.65;
}

.site-hero__ctas {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

@media (min-width: 640px) {
  .site-hero__ctas {
    flex-direction: row;
    align-items: center;
  }
}

.site-hero__stats {
  margin-top: 2.5rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(226, 232, 240, 0.9);
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1rem;
  text-align: center;
}

@media (min-width: 640px) {
  .site-hero__stats {
    text-align: left;
  }
}

.site-hero__stat-title {
  font-weight: 700;
  font-size: 0.875rem;
}

@media (min-width: 640px) {
  .site-hero__stat-title {
    font-size: 1rem;
  }
}

.site-hero__stat-text {
  font-size: 0.75rem;
  color: var(--slate-500);
}

.site-hero__device {
  width: 100%;
  max-width: 21.25rem;
  margin: 0 auto;
}

.site-phone {
  position: relative;
  margin: 0 auto;
  border: 10px solid var(--slate-900);
  border-radius: 2.75rem;
  background: var(--slate-900);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}

.site-phone__notch {
  position: absolute;
  top: 0;
  inset-inline: 0;
  height: 1.5rem;
  z-index: 30;
  display: flex;
  justify-content: center;
  align-items: center;
  background: var(--slate-900);
}

.site-phone__notch span {
  width: 5rem;
  height: 0.875rem;
  border-radius: 0 0 0.75rem 0.75rem;
  background: #000;
}

.site-hero__caption {
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.5rem;
}

.site-status-chip {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.35rem 0.85rem;
  border-radius: 999px;
  border: 1px solid var(--slate-200);
  background: #fff;
  box-shadow: var(--shadow);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-800);
}

.site-status-chip__dot {
  width: 0.625rem;
  height: 0.625rem;
  border-radius: 999px;
  background: var(--brand-600);
  animation: site-pulse 1.6s ease-in-out infinite;
}

@keyframes site-pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.45; }
}

/* Carousel */
.hero-carousel {
  position: relative;
  padding-top: 1.5rem;
  background: var(--slate-900);
}

.hero-carousel__track {
  position: relative;
  min-height: 580px;
}

.hero-carousel__slide {
  position: absolute;
  inset: 0;
  margin: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.45s ease, visibility 0.45s ease;
  pointer-events: none;
}

.hero-carousel__slide.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  position: relative;
}

.hero-carousel__slide img {
  width: 100%;
  height: 100%;
  min-height: 560px;
  max-height: 640px;
  object-fit: cover;
  object-position: top center;
  background: var(--slate-900);
}

.hero-carousel__slide[data-fit='contain'] img {
  object-fit: contain;
  object-position: center top;
}

.hero-carousel__dots {
  display: flex;
  justify-content: center;
  gap: 0.4rem;
}

.hero-carousel__dot {
  width: 0.5rem;
  height: 0.5rem;
  border-radius: 999px;
  border: 0;
  padding: 0;
  background: var(--slate-300);
  cursor: pointer;
  transition: width 0.2s ease, background-color 0.2s ease;
}

.hero-carousel__dot.is-active {
  width: 1.25rem;
  background: var(--brand-600);
}

.hero-carousel__nav {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  z-index: 20;
  width: 2rem;
  height: 2rem;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.25);
  background: rgba(15, 23, 42, 0.55);
  color: #fff;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  backdrop-filter: blur(6px);
}

.hero-carousel__nav--prev { left: 0.35rem; }
.hero-carousel__nav--next { right: 0.35rem; }

.hero-carousel__nav:focus-visible {
  outline: 2px solid var(--brand-500);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .hero-carousel__slide,
  .site-pill__dot,
  .site-status-chip__dot {
    animation: none;
    transition: none;
  }
}

/* Sections */
.site-section {
  padding: 4rem 0;
  border-bottom: 1px solid rgba(226, 232, 240, 0.8);
}

@media (min-width: 768px) {
  .site-section {
    padding: 6rem 0;
  }
}

.site-section--white { background: #fff; }
.site-section--muted { background: var(--slate-50); }
.site-section--form { background: rgba(241, 245, 249, 0.85); }

.site-section__intro {
  margin-bottom: 3.5rem;
}

.site-section__intro--center {
  max-width: 42rem;
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.site-kicker {
  display: block;
  margin-bottom: 0.5rem;
  font-size: 0.75rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--brand-600);
}

.site-section__title {
  margin: 0 0 1rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.site-section__lead {
  margin: 0;
  color: var(--slate-600);
  font-size: 1rem;
  line-height: 1.65;
}

@media (min-width: 640px) {
  .site-section__lead {
    font-size: 1.125rem;
  }
}

/* Cards */
.site-cards {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .site-cards--4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (min-width: 1024px) {
  .site-cards--4 {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.site-card {
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--slate-50);
  transition: border-color 0.15s ease;
}

.site-card:hover {
  border-color: #6ee7b7;
}

.site-card--tall {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--slate-50);
  box-shadow: var(--shadow);
}

.site-card__icon {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  font-weight: 700;
}

.site-card--tall .site-card__icon {
  width: 3rem;
  height: 3rem;
  font-size: 1.5rem;
}

.site-card__icon--brand {
  background: var(--brand-100);
  color: var(--brand-700);
}

.site-card__icon--slate {
  background: var(--slate-100);
  color: var(--slate-700);
}

.site-card__icon--amber {
  background: var(--amber-100);
  color: var(--amber-700);
}

.site-card__icon--blue {
  background: var(--blue-100);
  color: var(--blue-700);
}

.site-card__eyebrow {
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.site-card__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.site-card__text {
  margin: 0;
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.55;
}

.site-card__foot {
  margin-top: 1rem;
  padding-top: 0.75rem;
  border-top: 1px solid var(--slate-200);
  font-size: 0.75rem;
  font-weight: 550;
  color: var(--slate-500);
}

.site-banner {
  margin: 3rem auto 0;
  width: fit-content;
  max-width: 100%;
  display: inline-flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.75rem 1.5rem;
  border-radius: 999px;
  background: var(--slate-900);
  color: #fff;
  font-weight: 650;
  font-size: 0.875rem;
  box-shadow: var(--shadow);
}

.site-banner svg {
  color: var(--brand-500);
  flex-shrink: 0;
}

@media (min-width: 640px) {
  .site-banner {
    font-size: 1rem;
  }
}

/* Steps */
.site-steps {
  display: grid;
  gap: 1.5rem;
}

@media (min-width: 768px) {
  .site-steps {
    grid-template-columns: repeat(4, minmax(0, 1fr));
  }
}

.site-step {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 1.5rem;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  background: #fff;
  box-shadow: var(--shadow);
}

.site-step__num {
  width: 2.5rem;
  height: 2.5rem;
  margin-bottom: 1rem;
  border-radius: var(--radius);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--slate-900);
  color: #fff;
  font-weight: 800;
  box-shadow: var(--shadow);
}

.site-step__title {
  margin: 0 0 0.5rem;
  font-size: 1.125rem;
  font-weight: 700;
}

.site-step__text {
  margin: 0 0 1rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.55;
}

.site-step__meta {
  padding-top: 0.75rem;
  border-top: 1px solid var(--slate-100);
  font-size: 0.75rem;
  font-weight: 650;
  color: var(--brand-600);
}

/* Shots */
.site-shots {
  display: grid;
  gap: 2.5rem;
}

.site-shot {
  margin: 0;
  padding: 0.75rem;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  background: var(--slate-100);
  box-shadow: var(--shadow-md);
  overflow: hidden;
}

@media (min-width: 640px) {
  .site-shot {
    padding: 1.25rem;
  }
}

.site-shot__bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.75rem;
  padding: 0 0.25rem 0.75rem;
  border-bottom: 1px solid var(--slate-200);
  font-size: 0.75rem;
  font-weight: 700;
  color: var(--slate-500);
}

.site-badge {
  padding: 0.2rem 0.65rem;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand-800);
  font-weight: 650;
}

.site-shot img {
  width: 100%;
  border-radius: var(--radius-xl);
  border: 1px solid var(--slate-200);
  background: #fff;
}

.site-shot figcaption {
  margin-top: 0.75rem;
  text-align: center;
  font-size: 0.75rem;
  color: var(--slate-500);
}

/* Split / channels */
.site-split {
  display: grid;
  gap: 3rem;
  align-items: center;
}

@media (min-width: 1024px) {
  .site-split {
    grid-template-columns: 1fr 1fr;
  }

  .site-split--form {
    align-items: start;
  }
}

.site-quote {
  margin: 2rem 0 0;
  padding: 1.25rem;
  border-radius: var(--radius-xl);
  border: 1px solid #a7f3d0;
  background: var(--brand-50);
  color: var(--brand-900);
  font-size: 1.125rem;
  font-weight: 750;
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .site-quote {
    font-size: 1.25rem;
  }
}

.site-channels {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid var(--slate-200);
  background: #fff;
  box-shadow: var(--shadow);
}

@media (min-width: 640px) {
  .site-channels {
    padding: 2rem;
  }
}

.site-channels__label {
  margin-bottom: 1rem;
  text-align: center;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--slate-400);
}

.site-channels__grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.75rem;
}

@media (min-width: 640px) {
  .site-channels__grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

.site-channel {
  padding: 0.85rem;
  border-radius: var(--radius);
  border: 1px solid rgba(226, 232, 240, 0.9);
  background: var(--slate-50);
  text-align: center;
  box-shadow: var(--shadow);
}

.site-channel span {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 1.5rem;
}

.site-channel strong {
  display: block;
  font-size: 0.75rem;
}

.site-channel small {
  display: block;
  font-size: 0.625rem;
  color: var(--slate-500);
}

/* Checklist + form */
.site-checklist {
  list-style: none;
  margin: 0 0 2rem;
  padding: 0;
  display: grid;
  gap: 0.75rem;
}

.site-checklist li {
  position: relative;
  padding-left: 2rem;
  font-size: 0.875rem;
  font-weight: 550;
  color: var(--slate-700);
}

.site-checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  top: 0;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 999px;
  background: var(--brand-600);
  color: #fff;
  font-size: 0.7rem;
  font-weight: 800;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.site-form-panel {
  padding: 1.5rem;
  border-radius: 1.5rem;
  border: 1px solid rgba(226, 232, 240, 0.95);
  background: #fff;
  box-shadow: var(--shadow-md);
}

@media (min-width: 640px) {
  .site-form-panel {
    padding: 2rem;
  }
}

.site-form-panel__title {
  margin: 0 0 0.5rem;
  font-size: 1.25rem;
  font-weight: 750;
}

.site-form-panel__help {
  margin: 0 0 1.5rem;
  font-size: 0.75rem;
  color: var(--slate-500);
}

.site-form {
  display: grid;
  gap: 1rem;
}

.site-form__error {
  margin: 0;
  padding: 0.75rem 0.9rem;
  border: 1px solid #fecaca;
  border-radius: var(--radius);
  background: #fef2f2;
  color: #991b1b;
  font-size: 0.875rem;
  font-weight: 550;
}

.site-field--honeypot {
  position: absolute;
  left: -10000px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-form__row {
  display: grid;
  gap: 1rem;
}

@media (min-width: 640px) {
  .site-form__row {
    grid-template-columns: 1fr 1fr;
  }
}

.site-field label {
  display: block;
  margin-bottom: 0.25rem;
  font-size: 0.75rem;
  font-weight: 750;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--slate-700);
}

.site-field input,
.site-field select,
.site-field textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--slate-200);
  border-radius: var(--radius);
  color: var(--slate-900);
  background: #fff;
  resize: none;
}

.site-field input:focus,
.site-field select:focus,
.site-field textarea:focus {
  outline: 2px solid var(--brand-600);
  outline-offset: 1px;
  border-color: transparent;
}

.site-success {
  text-align: center;
  padding: 2rem 1rem;
}

.site-success__icon {
  width: 4rem;
  height: 4rem;
  margin: 0 auto 1rem;
  border-radius: 999px;
  background: var(--brand-100);
  color: var(--brand-600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.75rem;
  font-weight: 800;
}

.site-success h3 {
  margin: 0 0 0.75rem;
  font-size: 1.5rem;
}

.site-success p {
  margin: 0 auto;
  max-width: 28rem;
  font-size: 0.875rem;
  color: var(--slate-600);
  line-height: 1.6;
}

/* Closing + footer */
.site-closing {
  padding: 4rem 0;
  background: var(--slate-900);
  color: #fff;
}

@media (min-width: 768px) {
  .site-closing {
    padding: 6rem 0;
  }
}

.site-closing h2 {
  margin: 0 0 1.5rem;
  font-size: clamp(1.5rem, 3vw, 2.25rem);
  font-weight: 800;
  letter-spacing: -0.03em;
  line-height: 1.2;
}

.site-closing p {
  margin: 0 auto 2.5rem;
  max-width: 36rem;
  color: var(--slate-300);
  font-size: 1rem;
  line-height: 1.65;
}

@media (min-width: 640px) {
  .site-closing p {
    font-size: 1.125rem;
  }
}

.site-footer {
  background: var(--slate-950);
  color: var(--slate-500);
  border-top: 1px solid var(--slate-800);
  padding: 2rem 0;
  font-size: 0.75rem;
  text-align: center;
}

.site-footer__inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.site-footer strong {
  color: var(--slate-300);
  margin-right: 0.35rem;
}

@media (min-width: 640px) {
  .site-footer__inner {
    flex-direction: row;
    text-align: left;
  }
}

.site-mobile-bar {
  position: fixed;
  bottom: 0;
  inset-inline: 0;
  z-index: 50;
  padding: 0.75rem;
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(10px);
  border-top: 1px solid var(--slate-200);
  box-shadow: 0 -8px 24px rgba(15, 23, 42, 0.08);
}

@media (min-width: 768px) {
  .site-mobile-bar {
    display: none;
  }
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: var(--slate-100);
}

::-webkit-scrollbar-thumb {
  background: var(--slate-300);
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--slate-400);
}
