/* ============================================
   KILTRO.AI — Stylesheet
   Primary: #E01DD0 | Background: #1E1E1E
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Syne:wght@400;600;700;800&family=Space+Mono:wght@400;700&display=swap');

/* ── Reset & Base ──────────────────────────── */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --primary:       #E01DD0;
  --primary-dim:   rgba(224,29,208,0.15);
  --primary-glow:  rgba(224,29,208,0.4);
  --bg:            #1E1E1E;
  --bg-surface:    #252525;
  --bg-elevated:   #2E2E2E;
  --text:          #F0F0F0;
  --text-muted:    rgba(240,240,240,0.45);
  --border:        rgba(224,29,208,0.2);
  --font-display:  'Syne', sans-serif;
  --font-mono:     'Space Mono', monospace;
  --nav-width:     320px;
  --transition:    0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden; /* evita scroll horizontal global */
}

body {
  background-color: var(--bg);
  color: var(--text);
  font-family: var(--font-display);
  min-height: 100vh;
  overflow-x: hidden;
  max-width: 100vw;
}

/* ── Background Layer ──────────────────────── */
.bg-layer {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
}

.bg-layer__svg {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.85;
}

/* Canvas particles */
#particle-canvas {
  position: fixed;
  inset: 0;
  z-index: 1;
  pointer-events: none;
  opacity: 0.6;
}

/* ── Scanline overlay ──────────────────────── */
.bg-layer::after {
  content: '';
  position: absolute;
  inset: 0;
  background: repeating-linear-gradient(
    0deg,
    transparent,
    transparent 2px,
    rgba(0,0,0,0.03) 2px,
    rgba(0,0,0,0.03) 4px
  );
  pointer-events: none;
}

/* ── Header ────────────────────────────────── */
header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 2rem;
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  background: rgba(30,30,30,0.6);
  transition: background var(--transition);
}

header.scrolled {
  background: rgba(30,30,30,0.92);
}

.header__brand {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  text-decoration: none;
  color: var(--text);
}

.header__brand img {
  width: 36px;
  height: 36px;
  filter: drop-shadow(0 0 6px var(--primary-glow));
}

.header__brand-name {
  font-family: var(--font-mono);
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  color: var(--primary);
  text-transform: uppercase;
}

/* ── Hamburger Button ──────────────────────── */
.btn-hamburger {
  position: relative;
  z-index: 200;
  width: 44px;
  height: 44px;
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-radius: 8px;
  cursor: pointer;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 5px;
  transition: background var(--transition), border-color var(--transition);
  outline: none;
  aria-label: "Menú";
}

.btn-hamburger:hover,
.btn-hamburger:focus-visible {
  background: rgba(224,29,208,0.25);
  border-color: var(--primary);
}

.btn-hamburger .bar {
  display: block;
  width: 20px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition), width var(--transition);
  transform-origin: center;
}

/* Animated state open */
.btn-hamburger[aria-expanded="true"] .bar:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.btn-hamburger[aria-expanded="true"] .bar:nth-child(2) {
  opacity: 0;
  width: 0;
}
.btn-hamburger[aria-expanded="true"] .bar:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ── Navigation Drawer ─────────────────────── */
.nav-drawer {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  width: var(--nav-width);
  max-width: 90vw;
  z-index: 150;
  background: var(--bg-surface);
  border-left: 1px solid var(--border);
  transform: translateX(100%);
  transition: transform var(--transition);
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  box-shadow: -20px 0 60px rgba(0,0,0,0.6);
}

.nav-drawer.is-open {
  transform: translateX(0);
}

.nav-drawer__header {
  padding: 1.5rem 1.75rem;
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 72px;
}

.nav-drawer__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--text-muted);
}

.nav-drawer__label {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid var(--border);
  padding: 0.2rem 0.5rem;
  border-radius: 4px;
  letter-spacing: 0.1em;
}

