:root {
  --bg: #070b12;
  --bg-alt: #0c1424;
  --card: #121c2e;
  --text: #f1f5fb;
  --muted: #94a4bd;
  --accent: #34f59b;
  --accent-dim: #18c278;
  --accent-blue: #5dcfff;
  --accent-violet: #a78bfa;
  --line: rgba(255, 255, 255, 0.07);
  --line-strong: rgba(255, 255, 255, 0.12);
  --danger: #ff6b6b;
  --radius: 16px;
  --radius-sm: 12px;
  --shadow: 0 24px 64px rgba(0, 0, 0, 0.45);
  --shadow-soft: 0 12px 40px rgba(0, 0, 0, 0.28);
  --glow-accent: 0 0 48px rgba(52, 245, 155, 0.22);
  --topbar-h: 58px;
  --font-sans: 'Plus Jakarta Sans', system-ui, -apple-system, 'Segoe UI', Roboto, Ubuntu, Cantarell, sans-serif;
  --font-display: 'Outfit', var(--font-sans);
  font-family: var(--font-sans);
}

@media (prefers-reduced-motion: no-preference) {
  html {
    scroll-behavior: smooth;
  }
}

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

body {
  margin: 0;
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 900px 520px at 8% -8%, rgba(52, 245, 155, 0.09), transparent 55%),
    radial-gradient(ellipse 800px 480px at 92% 4%, rgba(93, 207, 255, 0.1), transparent 50%),
    radial-gradient(ellipse 600px 400px at 50% 120%, rgba(167, 139, 250, 0.06), transparent 55%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 38%, var(--bg) 100%);
  color: var(--text);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

a {
  color: var(--accent);
  text-decoration: none;
}
a:hover {
  text-decoration: underline;
}

@media (prefers-reduced-motion: no-preference) {
  a {
    transition: color 0.18s ease;
  }
}

h1,
h2,
h3,
.section-head h1,
.section-head h2 {
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.035em;
}

.eyebrow {
  margin: 0 0 10px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--accent);
}

.container {
  width: min(1120px, 92vw);
  margin-inline: auto;
}

.narrow {
  width: min(760px, 92vw);
}

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 100;
  padding: 12px 20px;
  background: var(--accent);
  color: #072015;
  font-weight: 700;
  border-radius: 0 0 8px 8px;
}

.skip-link:focus {
  left: 16px;
  outline: 2px solid var(--accent-blue);
}

.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;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 20;
  backdrop-filter: blur(16px) saturate(1.35);
  -webkit-backdrop-filter: blur(16px) saturate(1.35);
  background: linear-gradient(180deg, rgba(8, 13, 22, 0.94) 0%, rgba(8, 13, 22, 0.82) 100%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.22);
}

.topbar.is-open {
  border-bottom-color: transparent;
}

.topbar__inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  padding: 14px 0;
  min-height: var(--topbar-h);
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  padding: 8px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 600;
  font-size: 0.9rem;
  cursor: pointer;
  font-family: inherit;
}

.nav-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

@media (max-width: 840px) {
  .nav-toggle {
    display: inline-flex;
  }

  .nav {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 4px;
    padding: 12px 16px 20px;
    background: linear-gradient(180deg, rgba(10, 16, 26, 0.98) 0%, rgba(7, 11, 18, 0.99) 100%);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
  }

  .topbar.is-open .nav {
    display: flex;
  }

  .nav .btn {
    justify-content: center;
    margin-top: 6px;
  }
}

.logo {
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.04em;
  color: var(--text);
  text-decoration: none;
}
.logo span {
  color: var(--accent);
}

.logo--center {
  display: inline-block;
  margin-bottom: 16px;
}

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

.nav > a:not(.btn) {
  color: var(--muted);
  padding: 8px 12px;
  border-radius: 999px;
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 500;
}

.nav > a:not(.btn):hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
  text-decoration: none;
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
}

@media (prefers-reduced-motion: no-preference) {
  .nav > a:not(.btn) {
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
  }
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 10px 18px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 0.92rem;
  letter-spacing: -0.02em;
  cursor: pointer;
  background: linear-gradient(135deg, #3cff9e 0%, #48e8c8 42%, #5dcfff 100%);
  color: #03140c;
  text-decoration: none;
  box-shadow: var(--glow-accent), 0 4px 16px rgba(0, 0, 0, 0.35);
}

.btn:hover {
  filter: brightness(1.06);
  text-decoration: none;
}

.btn:focus-visible {
  outline: 2px solid var(--accent-blue);
  outline-offset: 3px;
}

.btn--ghost {
  background: rgba(255, 255, 255, 0.04);
  border-color: var(--line-strong);
  color: var(--text);
  box-shadow: none;
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.14);
}

@media (prefers-reduced-motion: no-preference) {
  .btn {
    transition: filter 0.2s ease, background 0.2s ease, border-color 0.2s ease, transform 0.2s ease;
  }

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

  .btn--ghost:hover {
    transform: translateY(-1px);
  }
}

.btn--sm {
  padding: 6px 12px;
  font-size: 0.85rem;
}

.btn--lg {
  padding: 12px 22px;
}

.btn--block {
  width: 100%;
}

.main {
  padding-bottom: 56px;
}

.site--public .main {
  padding-bottom: 72px;
}

.section {
  padding: 56px 0;
}

.section--anchor {
  scroll-margin-top: calc(var(--topbar-h) + 16px);
}

.section--alt {
  background: rgba(255, 255, 255, 0.02);
}

.section--mesh {
  position: relative;
}

.section--mesh::before {
  content: '';
  position: absolute;
  inset: 0;
  pointer-events: none;
  opacity: 0.35;
  background-image: radial-gradient(circle at 20% 30%, rgba(52, 245, 155, 0.06), transparent 45%),
    radial-gradient(circle at 80% 70%, rgba(93, 207, 255, 0.05), transparent 40%);
}

.section--mesh > .container {
  position: relative;
  z-index: 1;
}

.section-head {
  max-width: 720px;
  margin-bottom: 28px;
}

.section-head--center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-head--tight {
  margin-bottom: 20px;
}

.section-head__lead {
  font-size: 1.12rem;
  color: var(--muted);
  margin: 0;
  margin-top: 12px;
  line-height: 1.65;
  max-width: 52ch;
}

.section-head--center .section-head__lead {
  margin-left: auto;
  margin-right: auto;
}

.section-head--center .eyebrow {
  display: inline-block;
}

.section--pricing {
  background: radial-gradient(ellipse 80% 50% at 50% 0%, rgba(52, 245, 155, 0.07), transparent),
    rgba(255, 255, 255, 0.018);
}

.section--cta {
  padding-bottom: 72px;
}

.hero {
  padding: 64px 0 72px;
  position: relative;
  overflow: hidden;
}

.hero--public .hero__bg {
  position: absolute;
  inset: -45% -25% auto -25%;
  height: 130%;
  background: radial-gradient(ellipse at 28% 18%, rgba(52, 245, 155, 0.18), transparent 42%),
    radial-gradient(ellipse at 72% 36%, rgba(93, 207, 255, 0.15), transparent 40%),
    radial-gradient(ellipse at 50% 80%, rgba(167, 139, 250, 0.08), transparent 55%);
  pointer-events: none;
}

.hero__mesh {
  position: absolute;
  inset: 0;
  opacity: 0.45;
  pointer-events: none;
  background-image: linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
  background-size: 48px 48px;
  mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, black 20%, transparent 70%);
  -webkit-mask-image: radial-gradient(ellipse 85% 70% at 50% 35%, black 20%, transparent 70%);
}

