/* IA Para Trabajadores — Tech Site
   Palette: #0A0A0A · #00E5FF → #9E1AFA → #FA1AFA → #FF00FF → #C117EE
   Font: IBM Plex Sans
*/

/* ── Reset ───────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body { font-family: 'IBM Plex Sans', sans-serif; background: #0A0A0A; color: #e5e7eb; overflow-x: hidden; }

/* ── Keyframes ───────────────────────────────────────────── */
@keyframes orb-1 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33%       { transform: translate(40px, -50px) scale(1.06); }
  66%       { transform: translate(-20px, 30px) scale(0.95); }
}
@keyframes orb-2 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  40%       { transform: translate(-50px, 40px) scale(1.08); }
  70%       { transform: translate(30px, -20px) scale(0.97); }
}
@keyframes orb-3 {
  0%, 100% { transform: translate(0, 0) scale(1); }
  50%       { transform: translate(20px, -60px) scale(1.04); }
}
@keyframes gradient-shift {
  0%   { background-position: 0% 50%; }
  50%  { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}
@keyframes badge-pulse {
  0%, 100% { box-shadow: 0 0 0 0 rgba(0, 229, 255, 0.35); }
  50%       { box-shadow: 0 0 0 8px rgba(0, 229, 255, 0); }
}
@keyframes shimmer {
  0%   { transform: translateX(-150%) skewX(-20deg); }
  100% { transform: translateX(350%) skewX(-20deg); }
}
@keyframes fade-up {
  from { opacity: 0; transform: translateY(32px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes fade-in {
  from { opacity: 0; }
  to   { opacity: 1; }
}
@keyframes line-grow {
  from { width: 0; }
  to   { width: 48px; }
}
@keyframes step-pop {
  0%   { transform: scale(0.7); opacity: 0; }
  80%  { transform: scale(1.08); }
  100% { transform: scale(1); opacity: 1; }
}
@keyframes nav-border-in {
  from { border-bottom-color: transparent; }
  to   { border-bottom-color: rgba(0, 229, 255, 0.15); }
}

/* ── Scroll animation system ─────────────────────────────── */
[data-animate] {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.65s cubic-bezier(.22,.68,0,1.2),
              transform 0.65s cubic-bezier(.22,.68,0,1.2);
}
[data-animate="fade"] {
  transform: none;
}
[data-animate="left"] {
  transform: translateX(-32px);
}
[data-animate="right"] {
  transform: translateX(32px);
}
[data-animate="pop"] {
  transform: scale(0.88);
  transition: opacity 0.5s ease, transform 0.5s cubic-bezier(.34,1.56,.64,1);
}
[data-animate].visible {
  opacity: 1;
  transform: translate(0) scale(1);
}
[data-delay="1"] { transition-delay: 0.08s; }
[data-delay="2"] { transition-delay: 0.16s; }
[data-delay="3"] { transition-delay: 0.24s; }
[data-delay="4"] { transition-delay: 0.32s; }
[data-delay="5"] { transition-delay: 0.40s; }
[data-delay="6"] { transition-delay: 0.48s; }

/* ── Neon Utilities ──────────────────────────────────────── */
.neon-gradient-text {
  background: linear-gradient(90deg, #00E5FF, #9E1AFA, #FA1AFA, #FF00FF, #C117EE, #00E5FF);
  background-size: 250% auto;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  animation: gradient-shift 5s linear infinite;
}
.neon-gradient-bg  { background: linear-gradient(90deg, #00E5FF 0%, #9E1AFA 50%, #FA1AFA 100%); }
.neon-glow         { box-shadow: 0 0 40px rgba(0,229,255,.12), 0 0 80px rgba(158,26,250,.08); }
.neon-glow-strong  { box-shadow: 0 0 30px rgba(0,229,255,.3), 0 0 60px rgba(158,26,250,.2), 0 0 100px rgba(250,26,250,.1); }

/* ── Typography helpers ──────────────────────────────────── */
.text-neon     { color: #00E5FF; }
.text-carbon   { color: #0A0A0A; }
.text-navy     { color: #0C2540; }
.text-platinum { color: #F2F2F2; }
.text-muted    { color: #6b7280; }
.tracking-widest { letter-spacing: 0.25em; }
.tracking-wider  { letter-spacing: 0.1em; }
.uppercase       { text-transform: uppercase; }

/* ── Navigation ──────────────────────────────────────────── */
nav {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  background: rgba(10, 10, 10, 0.8);
  backdrop-filter: blur(16px); -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid transparent;
  transition: border-bottom-color 0.3s, background 0.3s;
}
nav.scrolled {
  background: rgba(10, 10, 10, 0.95);
  border-bottom-color: rgba(0, 229, 255, 0.15);
}
.nav-inner {
  max-width: 1200px; margin: 0 auto; padding: 0 24px;
  height: 64px; display: flex; align-items: center; justify-content: space-between;
}
.nav-logo {
  font-size: 1.05rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #00E5FF; text-decoration: none;
  transition: opacity 0.2s;
}
.nav-logo:hover { opacity: 0.75; }
.nav-links { display: flex; align-items: center; gap: 32px; list-style: none; }
.nav-links a {
  color: #9ca3af; text-decoration: none; font-size: 0.82rem;
  font-weight: 400; letter-spacing: 0.08em; text-transform: uppercase;
  transition: color 0.2s;
}
.nav-links a:hover { color: #00E5FF; }
.btn-nav {
  display: inline-flex; align-items: center; padding: 8px 20px;
  border-radius: 6px; font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase; text-decoration: none;
  color: #00E5FF; border: 1px solid rgba(0, 229, 255, 0.35);
  transition: all 0.2s;
}
.btn-nav:hover { background: rgba(0,229,255,.08); border-color: #00E5FF; }

/* ── Buttons ─────────────────────────────────────────────── */
.btn-primary {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 14px 32px; border-radius: 8px; font-size: 0.9rem;
  font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase;
  text-decoration: none; color: #0A0A0A;
  background: linear-gradient(90deg, #00E5FF, #9E1AFA, #FA1AFA);
  border: none; cursor: pointer;
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
}
.btn-primary:hover {
  opacity: 0.92; transform: translateY(-2px);
  box-shadow: 0 8px 32px rgba(0,229,255,0.25);
}
/* shimmer sweep */
.btn-primary::after {
  content: '';
  position: absolute; top: 0; left: 0; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.28), transparent);
  animation: shimmer 2.8s infinite;
}
.btn-secondary {
  display: inline-flex; align-items: center; justify-content: center;
  padding: 13px 32px; border-radius: 8px; font-size: 0.9rem;
  font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: #e5e7eb;
  border: 1px solid rgba(229,231,235,.2); transition: all 0.2s;
}
.btn-secondary:hover { border-color: rgba(229,231,235,.5); background: rgba(255,255,255,.04); }
.btn-buy {
  position: relative; overflow: hidden;
  display: inline-flex; align-items: center; justify-content: center;
  padding: 12px 28px; border-radius: 8px; font-size: 0.85rem;
  font-weight: 700; letter-spacing: 0.1em; text-transform: uppercase;
  text-decoration: none; color: #0A0A0A;
  background: linear-gradient(90deg, #00E5FF, #9E1AFA);
  transition: opacity 0.2s, transform 0.15s, box-shadow 0.2s;
  width: 100%; margin-top: 16px;
}
.btn-buy:hover { opacity: 0.9; transform: translateY(-1px); box-shadow: 0 6px 20px rgba(0,229,255,0.2); }
.btn-buy::after {
  content: '';
  position: absolute; top: 0; left: 0; width: 40%; height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.22), transparent);
  animation: shimmer 2.4s 0.5s infinite;
}

/* ── Sections ────────────────────────────────────────────── */
section { width: 100%; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
.section-dark  { background: #0A0A0A; }
.section-navy  { background: #0C2540; }
.section-light { background: #F2F2F2; }

/* ── Hero ────────────────────────────────────────────────── */
.hero {
  min-height: 100vh; display: flex; align-items: center;
  position: relative; overflow: hidden; padding-top: 64px;
}

/* Dot grid background */
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(0,229,255,0.07) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none; z-index: 0;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 40%, transparent 100%);
}

/* Animated orbs */
.hero-orb {
  position: absolute; border-radius: 50%;
  pointer-events: none; z-index: 0; filter: blur(1px);
}
.hero-orb-1 {
  width: 560px; height: 560px;
  background: radial-gradient(circle, rgba(158,26,250,0.18) 0%, rgba(0,229,255,0.06) 50%, transparent 70%);
  top: -80px; left: 15%;
  animation: orb-1 9s ease-in-out infinite;
}
.hero-orb-2 {
  width: 420px; height: 420px;
  background: radial-gradient(circle, rgba(0,229,255,0.13) 0%, rgba(250,26,250,0.05) 50%, transparent 70%);
  top: 120px; right: 8%;
  animation: orb-2 11s ease-in-out infinite;
}
.hero-orb-3 {
  width: 280px; height: 280px;
  background: radial-gradient(circle, rgba(250,26,250,0.12) 0%, transparent 70%);
  bottom: 60px; left: 5%;
  animation: orb-3 7s ease-in-out infinite;
}

.hero-content {
  position: relative; z-index: 1; text-align: center;
  max-width: 800px; margin: 0 auto; padding: 80px 24px;
}
.hero-badge {
  display: inline-block; padding: 6px 18px; border-radius: 999px;
  border: 1px solid rgba(0,229,255,.4); font-size: 0.7rem; font-weight: 700;
  letter-spacing: 0.2em; text-transform: uppercase; color: #00E5FF;
  margin-bottom: 32px; animation: badge-pulse 2.5s ease-in-out infinite;
}
.hero h1 {
  font-size: clamp(2.6rem, 6vw, 5rem); font-weight: 700;
  line-height: 1.1; letter-spacing: 0.05em; text-transform: uppercase;
  color: #F2F2F2; margin-bottom: 24px;
  animation: fade-up 0.8s 0.2s cubic-bezier(.22,.68,0,1.2) both;
}
.hero-subtitle {
  font-size: 1.1rem; font-weight: 300; color: #9ca3af; line-height: 1.7;
  max-width: 560px; margin: 0 auto 40px;
  animation: fade-up 0.8s 0.4s cubic-bezier(.22,.68,0,1.2) both;
}
.hero-ctas {
  display: flex; gap: 16px; justify-content: center; flex-wrap: wrap;
  margin-bottom: 48px;
  animation: fade-up 0.8s 0.55s cubic-bezier(.22,.68,0,1.2) both;
}
.hero-tools {
  display: flex; gap: 10px; justify-content: center; flex-wrap: wrap;
  align-items: center;
  animation: fade-in 0.8s 0.8s both;
}
.tool-chip {
  padding: 5px 14px; border-radius: 999px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  font-size: 0.75rem; font-weight: 500; color: #9ca3af; letter-spacing: 0.04em;
  transition: border-color 0.2s, color 0.2s;
}
.tool-chip:hover { border-color: rgba(0,229,255,.3); color: #00E5FF; }
.tools-label { font-size: 0.7rem; color: #6b7280; letter-spacing: 0.1em; text-transform: uppercase; }

/* Decorative scroll hint */
.scroll-hint {
  position: absolute; bottom: 32px; left: 50%; transform: translateX(-50%);
  display: flex; flex-direction: column; align-items: center; gap: 6px;
  z-index: 1; animation: fade-in 1s 1.2s both;
}
.scroll-hint span { font-size: 0.65rem; color: #6b7280; letter-spacing: 0.15em; text-transform: uppercase; }
.scroll-arrow {
  width: 20px; height: 20px; border-right: 2px solid rgba(0,229,255,.4);
  border-bottom: 2px solid rgba(0,229,255,.4); transform: rotate(45deg);
  animation: fade-up 1s 1.4s ease-in-out infinite alternate;
}

/* ── Section header pattern ──────────────────────────────── */
.section-label {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.25em;
  text-transform: uppercase; margin-bottom: 10px;
}
.section-title {
  font-size: clamp(1.8rem, 4vw, 3rem); font-weight: 700;
  letter-spacing: 0.04em; text-transform: uppercase; margin-bottom: 16px;
}
.section-accent-line {
  height: 2px; width: 0; background: linear-gradient(90deg, #00E5FF, #9E1AFA);
  border-radius: 2px; margin-bottom: 32px;
  transition: width 0.8s 0.3s ease;
}
.section-accent-line.visible { width: 48px; }
.section-subtitle {
  font-size: 1rem; font-weight: 300; line-height: 1.7; max-width: 560px;
}

/* ── Personas ────────────────────────────────────────────── */
.personas-section { padding: 96px 24px; }
.personas-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 24px; margin-top: 48px;
}
.persona-card {
  background: #0A0A0A; border: 1px solid rgba(0,229,255,.12);
  border-radius: 12px; padding: 28px;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
  cursor: default;
}
.persona-card:hover {
  border-color: rgba(0,229,255,.45); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,229,255,.08);
}
.persona-icon { font-size: 2rem; margin-bottom: 14px; }
.persona-name {
  font-size: 0.95rem; font-weight: 700; letter-spacing: 0.07em;
  text-transform: uppercase; color: #F2F2F2; margin-bottom: 10px;
}
.persona-pain { font-size: 0.875rem; color: #9ca3af; line-height: 1.65; margin-bottom: 16px; }
.persona-tools { display: flex; gap: 6px; flex-wrap: wrap; margin-bottom: 16px; }
.tool-tag {
  padding: 3px 10px; border-radius: 4px;
  background: rgba(0,229,255,.07); border: 1px solid rgba(0,229,255,.15);
  font-size: 0.7rem; font-weight: 600; color: #00E5FF; letter-spacing: 0.04em;
}
.persona-link {
  font-size: 0.8rem; font-weight: 600; color: #00E5FF;
  text-decoration: none; letter-spacing: 0.06em; text-transform: uppercase;
  transition: opacity 0.15s;
}
.persona-link:hover { opacity: 0.7; }

/* ── Catalog ─────────────────────────────────────────────── */
.catalog-section { padding: 96px 24px; }
.catalog-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
  gap: 28px; margin-top: 48px;
}
.product-card {
  background: #111; border: 1px solid rgba(0,229,255,.12);
  border-radius: 12px; padding: 28px; display: flex; flex-direction: column;
  transition: border-color 0.25s, transform 0.25s, box-shadow 0.25s;
}
.product-card:hover {
  border-color: rgba(0,229,255,.4); transform: translateY(-4px);
  box-shadow: 0 16px 40px rgba(0,229,255,.07);
}
.product-card.featured { border-color: rgba(158,26,250,.25); }
.product-card.featured:hover {
  border-color: rgba(158,26,250,.6);
  box-shadow: 0 16px 40px rgba(158,26,250,.12);
}
.product-badge {
  display: inline-block; padding: 4px 12px; border-radius: 999px;
  font-size: 0.65rem; font-weight: 700; letter-spacing: 0.15em;
  text-transform: uppercase; margin-bottom: 14px; width: fit-content;
}
.product-badge.featured-badge {
  background: rgba(158,26,250,.15); border: 1px solid rgba(158,26,250,.4); color: #C117EE;
}
.product-badge.role-badge {
  background: rgba(0,229,255,.07); border: 1px solid rgba(0,229,255,.2); color: #00E5FF;
}
.product-title {
  font-size: 1.1rem; font-weight: 700; letter-spacing: 0.03em;
  color: #F2F2F2; margin-bottom: 8px; line-height: 1.35;
}
.product-subtitle { font-size: 0.85rem; color: #9ca3af; line-height: 1.65; margin-bottom: 16px; flex: 1; }
.product-footer {
  display: flex; align-items: center; justify-content: space-between;
  margin-top: auto; padding-top: 16px; border-top: 1px solid rgba(255,255,255,.06);
}
.product-price { font-size: 1.5rem; font-weight: 700; color: #00E5FF; }
.product-price-label {
  font-size: 0.68rem; color: #6b7280; letter-spacing: 0.06em;
  text-transform: uppercase; display: block;
}
.badge-coming {
  display: inline-block; padding: 6px 14px; border-radius: 6px;
  background: rgba(255,255,255,.04); border: 1px solid rgba(255,255,255,.08);
  font-size: 0.7rem; font-weight: 600; color: #6b7280; letter-spacing: 0.1em; text-transform: uppercase;
}

/* ── Process ─────────────────────────────────────────────── */
.process-section { padding: 96px 24px; }
.process-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 48px; margin-top: 48px; position: relative;
}
/* connector line between steps */
.process-grid::before {
  content: '';
  position: absolute; top: 28px; left: calc(16.6% + 28px); right: calc(16.6% + 28px);
  height: 1px; background: linear-gradient(90deg, rgba(0,229,255,.3), rgba(158,26,250,.3));
  display: none;
}
@media (min-width: 700px) { .process-grid::before { display: block; } }
.process-step { text-align: center; }
.step-number {
  width: 56px; height: 56px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.2rem; font-weight: 700; margin: 0 auto 20px;
  background: linear-gradient(135deg, #00E5FF, #9E1AFA);
  color: #0A0A0A; position: relative; z-index: 1;
  transition: transform 0.3s, box-shadow 0.3s;
}
.process-step:hover .step-number {
  transform: scale(1.12);
  box-shadow: 0 0 24px rgba(0,229,255,0.4);
}
.step-title {
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.12em;
  text-transform: uppercase; color: #F2F2F2; margin-bottom: 10px;
}
.step-desc { font-size: 0.875rem; color: #9ca3af; line-height: 1.65; }

/* ── Features ────────────────────────────────────────────── */
.features-section { padding: 96px 24px; }
.features-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr));
  gap: 20px; margin-top: 48px;
}
.feature-card {
  background: #fff; border: 1px solid #e5e7eb; border-radius: 12px; padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s, border-color 0.25s;
}
.feature-card:hover {
  transform: translateY(-4px); border-color: #0C2540;
  box-shadow: 0 12px 32px rgba(12,37,64,.1);
}
.feature-icon { font-size: 2rem; margin-bottom: 14px; }
.feature-title {
  font-size: 0.88rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase; color: #0C2540; margin-bottom: 8px;
}
.feature-desc { font-size: 0.85rem; color: #374151; line-height: 1.65; }

/* ── Testimonials ────────────────────────────────────────── */
.testimonials-section { padding: 96px 24px; }
.testimonials-grid {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px; margin-top: 48px;
}
.testimonial-card {
  background: #111; border-radius: 12px;
  border: 1px solid rgba(255,255,255,.06);
  border-left: 3px solid #00E5FF; padding: 28px;
  transition: transform 0.25s, box-shadow 0.25s;
}
.testimonial-card:hover { transform: translateY(-3px); box-shadow: 0 12px 32px rgba(0,229,255,.06); }
.testimonial-quote {
  font-size: 0.95rem; color: #d1d5db; line-height: 1.75;
  font-style: italic; margin-bottom: 20px;
}
.testimonial-author { font-size: 0.82rem; font-weight: 700; color: #F2F2F2; letter-spacing: 0.06em; text-transform: uppercase; }
.testimonial-role   { font-size: 0.75rem; color: #6b7280; margin-top: 2px; }

/* ── FAQ ─────────────────────────────────────────────────── */
.faq-section { padding: 96px 24px; }
.faq-list { max-width: 720px; margin: 48px auto 0; }
details { border-bottom: 1px solid #e5e7eb; }
details:first-child { border-top: 1px solid #e5e7eb; }
summary {
  padding: 20px 0; font-size: 0.95rem; font-weight: 600;
  color: #0C2540; cursor: pointer;
  display: flex; justify-content: space-between; align-items: center;
  list-style: none; letter-spacing: 0.02em;
  transition: color 0.2s;
}
summary:hover { color: #9E1AFA; }
summary::-webkit-details-marker { display: none; }
summary::after {
  content: '+'; font-size: 1.5rem; font-weight: 300; color: #9E1AFA;
  transition: transform 0.25s; flex-shrink: 0; margin-left: 16px;
}
details[open] summary::after { transform: rotate(45deg); }
.faq-answer {
  padding: 0 0 20px; font-size: 0.9rem; color: #374151; line-height: 1.75;
  animation: fade-up 0.3s ease both;
}

/* ── Section divider ─────────────────────────────────────── */
.section-divider {
  height: 1px; margin: 0;
  background: linear-gradient(90deg, transparent, rgba(0,229,255,.15), rgba(158,26,250,.15), transparent);
}

/* ── Footer ──────────────────────────────────────────────── */
footer {
  background: #0A0A0A; border-top: 1px solid rgba(0,229,255,.08);
  padding: 44px 24px; text-align: center;
}
.footer-inner { max-width: 1200px; margin: 0 auto; }
.footer-brand { font-size: 0.9rem; font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase; color: #00E5FF; margin-bottom: 8px; }
.footer-copy  { font-size: 0.78rem; color: #6b7280; }
.footer-email { margin-top: 12px; font-size: 0.78rem; }
.footer-email a { color: #9ca3af; text-decoration: none; transition: color 0.2s; }
.footer-email a:hover { color: #00E5FF; }

/* ── Language switcher ───────────────────────────────────── */
.lang-switcher {
  display: flex; align-items: center; gap: 6px;
}
.lang-switcher a {
  font-size: 0.72rem; font-weight: 700; letter-spacing: 0.1em;
  color: #6b7280; text-decoration: none; text-transform: uppercase;
  transition: color 0.2s; padding: 2px 0;
}
.lang-switcher a:hover, .lang-switcher a.active { color: #00E5FF; }
.lang-sep { color: rgba(255,255,255,.15); font-size: 0.65rem; }

/* ── Responsive ──────────────────────────────────────────── */
@media (max-width: 768px) {
  .nav-links { display: none; }
  .hero h1 { font-size: 2.2rem; }
  .hero-ctas { flex-direction: column; align-items: center; }
  .process-grid { grid-template-columns: 1fr; gap: 32px; }
  .personas-grid, .catalog-grid, .features-grid, .testimonials-grid { grid-template-columns: 1fr; }
  .hero-orb-1 { width: 300px; height: 300px; }
  .hero-orb-2 { display: none; }
}