/* Apps list */
.nav-apps {
  list-style: none;
  padding: 1rem 0;
  flex: 1;
}

.nav-apps__item {
  border-bottom: 1px solid rgba(224,29,208,0.08);
  opacity: 0;
  transform: translateX(16px);
}

/* Animar items cuando el drawer está abierto — CSS puro, sin JS */
.nav-drawer.is-open .nav-apps__item {
  animation: itemSlideIn 0.35s ease forwards;
}

.nav-drawer.is-open .nav-apps__item:nth-child(1) { animation-delay: 0.05s; }
.nav-drawer.is-open .nav-apps__item:nth-child(2) { animation-delay: 0.10s; }
.nav-drawer.is-open .nav-apps__item:nth-child(3) { animation-delay: 0.15s; }
.nav-drawer.is-open .nav-apps__item:nth-child(4) { animation-delay: 0.20s; }
.nav-drawer.is-open .nav-apps__item:nth-child(5) { animation-delay: 0.25s; }
.nav-drawer.is-open .nav-apps__item:nth-child(6) { animation-delay: 0.30s; }

@keyframes itemSlideIn {
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

.nav-apps__link {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.1rem 1.75rem;
  text-decoration: none;
  color: var(--text);
  transition: background var(--transition), color var(--transition);
  position: relative;
  overflow: hidden;
}

.nav-apps__link::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 0;
  background: var(--primary-dim);
  transition: width var(--transition);
}

.nav-apps__link:hover::before,
.nav-apps__link:focus-visible::before {
  width: 100%;
}

.nav-apps__link:hover,
.nav-apps__link:focus-visible {
  color: var(--primary);
  outline: none;
}

.nav-apps__link:hover .nav-apps__icon,
.nav-apps__link:focus-visible .nav-apps__icon {
  filter: drop-shadow(0 0 6px var(--primary-glow));
}

.nav-apps__icon {
  width: 40px;
  height: 40px;
  flex-shrink: 0;
  border-radius: 8px;
  position: relative;
  z-index: 1;
  transition: filter var(--transition);
}

.nav-apps__info {
  position: relative;
  z-index: 1;
}

.nav-apps__name {
  font-family: var(--font-mono);
  font-size: 0.85rem;
  font-weight: 700;
  letter-spacing: 0.05em;
  display: block;
}

.nav-apps__desc {
  font-size: 0.72rem;
  color: var(--text-muted);
  margin-top: 0.2rem;
  display: block;
  line-height: 1.4;
}

.nav-apps__badge {
  margin-left: auto;
  font-family: var(--font-mono);
  font-size: 0.6rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid var(--border);
  padding: 0.2rem 0.45rem;
  border-radius: 4px;
  position: relative;
  z-index: 1;
  white-space: nowrap;
}

/* Nav footer */
.nav-drawer__footer {
  padding: 1.25rem 1.75rem;
  border-top: 1px solid var(--border);
}

.nav-drawer__footer a {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  text-decoration: none;
  letter-spacing: 0.08em;
  transition: color 0.2s;
}

.nav-drawer__footer a:hover {
  color: var(--primary);
}

/* ── Overlay ────────────────────────────────── */
.nav-overlay {
  position: fixed;
  inset: 0;
  z-index: 140;
  background: rgba(0,0,0,0);
  pointer-events: none;
  transition: background 0.4s ease;
  backdrop-filter: blur(0px);
  -webkit-backdrop-filter: blur(0px);
}

.nav-overlay.is-active {
  background: rgba(0,0,0,0.6);
  pointer-events: all;
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
}

/* ── Hero / Main ────────────────────────────── */
main {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 6rem 2rem 4rem;
  text-align: center;
}

/* ── Hero Content ───────────────────────────── */
.hero {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1.5rem;
  animation: heroReveal 1.2s cubic-bezier(0.16, 1, 0.3, 1) both;
}