.hero__grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.25fr 1fr;
  gap: 40px;
  align-items: start;
}

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

.hero__copy h1 {
  font-size: clamp(2.15rem, 5vw, 3.15rem);
  line-height: 1.08;
  margin: 16px 0 20px;
  font-weight: 800;
}

.text-gradient {
  background: linear-gradient(125deg, var(--accent) 0%, #7af7c9 38%, var(--accent-blue) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}

.hero__lead {
  max-width: 36rem;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  font-size: 0.85rem;
  color: var(--muted);
}

.pill--glow {
  border-color: rgba(52, 245, 155, 0.35);
  background: linear-gradient(135deg, rgba(52, 245, 155, 0.09), rgba(93, 207, 255, 0.06));
  box-shadow: 0 0 24px rgba(52, 245, 155, 0.08), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.pill__dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 12px var(--accent);
}

.pill--ok {
  border-color: rgba(60, 255, 154, 0.35);
  color: var(--accent);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

h4 {
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.hero__cta {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.trust {
  margin-top: 22px;
  padding-left: 18px;
  color: var(--muted);
}

.trust-list {
  list-style: none;
  margin: 24px 0 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.trust-list li {
  position: relative;
  padding-left: 28px;
  color: var(--muted);
  font-size: 0.95rem;
}

.trust-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.35em;
  width: 16px;
  height: 16px;
  border-radius: 4px;
  background: rgba(60, 255, 154, 0.2);
  border: 1px solid rgba(60, 255, 154, 0.45);
}

.trust-list li::after {
  content: '';
  position: absolute;
  left: 5px;
  top: 0.55em;
  width: 5px;
  height: 9px;
  border: solid var(--accent);
  border-width: 0 2px 2px 0;
  transform: rotate(45deg);
}

.card--hero {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

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

.hero-stat {
  text-align: center;
  padding: 14px 8px;
  border-radius: var(--radius-sm);
  background: rgba(0, 0, 0, 0.35);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.hero-stat__num {
  display: block;
  font-size: 1.35rem;
  font-weight: 800;
  color: var(--accent);
}

.hero-stat__lab {
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-quote {
  margin: 0;
  padding: 0;
  border: none;
}

.hero-quote p {
  margin: 0;
  font-size: 0.95rem;
  font-style: italic;
  color: var(--text);
  line-height: 1.55;
}

.hero-quote cite {
  display: block;
  margin-top: 10px;
  font-size: 0.8rem;
  font-style: normal;
  color: var(--muted);
}

.hero-note {
  margin: 0;
}

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

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

.timeline__item {
  position: relative;
  padding-top: 8px;
}

.timeline__badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 0.85rem;
  background: linear-gradient(135deg, rgba(52, 245, 155, 0.28), rgba(93, 207, 255, 0.16));
  border: 1px solid rgba(52, 245, 155, 0.38);
  margin-bottom: 10px;
  box-shadow: 0 4px 14px rgba(52, 245, 155, 0.12);
}

.timeline__item h3 {
  margin: 0 0 8px;
  font-size: 1.05rem;
}

.steps {
  list-style: none;
  margin: 0;
  padding: 0;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}

@media (max-width: 1000px) {
  .steps {
    grid-template-columns: repeat(2, 1fr);
  }
}

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

.steps__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.steps__n {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-display);
  font-weight: 800;
  background: linear-gradient(145deg, rgba(93, 207, 255, 0.2), rgba(52, 245, 155, 0.1));
  border: 1px solid rgba(93, 207, 255, 0.38);
  color: var(--accent-blue);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.steps__item h3 {
  margin: 0;
  font-size: 1rem;
}

.split--cards {
  gap: 20px;
}

.card--problem {
  border-color: rgba(255, 107, 107, 0.25);
}

.card--solution {
  border-color: rgba(60, 255, 154, 0.35);
}

.checklist {
  list-style: none;
  margin: 14px 0 0;
  padding: 0;
}

.checklist li {
  position: relative;
  padding-left: 26px;
  margin-bottom: 8px;
  color: var(--text);
}

.checklist li::before {
  content: '✓';
  position: absolute;
  left: 0;
  color: var(--accent);
  font-weight: 800;
}

.checklist--muted li {
  color: var(--muted);
}

.checklist--compact li {
  margin-bottom: 6px;
  font-size: 0.92rem;
}

.features-grid .card--feature {
  text-align: center;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 54px;
  height: 54px;
  margin-bottom: 14px;
  border-radius: 14px;
  background: linear-gradient(145deg, rgba(52, 245, 155, 0.12), rgba(93, 207, 255, 0.06));
  border: 1px solid rgba(52, 245, 155, 0.22);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
  font-size: 1.4rem;
  line-height: 1;
}

.card--feature h3 {
  margin: 0 0 8px;
}

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

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

.audience__card h3 {
  margin-top: 0;
}

.audience__card--accent {
  border-color: rgba(60, 255, 154, 0.4);
  box-shadow: 0 0 0 1px rgba(60, 255, 154, 0.12);
}

.price--xl {
  font-size: clamp(2rem, 4vw, 2.5rem);
  margin: 8px 0;
}

.price-card__tag {
  display: inline-block;
  margin: 0 0 8px;
  padding: 5px 11px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  background: rgba(52, 245, 155, 0.14);
  color: var(--accent);
  border: 1px solid rgba(52, 245, 155, 0.35);
}

.price-card--featured {
  border-color: rgba(52, 245, 155, 0.42);
  box-shadow: 0 0 48px rgba(52, 245, 155, 0.12), 0 16px 48px rgba(0, 0, 0, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.price-card__desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 12px;
}

.price-card__hint {
  margin: 10px 0 0;
  text-align: center;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.faq__item {
  border: 1px solid var(--line);
  border-radius: var(--radius-sm);
  background: rgba(255, 255, 255, 0.03);
  transition: border-color 0.22s ease, box-shadow 0.22s ease;
  overflow: hidden;
}

.faq__item[open] {
  border-color: rgba(52, 245, 155, 0.22);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.3);
}

.faq__item summary {
  padding: 16px 18px;
  cursor: pointer;
  font-weight: 600;
  font-family: var(--font-display);
  list-style: none;
}

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

.faq__item summary::after {
  content: '+';
  float: right;
  color: var(--accent);
  font-weight: 800;
}

.faq__item[open] summary::after {
  content: '−';
}

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

.faq__body p {
  margin: 12px 0 0;
  color: var(--muted);
  line-height: 1.6;
}

.card--cta-box {
  border-color: rgba(88, 224, 255, 0.25);
  box-shadow: 0 24px 80px rgba(0, 0, 0, 0.35);
}

.small {
  font-size: 0.85rem;
}

.footer--public {
  padding-top: 48px;
}

.footer__grid--wide {
  display: grid;
  grid-template-columns: 1.35fr 1fr 0.9fr 1fr;
  gap: 28px 24px;
  align-items: start;
}

@media (max-width: 900px) {
  .footer__grid--wide {
    grid-template-columns: 1fr 1fr;
  }
}

@media (max-width: 700px) {
  .footer__grid--wide {
    grid-template-columns: 1fr;
  }
}

.logo-footer {
  font-family: var(--font-display);
  font-size: 1.15rem;
  letter-spacing: -0.03em;
}

.logo-footer span {
  color: var(--accent);
}

.footer__heading {
  margin: 0 0 12px;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  color: var(--muted);
}

.footer__links {
  list-style: none;
  margin: 0;
  padding: 0;
}

.footer__links li {
  margin-bottom: 8px;
}

.footer__links a {
  color: rgba(241, 245, 251, 0.88);
  text-decoration: none;
  transition: color 0.18s ease;
}

.footer__links a:hover {
  color: var(--accent);
  text-decoration: none;
}

.footer__bottom {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.footer__bottom .small {
  margin: 0;
}

/* —— Página pública: franja confianza, comparativa, reveal, CTA flotante —— */
.trust-strip {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: linear-gradient(180deg, rgba(0, 0, 0, 0.35) 0%, rgba(10, 18, 32, 0.55) 100%);
  padding: 22px 0;
}

.trust-strip--premium {
  border-top-color: rgba(52, 245, 155, 0.12);
  border-bottom-color: rgba(255, 255, 255, 0.06);
  background: linear-gradient(90deg, rgba(52, 245, 155, 0.04) 0%, rgba(0, 0, 0, 0.28) 35%, rgba(0, 0, 0, 0.28) 65%, rgba(93, 207, 255, 0.05) 100%);
}

.trust-strip__inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px 16px;
  align-items: center;
}

@media (min-width: 901px) {
  .trust-strip--premium .trust-strip__item:not(:first-child) {
    border-left: 1px solid rgba(255, 255, 255, 0.06);
    padding-left: 20px;
    margin-left: 4px;
  }
}

@media (max-width: 900px) {
  .trust-strip__inner {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 480px) {
  .trust-strip__inner {
    grid-template-columns: 1fr;
  }
}

.trust-strip__item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.trust-strip__icon {
  flex-shrink: 0;
  color: var(--accent);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: rgba(52, 245, 155, 0.08);
  border: 1px solid rgba(52, 245, 155, 0.2);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
}

.feature-icon-svg {
  display: block;
  margin: 0 auto 12px;
}

.card--lift {
  transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
}

@media (hover: hover) and (pointer: fine) {
  .card--lift:hover {
    transform: translateY(-5px);
    box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42), 0 0 0 1px rgba(52, 245, 155, 0.15);
    border-color: rgba(52, 245, 155, 0.28);
  }
}

.section--comparativa {
  background: rgba(255, 255, 255, 0.02);
}

.compare-wrap {
  overflow-x: auto;
  border-radius: var(--radius);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(165deg, rgba(18, 28, 46, 0.95), rgba(10, 18, 32, 0.88));
  margin-top: 8px;
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), var(--shadow-soft);
}

.compare-table {
  width: 100%;
  min-width: 520px;
  border-collapse: collapse;
  font-size: 0.95rem;
}

.compare-table th,
.compare-table td {
  padding: 16px 18px;
  text-align: left;
  border-bottom: 1px solid var(--line);
  vertical-align: top;
}

.compare-table thead th {
  background: linear-gradient(180deg, rgba(52, 245, 155, 0.14), rgba(52, 245, 155, 0.06));
  font-weight: 700;
  font-family: var(--font-display);
  color: var(--text);
}

.compare-table thead th:first-child {
  background: transparent;
}

.compare-table tbody th[scope='row'] {
  width: 22%;
  color: var(--muted);
  font-weight: 600;
}

.compare-table tbody tr:last-child th,
.compare-table tbody tr:last-child td {
  border-bottom: none;
}

.compare-note {
  text-align: center;
  margin-top: 16px;
  font-size: 0.88rem;
}

.cta-rail {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 50;
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
  background: linear-gradient(180deg, rgba(10, 17, 28, 0.97) 0%, rgba(6, 10, 18, 0.99) 100%);
  border-top: 1px solid rgba(52, 245, 155, 0.28);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 -16px 48px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cta-rail[hidden] {
  display: none !important;
}

.cta-rail__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  flex-wrap: wrap;
}

.cta-rail__text {
  margin: 0;
  font-size: 0.92rem;
  color: rgba(241, 245, 251, 0.82);
}

.cta-rail__text strong {
  font-family: var(--font-display);
  font-weight: 700;
  color: var(--text);
}

.cta-rail__close {
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: var(--muted);
  width: 36px;
  height: 36px;
  border-radius: 10px;
  font-size: 1.25rem;
  line-height: 1;
  cursor: pointer;
  font-family: inherit;
}

.cta-rail__close:hover {
  color: var(--text);
  background: rgba(255, 255, 255, 0.12);
}

.btn:focus-visible,
.cta-rail__close:focus-visible,
.nav-toggle:focus-visible,
a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

/* Aviso cookies (encima de la barra CTA) */
.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  z-index: 60;
  padding: 14px 0 calc(14px + env(safe-area-inset-bottom));
  background: rgba(17, 27, 46, 0.96);
  border-top: 1px solid var(--line);
  backdrop-filter: blur(10px);
  box-shadow: 0 -8px 32px rgba(0, 0, 0, 0.35);
}

.cookie-banner--premium {
  background: linear-gradient(180deg, rgba(14, 22, 38, 0.97) 0%, rgba(8, 12, 22, 0.99) 100%);
  border-top-color: rgba(52, 245, 155, 0.22);
  backdrop-filter: blur(14px) saturate(1.15);
  -webkit-backdrop-filter: blur(14px) saturate(1.15);
  box-shadow: 0 -12px 40px rgba(0, 0, 0, 0.45), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cookie-banner[hidden] {
  display: none !important;
}

.cookie-banner__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner__text {
  margin: 0;
  flex: 1;
  min-width: 220px;
  font-size: 0.9rem;
  color: var(--muted);
  line-height: 1.5;
}

body.cookie-showing .cta-rail:not([hidden]) {
  bottom: 72px;
}

@media (max-width: 560px) {
  body.cookie-showing .cta-rail:not([hidden]) {
    bottom: 88px;
  }
}

/* Páginas legales */
.legal-page h1 {
  margin-bottom: 8px;
}

.legal-page h2 {
  margin-top: 28px;
  font-size: 1.15rem;
}

.legal-list {
  color: var(--muted);
  line-height: 1.65;
}

.legal-updated {
  margin-bottom: 24px;
}

.legal-disclaimer {
  margin-top: 32px;
  padding-top: 20px;
  border-top: 1px solid var(--line);
}

.breadcrumb {
  font-size: 0.82rem;
  margin: 0 0 20px;
  color: var(--muted);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.breadcrumb a {
  color: var(--muted);
  text-decoration: none;
}

.breadcrumb a:hover {
  color: var(--accent);
  text-decoration: none;
}

.breadcrumb span[aria-hidden='true'] {
  opacity: 0.45;
  margin: 0 0.35em;
}

.nav-hub {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(260px, 1fr));
  gap: 18px;
  margin-top: 8px;
}

.nav-hub__card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 26px 26px 44px;
  text-decoration: none;
  color: inherit;
  height: 100%;
  overflow: hidden;
}

.nav-hub__card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 12%;
  right: 12%;
  height: 3px;
  border-radius: 0 0 8px 8px;
  background: linear-gradient(90deg, transparent, rgba(52, 245, 155, 0.65), rgba(93, 207, 255, 0.5), transparent);
  opacity: 0.85;
}

.nav-hub__card h3 {
  margin: 0;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.nav-hub__tag {
  display: inline-flex;
  align-self: flex-start;
  font-family: var(--font-display);
  font-size: 0.68rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--accent);
  padding: 5px 10px;
  border-radius: 999px;
  background: rgba(52, 245, 155, 0.08);
  border: 1px solid rgba(52, 245, 155, 0.22);
}

.nav-hub__arrow {
  position: absolute;
  right: 18px;
  bottom: 16px;
  font-size: 1.25rem;
  color: var(--muted);
  transition: transform 0.2s ease, color 0.2s ease;
}

@media (hover: hover) and (pointer: fine) {
  .nav-hub__card:hover .nav-hub__arrow {
    transform: translateX(4px);
    color: var(--accent);
  }
}

.site-nav-next {
  margin-top: 44px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.08);
  font-size: 0.95rem;
  color: var(--muted);
}

.site-nav-next a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.site-nav-next a:hover {
  text-decoration: underline;
}

.section--checkout {
  padding-top: 32px;
}

.checkout-grid {
  margin-top: 8px;
}

.checkout-card__desc {
  font-size: 0.95rem;
  color: var(--muted);
  margin-bottom: 16px;
}

.checkout-card__form {
  margin-top: auto;
}

.checkout-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.checkout-foot {
  margin-top: 28px;
  text-align: center;
}

.card {
  position: relative;
  background: linear-gradient(155deg, rgba(22, 34, 54, 0.94) 0%, rgba(14, 24, 42, 0.92) 48%, rgba(12, 22, 38, 0.94) 100%);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow-soft), inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.card--glass {
  background: linear-gradient(145deg, rgba(28, 42, 68, 0.55), rgba(14, 22, 38, 0.72));
  backdrop-filter: blur(20px) saturate(1.2);
  -webkit-backdrop-filter: blur(20px) saturate(1.2);
  border-color: rgba(255, 255, 255, 0.12);
  box-shadow: 0 24px 56px rgba(0, 0, 0, 0.42), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.card--glass::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  padding: 1px;
  background: linear-gradient(145deg, rgba(52, 245, 155, 0.35), transparent 42%, rgba(93, 207, 255, 0.25));
  -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask-composite: exclude;
  pointer-events: none;
}

.card--accent {
  border-color: rgba(60, 255, 154, 0.35);
}

.card--sm {
  padding: 14px;
}

.card--lead label {
  display: block;
  margin-bottom: 14px;
}

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

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

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

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

.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 28px;
}

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

.prose {
  color: var(--muted);
  font-size: 1.05rem;
}

.blog-article__meta {
  margin-top: 8px;
  font-size: 0.95rem;
}

.blog-article__excerpt {
  margin-bottom: 24px;
  color: var(--text);
}

.blog-article__body {
  line-height: 1.7;
}

.blog-article__body h2,
.blog-article__body h3 {
  color: var(--text);
  margin-top: 1.4em;
}

.blog-article__body p {
  margin: 0 0 1em;
}

.blog-article__body ul,
.blog-article__body ol {
  margin: 0 0 1em;
  padding-left: 1.25rem;
}

.blog-article__body a {
  color: var(--accent);
}

.blog-article__body img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius-sm);
}

.blog-index__grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: 18px;
}

.blog-card {
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  min-height: 100%;
}

.blog-card__title {
  font-size: 1.15rem;
  margin: 0;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.blog-card__excerpt {
  margin: 0;
  font-size: 0.95rem;
}

.blog-pagination {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 16px;
  margin-top: 28px;
}

.blog-pagination__link {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.blog-pagination__link:hover {
  text-decoration: underline;
}

.blog-pagination__meta {
  font-size: 0.9rem;
  color: var(--muted);
}

.blog-related {
  margin-top: 40px;
  padding-top: 28px;
  border-top: 1px solid var(--line);
}

.blog-related h2 {
  font-size: 1.1rem;
  margin: 0 0 16px;
  font-family: var(--font-display);
}

.blog-related__list {
  list-style: none;
  margin: 0;
  padding: 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.blog-related__list a {
  font-weight: 600;
  color: var(--accent);
  text-decoration: none;
}

.blog-related__list a:hover {
  text-decoration: underline;
}

.blog-preview-banner {
  margin-bottom: 20px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(93, 207, 255, 0.35);
  background: rgba(93, 207, 255, 0.08);
  font-size: 0.95rem;
}

.blog-preview-banner p {
  margin: 0;
}

.blog-preview-banner a {
  font-weight: 600;
  color: var(--accent);
}

.blog-article--preview .blog-preview-banner + .breadcrumb {
  margin-top: 0;
}

.pricing {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 16px;
}

.pricing--two {
  grid-template-columns: repeat(2, minmax(0, 1fr));
  max-width: 820px;
  margin-inline: auto;
}

@media (max-width: 700px) {
  .pricing--two {
    grid-template-columns: 1fr;
  }
}

.price {
  font-size: 1.6rem;
  font-weight: 800;
}

.price-card__form {
  margin-top: 12px;
}

.muted {
  color: var(--muted);
}

.footer {
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  padding: 48px 0 64px;
  background: linear-gradient(180deg, rgba(5, 9, 16, 0.92) 0%, rgba(4, 7, 12, 0.98) 100%);
  box-shadow: inset 0 1px 0 rgba(52, 245, 155, 0.06);
}

.footer__grid {
  display: flex;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.flash-stack {
  padding-top: 16px;
}

.flash-stack .alert {
  margin-top: 0;
}

.alert {
  padding: 14px 18px;
  border-radius: var(--radius-sm);
  margin: 12px 0 18px;
  font-size: 0.95rem;
}

.alert--ok {
  background: rgba(60, 255, 154, 0.12);
  border: 1px solid rgba(60, 255, 154, 0.35);
}

.alert--err {
  background: rgba(255, 107, 107, 0.12);
  border: 1px solid rgba(255, 107, 107, 0.35);
}

.alert--note {
  background: rgba(250, 204, 21, 0.08);
  border: 1px solid rgba(250, 204, 21, 0.28);
  color: var(--text);
}

.alert--note a {
  color: #8fdcff;
  font-weight: 600;
}

.auth-body {
  min-height: 100vh;
  display: grid;
  place-items: center;
  padding: 24px;
}

.auth-body--brand {
  background-color: var(--bg);
  background-image:
    radial-gradient(ellipse 700px 420px at 50% -10%, rgba(52, 245, 155, 0.1), transparent 55%),
    radial-gradient(ellipse 500px 360px at 100% 60%, rgba(93, 207, 255, 0.08), transparent 50%),
    linear-gradient(180deg, var(--bg-alt) 0%, var(--bg) 45%, var(--bg) 100%);
  position: relative;
}

.auth-body--brand::before {
  content: '';
  position: fixed;
  inset: 0;
  pointer-events: none;
  background: radial-gradient(circle at 50% 100%, rgba(167, 139, 250, 0.06), transparent 45%);
  z-index: 0;
}

.auth-body--brand .auth-wrap {
  position: relative;
  z-index: 1;
}

.auth-wrap {
  width: min(440px, 100%);
}

.auth-stack {
  width: 100%;
  text-align: center;
}

.auth-stack .eyebrow {
  display: inline-block;
  margin-bottom: 14px;
}

.auth-stack .card {
  text-align: left;
}

.auth-flash {
  margin-top: 12px;
  border-radius: var(--radius-sm);
}

.auth-card {
  margin-top: 4px;
}

.auth-card h1 {
  margin: 0 0 8px;
  font-size: 1.65rem;
  font-weight: 800;
  letter-spacing: -0.04em;
}

.auth-lead {
  margin: 0 0 20px;
  font-size: 0.95rem;
  line-height: 1.55;
}

.auth-links {
  margin: 0;
  font-size: 0.9rem;
}

.section--error {
  padding-top: 48px;
  padding-bottom: 64px;
}

.page-error-card {
  text-align: center;
  padding: 36px 28px 40px;
}

.page-error-card .eyebrow {
  display: inline-block;
}

.page-error-card h1 {
  margin: 10px 0 14px;
  font-size: clamp(1.5rem, 4vw, 2rem);
}

.page-error-card__lead {
  margin: 0 auto 28px;
  max-width: 36ch;
  line-height: 1.6;
}

.page-error-card__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: center;
  align-items: center;
}

.form-stack label,
.form-grid label {
  display: block;
  margin-bottom: 14px;
}

.form-hint {
  display: block;
  margin-top: 6px;
  font-size: 0.85rem;
  color: var(--muted);
  line-height: 1.45;
}

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

.form-grid .full {
  grid-column: 1 / -1;
}

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

input,
select,
textarea {
  width: 100%;
  margin-top: 6px;
  padding: 11px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: rgba(0, 0, 0, 0.28);
  color: var(--text);
  transition: border-color 0.18s ease, box-shadow 0.18s ease;
}

input::placeholder,
textarea::placeholder {
  color: rgba(148, 164, 189, 0.65);
}

input:hover,
select:hover,
textarea:hover {
  border-color: rgba(255, 255, 255, 0.14);
}

input:focus-visible,
select:focus-visible,
textarea:focus-visible {
  outline: none;
  border-color: rgba(52, 245, 155, 0.45);
  box-shadow: 0 0 0 3px rgba(52, 245, 155, 0.15);
}

details:not(.faq__item) {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 12px 14px;
  margin-bottom: 10px;
  background: rgba(255, 255, 255, 0.02);
}

/* Dashboard */
.dash__shell {
  display: grid;
  grid-template-columns: 260px 1fr;
  min-height: 100vh;
}

.dash__workspace {
  display: flex;
  flex-direction: column;
  min-width: 0;
  min-height: 100vh;
}

.dash__overlay {
  display: none;
}

.dash__aside {
  padding: 22px 16px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background: linear-gradient(195deg, rgba(12, 20, 36, 0.98) 0%, rgba(7, 11, 18, 0.99) 55%, rgba(8, 14, 24, 1) 100%);
  display: flex;
  flex-direction: column;
  min-height: 100vh;
  box-shadow: inset -1px 0 0 rgba(255, 255, 255, 0.04);
}

.dash__brand {
  padding-bottom: 8px;
  border-bottom: 1px solid var(--line);
  margin-bottom: 4px;
}

.dash__tagline {
  margin: 6px 0 0;
  font-size: 0.78rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
  font-weight: 600;
}

.logo--dash {
  font-family: var(--font-display);
  font-size: 1.35rem;
  letter-spacing: -0.03em;
}

.dash__nav {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 16px;
  overflow-y: auto;
  padding-right: 4px;
}

.dash__nav-block {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.dash__nav-block--footer {
  margin-top: auto;
  padding-top: 16px;
  border-top: 1px solid var(--line);
}

.dash__nav-title {
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--muted);
  margin-bottom: 4px;
  padding-left: 10px;
}

.dash__nav-link {
  padding: 9px 12px;
  border-radius: 10px;
  color: var(--text);
  border: 1px solid transparent;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 500;
  transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease;
}

.dash__nav-link:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: var(--line);
  text-decoration: none;
  color: var(--text);
}

.dash__nav-link.is-active {
  background: rgba(60, 255, 154, 0.1);
  border-color: rgba(60, 255, 154, 0.28);
  color: var(--accent);
  font-weight: 600;
}

.dash.dash--cliente .dash__nav-link.is-active {
  box-shadow: inset 3px 0 0 rgba(52, 245, 155, 0.55);
}

.dash.dash--admin .dash__nav-link.is-active {
  box-shadow: inset 3px 0 0 rgba(93, 207, 255, 0.55);
}

.dash.dash--admin .dash__nav-title {
  color: rgba(148, 164, 189, 0.95);
}

.dash__nav-link--muted {
  color: var(--muted);
  font-size: 0.88rem;
}

.dash__nav-link--logout {
  color: var(--danger);
}

.dash__nav-link--logout:hover {
  background: rgba(255, 107, 107, 0.08);
  border-color: rgba(255, 107, 107, 0.25);
  color: #ffb4b4;
}

.dash__topbar {
  position: sticky;
  top: 0;
  z-index: 4;
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 20px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.07);
  background: linear-gradient(180deg, rgba(8, 13, 22, 0.94) 0%, rgba(8, 13, 22, 0.82) 100%);
  backdrop-filter: blur(14px) saturate(1.2);
  -webkit-backdrop-filter: blur(14px) saturate(1.2);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

.dash__menu-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  padding: 0;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text);
  cursor: pointer;
  font-family: inherit;
  flex-shrink: 0;
}