@keyframes heroReveal {
  from {
    opacity: 0;
    transform: translateY(30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.hero__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.3em;
  text-transform: uppercase;
  color: var(--primary);
  opacity: 0;
  animation: fadeIn 0.8s 0.3s ease forwards;
}

@keyframes fadeIn {
  to { opacity: 1; }
}

.hero__title {
  font-size: clamp(3.5rem, 10vw, 8rem);
  font-weight: 800;
  line-height: 0.95;
  letter-spacing: -0.03em;
  color: var(--text);
  position: relative;
}

.hero__title span.accent {
  color: var(--primary);
  text-shadow:
    0 0 20px var(--primary-glow),
    0 0 60px rgba(224,29,208,0.2);
  position: relative;
}

/* Glitch effect on accent */
.hero__title span.accent::before,
.hero__title span.accent::after {
  content: attr(data-text);
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
}

.hero__title span.accent::before {
  color: #ff00ea;
  animation: glitch1 4s infinite;
  clip-path: polygon(0 0, 100% 0, 100% 33%, 0 33%);
}

.hero__title span.accent::after {
  color: #00f5ff;
  animation: glitch2 4s infinite;
  clip-path: polygon(0 66%, 100% 66%, 100% 100%, 0 100%);
}

@keyframes glitch1 {
  0%, 92%, 100% { transform: none; opacity: 0; }
  93%  { transform: translateX(-3px); opacity: 0.6; }
  95%  { transform: translateX(3px);  opacity: 0.6; }
  97%  { transform: translateX(-2px); opacity: 0.4; }
  99%  { transform: none; opacity: 0; }
}

@keyframes glitch2 {
  0%, 94%, 100% { transform: none; opacity: 0; }
  95%  { transform: translateX(3px); opacity: 0.5; }
  97%  { transform: translateX(-3px); opacity: 0.5; }
  99%  { transform: none; opacity: 0; }
}

.hero__subtitle {
  font-family: var(--font-mono);
  font-size: clamp(0.75rem, 2vw, 0.95rem);
  letter-spacing: 0.25em;
  color: var(--text-muted);
  text-transform: uppercase;
}

.hero__subtitle strong {
  color: var(--primary);
  font-weight: 700;
}

.hero__divider {
  width: 60px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--primary), transparent);
  margin: 0.5rem auto;
  animation: expandLine 1s 0.8s ease forwards;
  transform: scaleX(0);
}

@keyframes expandLine {
  to { transform: scaleX(1); }
}

/* CTA Button */
.btn-cta {
  display: inline-flex;
  align-items: center;
  gap: 0.6rem;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--primary-dim);
  border: 1px solid var(--primary);
  padding: 0.85rem 2rem;
  border-radius: 6px;
  cursor: pointer;
  text-decoration: none;
  transition: background var(--transition), box-shadow var(--transition), transform 0.2s;
  margin-top: 1rem;
  opacity: 0;
  animation: fadeIn 0.8s 1.2s ease forwards;
}

.btn-cta:hover {
  background: rgba(224,29,208,0.25);
  box-shadow: 0 0 30px var(--primary-glow), 0 0 60px rgba(224,29,208,0.1);
  transform: translateY(-2px);
}

.btn-cta svg {
  transition: transform 0.3s ease;
}

.btn-cta:hover svg {
  transform: translateX(4px);
}

/* ── Corner Decorations ─────────────────────── */
.corner-tl,
.corner-br {
  position: fixed;
  width: 60px;
  height: 60px;
  pointer-events: none;
  z-index: 5;
  opacity: 0.4;
}

.corner-tl {
  top: 0;
  left: 0;
  border-top: 1px solid var(--primary);
  border-left: 1px solid var(--primary);
}

.corner-br {
  bottom: 0;
  right: 0;
  border-bottom: 1px solid var(--primary);
  border-right: 1px solid var(--primary);
}