.dash__menu-toggle:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.dash__menu-bars {
  display: block;
  width: 18px;
  height: 2px;
  background: currentColor;
  border-radius: 1px;
  box-shadow: 0 -6px 0 currentColor, 0 6px 0 currentColor;
}

.dash__topbar-spacer {
  flex: 1;
  min-width: 8px;
}

.dash__topbar-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  justify-content: flex-end;
  min-width: 0;
}

.dash__user-email {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: min(220px, 42vw);
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.badge {
  display: inline-block;
  padding: 4px 11px;
  border-radius: 999px;
  font-family: var(--font-display);
  font-size: 0.7rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.badge--soft {
  background: rgba(88, 224, 255, 0.12);
  border: 1px solid rgba(88, 224, 255, 0.28);
  color: var(--accent-blue);
}

.badge--muted {
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
  color: var(--muted);
  text-transform: none;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.dash__alerts {
  padding: 0 20px 4px;
}

.dash__alerts .alert {
  margin-top: 12px;
  border-radius: var(--radius-sm);
}

.dash__alerts .alert:first-child {
  margin-top: 16px;
}

.dash__main {
  padding: 8px 20px 32px;
  flex: 1;
}

.dash__main .section {
  padding: 24px 0 40px;
}

.dash__main .section .container {
  width: min(1200px, 94vw);
}

.dash.dash--admin .dash__main {
  background:
    radial-gradient(ellipse 680px 400px at 8% -6%, rgba(93, 207, 255, 0.075), transparent 58%),
    radial-gradient(ellipse 560px 360px at 94% 10%, rgba(167, 139, 250, 0.06), transparent 55%);
}

.dash.dash--cliente .dash__main {
  background:
    radial-gradient(ellipse 720px 420px at 10% -5%, rgba(52, 245, 155, 0.07), transparent 58%),
    radial-gradient(ellipse 640px 380px at 92% 8%, rgba(93, 207, 255, 0.06), transparent 55%),
    radial-gradient(ellipse 520px 340px at 48% 108%, rgba(167, 139, 250, 0.045), transparent 62%);
}

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

  .dash__menu-toggle {
    display: inline-flex;
  }

  .dash__overlay {
    display: block;
    position: fixed;
    inset: 0;
    z-index: 8;
    background: rgba(0, 0, 0, 0.55);
    border: none;
    padding: 0;
    margin: 0;
    cursor: pointer;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s ease;
  }

  .dash__overlay:not([hidden]) {
    opacity: 1;
    pointer-events: auto;
  }

  .dash__aside {
    position: fixed;
    left: 0;
    top: 0;
    bottom: 0;
    width: min(288px, 88vw);
    z-index: 9;
    transform: translateX(-100%);
    transition: transform 0.22s ease;
    box-shadow: var(--shadow);
  }

  body.dash--nav-open .dash__aside {
    transform: translateX(0);
  }

  body.dash--nav-open {
    overflow: hidden;
  }

  body.dash.dash--cliente .dash__cliente-strip {
    display: block;
    position: sticky;
    top: 65px;
    z-index: 3;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 18, 32, 0.94);
    backdrop-filter: blur(10px);
    margin: 0;
  }

  .dash__cliente-strip__scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 16px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .dash__cliente-strip__link {
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.15s ease, background 0.15s ease;
  }

  .dash__cliente-strip__link:hover {
    border-color: rgba(60, 255, 154, 0.35);
    background: rgba(60, 255, 154, 0.07);
  }

  .dash__cliente-strip__link:focus-visible {
    outline: 2px solid var(--accent);
    outline-offset: 2px;
  }

  .dash__cliente-strip__link.is-active {
    border-color: rgba(60, 255, 154, 0.45);
    background: rgba(60, 255, 154, 0.12);
    color: #d8fff0;
  }

  body.dash.dash--admin .dash__admin-strip {
    display: block;
    position: sticky;
    top: 65px;
    z-index: 3;
    border-bottom: 1px solid var(--line);
    background: rgba(11, 18, 32, 0.94);
    backdrop-filter: blur(10px);
    margin: 0;
  }

  .dash__admin-strip__scroll {
    display: flex;
    gap: 8px;
    overflow-x: auto;
    padding: 10px 16px;
    scrollbar-width: thin;
    -webkit-overflow-scrolling: touch;
  }

  .dash__admin-strip__link {
    flex-shrink: 0;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: rgba(255, 255, 255, 0.05);
    color: var(--text);
    font-size: 0.82rem;
    font-weight: 600;
    text-decoration: none;
    white-space: nowrap;
    transition: border-color 0.15s ease, background 0.15s ease;
  }

  .dash__admin-strip__link:hover {
    border-color: rgba(93, 207, 255, 0.38);
    background: rgba(93, 207, 255, 0.08);
  }

  .dash__admin-strip__link:focus-visible {
    outline: 2px solid var(--accent-blue);
    outline-offset: 2px;
  }

  .dash__admin-strip__link.is-active {
    border-color: rgba(93, 207, 255, 0.45);
    background: rgba(93, 207, 255, 0.14);
    color: #c9efff;
  }
}

.dash__cliente-strip {
  display: none;
}

.dash__admin-strip {
  display: none;
}

.metrics {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 12px;
}

.metric span {
  display: block;
  color: var(--muted);
  font-size: 0.9rem;
}

.metric strong {
  font-size: 1.6rem;
  line-height: 1.2;
}

.dash-metrics {
  margin-top: 8px;
}

.dash-metrics .metric {
  padding: 16px 18px;
  box-shadow: none;
  border-left: 3px solid var(--line);
}

.dash-metrics .metric:nth-child(1) {
  border-left-color: #ffc86a;
}

.dash-metrics .metric:nth-child(2) {
  border-left-color: var(--accent);
}

.dash-metrics .metric:nth-child(3) {
  border-left-color: var(--accent-blue);
}

.dash-metrics .metric:nth-child(4) {
  border-left-color: #a78bfa;
}

.dash-metrics .metric:nth-child(5) {
  border-left-color: #f472b6;
}

.dash-quick,
.cliente-quick {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 12px;
  margin-top: 8px;
}

.cliente-quick--always {
  margin-bottom: 8px;
}

.dash-quick a {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 14px 16px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    box-shadow 0.18s ease;
}

.cliente-quick .cliente-quick__tile {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.cliente-quick .cliente-quick__tile::before {
  content: '';
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-self: center;
  background: linear-gradient(145deg, rgba(52, 245, 155, 0.28), rgba(52, 245, 155, 0.06));
  border: 1px solid rgba(52, 245, 155, 0.22);
}

.cliente-quick__tile--calendar::before {
  background: linear-gradient(145deg, rgba(93, 207, 255, 0.32), rgba(93, 207, 255, 0.08));
  border-color: rgba(93, 207, 255, 0.26);
}

.cliente-quick__tile--pdf::before {
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.28), rgba(167, 139, 250, 0.07));
  border-color: rgba(167, 139, 250, 0.24);
}

.cliente-quick__tile--upload::before {
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.24), rgba(251, 191, 36, 0.06));
  border-color: rgba(251, 191, 36, 0.22);
}

.cliente-quick__tile--shop::before {
  background: linear-gradient(145deg, rgba(244, 114, 182, 0.24), rgba(244, 114, 182, 0.07));
  border-color: rgba(244, 114, 182, 0.22);
}

.cliente-quick__tile-title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.cliente-quick__tile-desc {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.dash-quick a:hover {
  border-color: rgba(60, 255, 154, 0.35);
  background: rgba(60, 255, 154, 0.06);
  text-decoration: none;
}

.cliente-quick .cliente-quick__tile:hover {
  border-color: rgba(60, 255, 154, 0.38);
  background: rgba(60, 255, 154, 0.07);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .cliente-quick .cliente-quick__tile {
    transition:
      border-color 0.15s ease,
      background 0.15s ease;
  }

  .cliente-quick .cliente-quick__tile:hover {
    transform: none;
  }
}

.dash-quick a strong {
  font-size: 0.95rem;
}

.dash-quick a span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.dash-quick.dash-quick--admin-tiles {
  margin-top: 10px;
}

.dash-quick.dash-quick--admin-tiles a.admin-q-tile {
  display: grid;
  grid-template-columns: 44px 1fr;
  grid-template-rows: auto auto;
  gap: 4px 14px;
  align-items: center;
  padding: 16px 18px;
  border-radius: var(--radius);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.035);
  color: var(--text);
  text-decoration: none;
  transition:
    border-color 0.18s ease,
    background 0.18s ease,
    transform 0.18s ease,
    box-shadow 0.18s ease;
}