/* ── Status bar ─────────────────────────────── */
.status-bar {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 20;
  display: flex;
  align-items: center;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.12em;
  text-transform: uppercase;
  animation: fadeIn 1s 1.5s ease forwards;
  opacity: 0;
}

.status-bar__dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--primary);
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.4; transform: scale(0.8); }
}

/* ── Footer ─────────────────────────────────── */
footer {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0.75rem 2rem;
  border-top: 1px solid var(--border);
  background: rgba(30,30,30,0.7);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
}

footer p {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--text-muted);
  letter-spacing: 0.1em;
}

footer a {
  color: var(--primary);
  text-decoration: none;
  transition: opacity 0.2s;
}

footer a:hover {
  opacity: 0.7;
}

/* ── Responsive ─────────────────────────────── */
@media (max-width: 768px) {
  header {
    padding: 1rem 1.25rem;
  }

  main {
    padding: 5rem 1.5rem 5rem;
  }

  .hero__title {
    letter-spacing: -0.02em;
  }

  .corner-tl,
  .corner-br {
    width: 40px;
    height: 40px;
  }

  footer {
    flex-direction: column;
    gap: 0.25rem;
    padding: 0.6rem 1.25rem;
    text-align: center;
  }
}

@media (max-width: 480px) {
  :root {
    --nav-width: 100vw;
  }

  .hero__subtitle {
    letter-spacing: 0.15em;
  }

  .status-bar {
    font-size: 0.6rem;
  }
}

/* ── Accessibility ───────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}

/* Focus visible styles */
*:focus-visible {
  outline: 2px solid var(--primary);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ═══════════════════════════════════════════
   LEGAL PAGES (Términos / Privacidad)
═══════════════════════════════════════════ */

/* Skip link */
.skip-link {
  position: absolute;
  left: -9999px;
  top: auto;
  width: 1px;
  height: 1px;
  overflow: hidden;
  background: var(--bg);
  color: var(--primary);
  padding: 0.5rem 1rem;
  border-radius: 4px;
  font-family: var(--font-mono);
  font-size: 0.8rem;
  text-decoration: none;
  z-index: 9999;
}
.skip-link:focus {
  left: 1rem;
  top: 1rem;
  width: auto;
  height: auto;
}

/* Page wrapper */
.legal-page {
  position: relative;
  z-index: 10;
  min-height: 100vh;
  padding: 7rem 1.5rem 7rem;
  display: flex;
  justify-content: center;
}

/* Document container */
.legal-doc {
  width: 100%;
  max-width: 780px;
}

/* Breadcrumb */
.legal-breadcrumb {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 2.5rem;
  animation: fadeInUp 0.6s ease both;
}

.legal-breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  transition: color 0.2s;
}
.legal-breadcrumb a:hover { color: var(--primary); }

.legal-breadcrumb__sep {
  color: var(--primary);
  opacity: 0.4;
}

.legal-breadcrumb__current {
  color: var(--primary);
}

/* Document header */
.legal-doc__header {
  margin-bottom: 3rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--border);
  animation: fadeInUp 0.6s 0.1s ease both;
}

.legal-doc__eyebrow {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.25em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 0.75rem;
  display: block;
}

.legal-doc__title {
  font-size: clamp(1.8rem, 5vw, 2.8rem);
  font-weight: 800;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--text);
  margin-bottom: 1rem;
}

.legal-doc__meta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-family: var(--font-mono);
  font-size: 0.7rem;
  color: var(--text-muted);
  letter-spacing: 0.08em;
}

.legal-doc__meta span {
  display: flex;
  align-items: center;
  gap: 0.4rem;
}

.legal-doc__meta strong {
  color: var(--text);
}

/* Table of contents */
.legal-toc {
  background: var(--bg-surface);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin-bottom: 3rem;
  animation: fadeInUp 0.6s 0.2s ease both;
}