.dash-quick.dash-quick--admin-tiles a.admin-q-tile::before {
  content: '';
  grid-column: 1;
  grid-row: 1 / span 2;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  align-self: center;
  background: linear-gradient(145deg, rgba(93, 207, 255, 0.28), rgba(93, 207, 255, 0.07));
  border: 1px solid rgba(93, 207, 255, 0.22);
}

.dash-quick.dash-quick--admin-tiles a.admin-q-tile.admin-q-tile--orders::before {
  background: linear-gradient(145deg, rgba(251, 191, 36, 0.26), rgba(251, 191, 36, 0.07));
  border-color: rgba(251, 191, 36, 0.24);
}

.dash-quick.dash-quick--admin-tiles a.admin-q-tile.admin-q-tile--leads::before {
  background: linear-gradient(145deg, rgba(167, 139, 250, 0.28), rgba(167, 139, 250, 0.07));
  border-color: rgba(167, 139, 250, 0.24);
}

.dash-quick.dash-quick--admin-tiles a.admin-q-tile.admin-q-tile--users::before {
  background: linear-gradient(145deg, rgba(52, 245, 155, 0.26), rgba(52, 245, 155, 0.07));
  border-color: rgba(52, 245, 155, 0.22);
}

.dash-quick.dash-quick--admin-tiles a.admin-q-tile.admin-q-tile--gen::before {
  background: linear-gradient(145deg, rgba(52, 245, 155, 0.22), rgba(93, 207, 255, 0.12));
  border-color: rgba(52, 245, 155, 0.2);
}

.dash-quick.dash-quick--admin-tiles a.admin-q-tile.admin-q-tile--manual::before {
  background: linear-gradient(145deg, rgba(244, 114, 182, 0.24), rgba(244, 114, 182, 0.07));
  border-color: rgba(244, 114, 182, 0.22);
}

.dash-quick.dash-quick--admin-tiles a.admin-q-tile.admin-q-tile--ex::before {
  background: linear-gradient(145deg, rgba(56, 189, 248, 0.26), rgba(56, 189, 248, 0.07));
  border-color: rgba(56, 189, 248, 0.24);
}

.dash-quick.dash-quick--admin-tiles a.admin-q-tile.admin-q-tile--forms::before {
  background: linear-gradient(145deg, rgba(129, 140, 248, 0.26), rgba(129, 140, 248, 0.07));
  border-color: rgba(129, 140, 248, 0.24);
}

.admin-q-tile__title {
  grid-column: 2;
  grid-row: 1;
  margin: 0;
  font-size: 0.95rem;
  font-weight: 700;
}

.admin-q-tile__desc {
  grid-column: 2;
  grid-row: 2;
  margin: 0;
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.dash-quick.dash-quick--admin-tiles a.admin-q-tile:hover {
  border-color: rgba(93, 207, 255, 0.4);
  background: rgba(93, 207, 255, 0.07);
  transform: translateY(-2px);
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.28);
  text-decoration: none;
}

@media (prefers-reduced-motion: reduce) {
  .dash-quick.dash-quick--admin-tiles a.admin-q-tile {
    transition:
      border-color 0.15s ease,
      background 0.15s ease;
  }

  .dash-quick.dash-quick--admin-tiles a.admin-q-tile:hover {
    transform: none;
  }
}

.admin-filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.admin-filter-tabs__link {
  display: inline-flex;
  align-items: center;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--muted);
  border: 1px solid rgba(255, 255, 255, 0.1);
  text-decoration: none;
  transition:
    border-color 0.15s ease,
    color 0.15s ease,
    background 0.15s ease;
}

.admin-filter-tabs__link:hover {
  color: var(--text);
  border-color: rgba(255, 255, 255, 0.18);
}

.admin-filter-tabs__link.is-active {
  color: var(--text);
  border-color: rgba(93, 207, 255, 0.45);
  background: rgba(93, 207, 255, 0.1);
}

.table-wrap {
  overflow: auto;
  border: 1px solid var(--line);
  border-radius: 12px;
}

.dash__main .table thead th {
  position: sticky;
  top: 0;
  z-index: 1;
  background: var(--card);
  box-shadow: 0 1px 0 var(--line);
}

.table {
  width: 100%;
  border-collapse: collapse;
}

.table th,
.table td {
  padding: 10px 12px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.table tbody tr:hover {
  background: rgba(255, 255, 255, 0.02);
}

.row-between {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
}

.row-between--start {
  align-items: flex-start;
}

.inline-form {
  display: flex;
  gap: 8px;
  align-items: center;
}

.mt {
  margin-top: 22px;
}

.mt-sm {
  margin-top: 12px;
}

.mt-lg {
  margin-top: 36px;
}

.progress {
  height: 10px;
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  overflow: hidden;
  margin-top: 10px;
}

.progress span {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--accent-dim), var(--accent));
}

.btn-row {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.btn-row--flush {
  margin-top: 0;
}

.plan-row-actions__dup {
  margin-top: 6px;
}

.dash-section-divider {
  border: 0;
  border-top: 1px solid var(--line);
  margin: 28px 0 20px;
}

.list-plain {
  list-style: none;
  padding: 0;
  margin: 0;
}

.dash-help-list {
  list-style: decimal;
  padding-left: 1.25rem;
  margin: 0;
}

/* Panel administración */
.dash.dash--admin .dash__aside {
  border-right-color: rgba(93, 207, 255, 0.14);
}

.admin-dash__eyebrow {
  color: var(--accent-blue);
}

.admin-dash__lead {
  max-width: 56ch;
}

.admin-dash__h2 {
  margin: 28px 0 0;
  font-family: var(--font-display);
  font-size: 1.12rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--text);
}

.admin-dash__head + .admin-dash__metrics {
  margin-top: 20px;
}

.dash.dash--admin .dash-metrics .metric {
  transition:
    transform 0.18s ease,
    border-color 0.18s ease,
    box-shadow 0.18s ease;
}

.dash.dash--admin .dash-metrics .metric:hover {
  transform: translateY(-2px);
  border-color: rgba(93, 207, 255, 0.22);
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.22);
}

@media (prefers-reduced-motion: reduce) {
  .dash.dash--admin .dash-metrics .metric:hover {
    transform: none;
  }
}

.dash.dash--admin .dash__main .table-wrap {
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.18);
}

.dash.dash--admin .table tbody tr:nth-child(even) {
  background: rgba(255, 255, 255, 0.022);
}

/* Panel cliente / futbolista */
.dash.dash--cliente .dash__aside {
  border-right-color: rgba(52, 245, 155, 0.18);
  box-shadow:
    inset -1px 0 0 rgba(255, 255, 255, 0.04),
    4px 0 32px rgba(52, 245, 155, 0.04);
}

.cliente-breadcrumb {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px 8px;
  font-size: 0.875rem;
  margin-bottom: 20px;
  padding: 11px 18px;
  max-width: 100%;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.045);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-sm);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.cliente-breadcrumb a {
  color: var(--text);
  text-decoration: none;
  border-bottom: 1px solid transparent;
}

.cliente-breadcrumb a:hover {
  border-bottom-color: rgba(60, 255, 154, 0.45);
}

.cliente-breadcrumb a:focus-visible,
.cliente-session-links a:focus-visible,
.cliente-quick a:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.cliente-breadcrumb__sep {
  opacity: 0.45;
  user-select: none;
}

.cliente-breadcrumb__here {
  color: var(--text);
  font-weight: 600;
}

.cliente-dash__eyebrow {
  margin-bottom: 8px;
}

.cliente-dash__lead {
  max-width: 54ch;
}

.cliente-dash__head .muted {
  margin-top: 6px;
  max-width: 52ch;
}

.cliente-dash__plan-card {
  position: relative;
  border-left: 4px solid rgba(52, 245, 155, 0.45);
  box-shadow:
    var(--shadow-soft),
    0 0 0 1px rgba(52, 245, 155, 0.06);
}

.cliente-dash__plan-card::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: inherit;
  pointer-events: none;
  background: radial-gradient(ellipse 420px 120px at 18% 0%, rgba(52, 245, 155, 0.09), transparent 62%);
}

.cliente-dash__plan-card > * {
  position: relative;
  z-index: 1;
}

.cliente-progress {
  height: 12px;
  border-radius: 999px;
}

.cliente-progress span {
  box-shadow: 0 0 14px rgba(52, 245, 155, 0.35);
}

.cliente-wellness-card__title {
  display: flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 14px;
  font-family: var(--font-display);
  font-size: 1.08rem;
}

.cliente-wellness-card__title::before {
  content: '';
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
  background: var(--accent);
  box-shadow: 0 0 14px rgba(52, 245, 155, 0.55);
}

.cliente-wellness-card.card--accent {
  background: linear-gradient(155deg, rgba(18, 38, 32, 0.55), rgba(15, 26, 46, 0.94));
}

.cliente-dash__plan-head {
  gap: 16px;
}

.cliente-dash__plan-title {
  margin: 0;
  font-size: 1.28rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cliente-dash__plan-meta {
  margin-top: 6px;
}

.cliente-status {
  display: inline-block;
  padding: 2px 10px;
  border-radius: 999px;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.02em;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--line);
}