.legal-toc__title {
  font-family: var(--font-mono);
  font-size: 0.7rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--primary);
  margin-bottom: 1rem;
  display: block;
}

.legal-toc__list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  counter-reset: toc-counter;
}

.legal-toc__list li {
  counter-increment: toc-counter;
}

.legal-toc__list a {
  display: flex;
  align-items: baseline;
  gap: 0.75rem;
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.875rem;
  transition: color 0.2s;
  line-height: 1.4;
}

.legal-toc__list a::before {
  content: counter(toc-counter, decimal-leading-zero);
  font-family: var(--font-mono);
  font-size: 0.65rem;
  color: var(--primary);
  opacity: 0.6;
  flex-shrink: 0;
}

.legal-toc__list a:hover {
  color: var(--primary);
}

/* Content body */
.legal-doc__body {
  animation: fadeInUp 0.6s 0.3s ease both;
}

/* Sections */
.legal-section {
  margin-bottom: 3rem;
  scroll-margin-top: 100px;
}

.legal-section__number {
  font-family: var(--font-mono);
  font-size: 0.65rem;
  letter-spacing: 0.2em;
  color: var(--primary);
  opacity: 0.7;
  display: block;
  margin-bottom: 0.4rem;
}

.legal-section h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--text);
  margin-bottom: 1rem;
  letter-spacing: -0.01em;
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.legal-section h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--border);
}

.legal-section h3 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--text);
  margin: 1.5rem 0 0.6rem;
}

.legal-section p {
  font-size: 0.925rem;
  line-height: 1.8;
  color: rgba(240, 240, 240, 0.8);
  margin-bottom: 1rem;
}

.legal-section ul,
.legal-section ol {
  margin: 0.75rem 0 1rem 0;
  padding-left: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.legal-section ul li,
.legal-section ol li {
  font-size: 0.925rem;
  line-height: 1.7;
  color: rgba(240, 240, 240, 0.8);
  padding-left: 1.5rem;
  position: relative;
}

.legal-section ul li::before {
  content: '▸';
  position: absolute;
  left: 0;
  color: var(--primary);
  font-size: 0.7rem;
  top: 0.3rem;
}

.legal-section ol {
  counter-reset: list-counter;
}
.legal-section ol li {
  counter-increment: list-counter;
}
.legal-section ol li::before {
  content: counter(list-counter) ".";
  position: absolute;
  left: 0;
  color: var(--primary);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  top: 0.3rem;
}

/* Highlight box */
.legal-highlight {
  background: var(--primary-dim);
  border: 1px solid var(--border);
  border-left: 3px solid var(--primary);
  border-radius: 0 8px 8px 0;
  padding: 1.1rem 1.4rem;
  margin: 1.25rem 0;
}

.legal-highlight p {
  margin: 0;
  font-size: 0.875rem;
  color: rgba(240, 240, 240, 0.9);
}

.legal-highlight strong {
  color: var(--primary);
}

/* Contact card */
.legal-contact-card {
  background: var(--bg-elevated);
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 1.5rem 1.75rem;
  margin-top: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.legal-contact-card p {
  margin: 0;
  font-size: 0.875rem;
}

.legal-contact-card a {
  color: var(--primary);
  text-decoration: none;
  font-family: var(--font-mono);
  font-size: 0.85rem;
  transition: opacity 0.2s;
}

.legal-contact-card a:hover { opacity: 0.7; }

/* Back to top */
.legal-back {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-mono);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  text-decoration: none;
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid var(--border);
  width: 100%;
  transition: color 0.2s;
}

.legal-back:hover { color: var(--primary); }

/* Animation */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Responsive */
@media (max-width: 640px) {
  .legal-page {
    padding: 6rem 1.25rem 6rem;
  }

  .legal-doc__meta {
    flex-direction: column;
    gap: 0.4rem;
  }

  .legal-toc {
    padding: 1.25rem;
  }
}