.cliente-status--ok {
  background: rgba(60, 255, 154, 0.12);
  border-color: rgba(60, 255, 154, 0.35);
  color: #b8ffd9;
}

.cliente-status--draft {
  background: rgba(250, 204, 21, 0.12);
  border-color: rgba(250, 204, 21, 0.35);
  color: #fde68a;
}

.cliente-progress-wrap {
  min-width: 140px;
  flex: 1;
}

.cliente-progress-label {
  margin-top: 8px;
  font-size: 0.82rem;
}

.cliente-dash__empty {
  text-align: left;
}

.cliente-dash__empty-title {
  margin: 0 0 10px;
  font-size: 1.2rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.03em;
}

.cliente-dash__empty-lead {
  margin: 0;
}

.cliente-dash__empty-list {
  margin-top: 12px;
}

.cliente-dash__empty-hint {
  margin-bottom: 0;
  font-size: 0.9rem;
}

.cliente-dash__empty-actions {
  margin-top: 18px;
}

.cliente-dash__h2 {
  font-size: 1.08rem;
  font-family: var(--font-display);
  font-weight: 700;
  letter-spacing: -0.02em;
}

.cliente-players {
  list-style: none;
  padding: 0;
  margin: 10px 0 0;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.cliente-players__chip {
  display: flex;
  flex-direction: column;
  gap: 2px;
  align-items: flex-start;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  font-size: 0.88rem;
}

.cliente-players__chip span {
  font-size: 0.82rem;
  color: var(--muted);
  font-weight: 500;
}

.cliente-dash__wellness .muted {
  margin-bottom: 10px;
}

.cliente-phase {
  padding-bottom: 4px;
}

.cliente-phase__title {
  margin: 0 0 8px;
  font-size: 1.1rem;
}

.cliente-phase__desc {
  margin-bottom: 12px;
}

.cliente-week--nested {
  margin-top: 14px;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cliente-week__title {
  margin: 0 0 10px;
  font-size: 1rem;
}

.cliente-session-links {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cliente-session-links li {
  margin: 0;
}

.cliente-session-links a {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
  color: var(--text);
  text-decoration: none;
  transition: border-color 0.15s ease, background 0.15s ease;
}

.cliente-session-links a:hover {
  border-color: rgba(60, 255, 154, 0.3);
  background: rgba(60, 255, 154, 0.05);
}

.cliente-session-card__title {
  margin: 0 0 10px;
  font-size: 1rem;
}

.cliente-session-card__foot {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: auto;
  padding-top: 14px;
  border-top: 1px solid var(--line);
}

.cliente-session-card {
  display: flex;
  flex-direction: column;
  min-height: 100%;
  transition:
    border-color 0.2s ease,
    transform 0.2s ease,
    box-shadow 0.2s ease;
}

.cliente-session-card:hover {
  border-color: rgba(52, 245, 155, 0.28);
  transform: translateY(-3px);
  box-shadow: 0 18px 44px rgba(0, 0, 0, 0.35);
}

.cliente-session-card__title a {
  color: inherit;
  text-decoration: none;
}

.cliente-session-card__title a:hover {
  color: var(--accent);
  text-decoration: none;
}

.cliente-session-card--done {
  border-color: rgba(60, 255, 154, 0.22);
  background: rgba(60, 255, 154, 0.04);
}

@media (prefers-reduced-motion: reduce) {
  .cliente-session-card:hover {
    transform: none;
  }
}

.cliente-session__hero .section-head__lead {
  margin-bottom: 12px;
}

.cliente-session__meta-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin: 0;
}

.cliente-meta-chip {
  display: inline-flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.04);
  min-width: 128px;
}

.cliente-meta-chip__k {
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--muted);
}

.cliente-meta-chip__v {
  font-size: 1rem;
  font-weight: 700;
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.cliente-meta-chip--accent {
  border-color: rgba(93, 207, 255, 0.35);
  background: rgba(93, 207, 255, 0.08);
}

.cliente-meta-chip--accent .cliente-meta-chip__v {
  color: #b8ecff;
}

.cliente-session__block-title {
  margin: 0 0 14px;
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--muted);
}

.cliente-session__block {
  border-left: 3px solid rgba(255, 255, 255, 0.12);
}

.cliente-session__block--warmup {
  border-left-color: rgba(251, 191, 36, 0.75);
}

.cliente-session__block--main {
  border-left-color: rgba(52, 245, 155, 0.65);
}

.cliente-session__block--cooldown {
  border-left-color: rgba(93, 207, 255, 0.7);
}

.cliente-session__feedback {
  border-style: dashed;
  border-color: rgba(167, 139, 250, 0.35);
  background: linear-gradient(165deg, rgba(167, 139, 250, 0.06), rgba(15, 26, 46, 0.92));
}

.cliente-feedback-list li {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.03);
}

.cliente-week-page__empty-title {
  margin: 0 0 8px;
  font-weight: 700;
  font-family: var(--font-display);
  font-size: 1.05rem;
}

.cliente-plan article.cliente-phase {
  border-left: 3px solid rgba(52, 245, 155, 0.45);
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}

.cliente-plan article.cliente-phase:nth-of-type(even) {
  border-left-color: rgba(93, 207, 255, 0.45);
}

.cliente-plan article.cliente-phase:hover {
  box-shadow: 0 16px 42px rgba(0, 0, 0, 0.28);
}

.cliente-session__block .muted {
  margin-bottom: 10px;
}

.cliente-session__body {
  line-height: 1.55;
}

.cliente-exercise {
  padding-left: 4px;
}

.cliente-exercise__name {
  margin: 0 0 6px;
  font-size: 1rem;
}

.cliente-session__actions .btn-row {
  margin-top: 10px;
}

.cliente-feedback-list li + li {
  margin-top: 12px;
}

.cliente-session__back a {
  font-weight: 500;
}

.checkout-panel-link {
  margin: 0 0 14px;
}

.checkout-panel-link a {
  font-weight: 600;
}

.cliente-week-grid {
  align-items: stretch;
}

.cliente-cal__empty p {
  margin: 0;
}

.cliente-plan__empty p {
  margin: 0;
}

.cliente-plan__empty p + p {
  margin-top: 10px;
}

@media (max-width: 640px) {
  .cliente-cal .table thead {
    display: none;
  }

  .cliente-cal .table tbody tr {
    display: grid;
    gap: 6px;
    padding: 14px 12px;
    border-bottom: 1px solid var(--line);
  }

  .cliente-cal .table tbody td {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    gap: 12px;
    padding: 4px 0;
    border: none;
  }

  .cliente-cal .table tbody td::before {
    content: attr(data-label);
    font-weight: 600;
    font-size: 0.75rem;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    color: var(--muted);
    flex-shrink: 0;
  }
}

.ex-line {
  padding: 12px 0;
  border-bottom: 1px solid var(--line);
}

@media (prefers-reduced-motion: reduce) {
  .btn:hover,
  .btn--ghost:hover,
  .card--lift:hover {
    transform: none;
  }
}

/* Print */
.print-page {
  background: #fff !important;
  color: #111 !important;
}

.print-doc {
  padding: 24px;
}

.print-doc h1,
.print-doc h2,
.print-doc h3,
.print-doc h4 {
  color: #0b1220;
}

.print-session {
  border: 1px solid #ddd;
  border-radius: 10px;
  padding: 14px;
  margin-bottom: 12px;
}

.print-phase {
  margin-top: 22px;
}

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

@media print {
  .cols {
    grid-template-columns: 1fr;
  }
}
