/* =========================================================
   invfix — Estilos globales
   Empresa: Absys Technologies SL | invfix.com
   ========================================================= */

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

/* ─── Variables ─────────────────────────────────────────── */
:root {
  --dark:       #0D1321;
  --blue:       #4A6BFF;
  --blue-hover: #3a57e8;
  --blue-light: #EEF1FF;
  --blue-dim:   rgba(74,107,255,0.12);
  --light:      #F1F3F6;
  --white:      #FFFFFF;
  --text:       #1A2040;
  --text-muted: #6B7280;
  --border:     #E5E7EB;
  --radius:     10px;
  --shadow:     0 4px 24px rgba(13,19,33,0.08);
  --shadow-lg:  0 12px 48px rgba(13,19,33,0.14);
}

/* ─── Reset ─────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 16px;
  color: var(--text);
  background: var(--white);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; }

/* ─── Typography ─────────────────────────────────────────── */
h1 { font-size: clamp(2.2rem, 5vw, 3.5rem); font-weight: 800; line-height: 1.15; letter-spacing: -1px; }
h2 { font-size: clamp(1.6rem, 3.5vw, 2.4rem); font-weight: 700; letter-spacing: -0.5px; }
h3 { font-size: 1.15rem; font-weight: 600; }

/* ─── Layout ─────────────────────────────────────────────── */
.container { max-width: 1140px; margin: 0 auto; padding: 0 24px; }
.section { padding: 80px 0; }
.section-sm { padding: 48px 0; }

/* ─── Navbar ─────────────────────────────────────────────── */
.navbar {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.95);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
}

.navbar-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 68px;
  gap: 24px;
}

/* Logo */
.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.nav-logo svg { width: 36px; height: 36px; }
.nav-logo-text { font-size: 22px; font-weight: 700; color: var(--dark); letter-spacing: -0.5px; }

/* Nav links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 8px 14px;
  border-radius: 8px;
  transition: color 0.2s, background 0.2s;
}

.nav-links a:hover, .nav-links a.active {
  color: var(--dark);
  background: var(--light);
}

/* Nav actions */
.nav-actions { display: flex; align-items: center; gap: 8px; flex-shrink: 0; }

/* ─── Buttons ─────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 22px;
  border-radius: var(--radius);
  font-size: 14.5px;
  font-weight: 600;
  transition: all 0.2s;
  white-space: nowrap;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
}
.btn-primary:hover { background: var(--blue-hover); transform: translateY(-1px); box-shadow: 0 4px 16px rgba(74,107,255,0.35); }

.btn-outline {
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--dark);
}
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }

.btn-ghost {
  background: transparent;
  color: var(--text-muted);
  padding: 11px 16px;
}
.btn-ghost:hover { background: var(--light); color: var(--dark); }

.btn-lg {
  padding: 14px 28px;
  font-size: 16px;
  border-radius: 12px;
}

.btn-dark {
  background: var(--dark);
  color: var(--white);
}
.btn-dark:hover { background: #1a2545; }

/* ─── Badge ─────────────────────────────────────────────── */
.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
}
.badge-blue { background: var(--blue-dim); color: var(--blue); }
.badge-dark { background: var(--dark); color: var(--white); }
.badge-green { background: #d1fae5; color: #059669; }

/* ─── HERO ─────────────────────────────────────────────── */
.hero {
  background: linear-gradient(160deg, #0D1321 0%, #162040 55%, #1a2a5e 100%);
  color: var(--white);
  padding: 90px 0 80px;
  overflow: hidden;
  position: relative;
}

.hero::before {
  content: '';
  position: absolute;
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(74,107,255,0.2) 0%, transparent 70%);
  top: -100px; right: -100px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.hero-content { z-index: 1; }

.hero-badge { margin-bottom: 20px; }

.hero h1 { color: var(--white); margin-bottom: 20px; }

.hero h1 .accent { color: var(--blue); }

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,0.7);
  line-height: 1.7;
  margin-bottom: 32px;
  max-width: 480px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 28px;
}

.hero-note {
  font-size: 12.5px;
  color: rgba(255,255,255,0.45);
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-note span::before {
  content: '✓  ';
  color: var(--blue);
}

.hero-visual { z-index: 1; }

/* Dashboard mockup */
.mockup-shell {
  background: #1a2040;
  border: 1.5px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  overflow: hidden;
  box-shadow: var(--shadow-lg), 0 0 60px rgba(74,107,255,0.15);
}

.mockup-bar {
  background: rgba(255,255,255,0.05);
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.mockup-dot { width: 10px; height: 10px; border-radius: 50%; }
.mockup-dot.red { background: #ff5f57; }
.mockup-dot.yellow { background: #ffbd2e; }
.mockup-dot.green { background: #28c840; }

.mockup-url {
  background: rgba(255,255,255,0.06);
  border-radius: 6px;
  padding: 4px 12px;
  font-size: 11px;
  color: rgba(255,255,255,0.4);
  margin-left: 8px;
}

.mockup-body { padding: 20px; }

/* Mini dashboard inside mockup */
.dash-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}

.dash-title { font-size: 13px; font-weight: 600; color: rgba(255,255,255,0.9); }

.dash-btn {
  background: var(--blue);
  color: white;
  border: none;
  border-radius: 6px;
  padding: 5px 12px;
  font-size: 11px;
  font-weight: 600;
}

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

.dash-stat {
  background: rgba(255,255,255,0.05);
  border-radius: 8px;
  padding: 12px;
}

.dash-stat .label { font-size: 10px; color: rgba(255,255,255,0.4); margin-bottom: 4px; }
.dash-stat .value { font-size: 16px; font-weight: 700; color: white; }
.dash-stat .sub { font-size: 10px; color: #4A6BFF; margin-top: 2px; }

.dash-table { width: 100%; }
.dash-table .row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 11px;
}

.dash-table .row:last-child { border-bottom: none; }
.dash-table .num { color: rgba(255,255,255,0.55); }
.dash-table .name { color: rgba(255,255,255,0.85); flex: 1; margin: 0 10px; }
.dash-table .amount { color: white; font-weight: 600; }
.dash-table .status {
  font-size: 9.5px;
  padding: 2px 8px;
  border-radius: 50px;
  font-weight: 600;
  background: rgba(5,150,105,0.2);
  color: #34d399;
}
.dash-table .status.pending { background: rgba(245,158,11,0.2); color: #fbbf24; }

/* ─── Trust bar ─────────────────────────────────────────── */
.trust-bar {
  background: var(--light);
  padding: 20px 0;
  border-bottom: 1px solid var(--border);
}

.trust-bar-inner {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 500;
  color: var(--text-muted);
}

.trust-item .icon {
  width: 32px;
  height: 32px;
  background: var(--blue-dim);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
}

.trust-item .icon svg { width: 16px; height: 16px; }

/* ─── Feature cards ─────────────────────────────────────── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.feature-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
  transition: border-color 0.2s, box-shadow 0.2s, transform 0.2s;
}

.feature-card:hover {
  border-color: var(--blue);
  box-shadow: var(--shadow);
  transform: translateY(-2px);
}

.feature-icon {
  width: 48px;
  height: 48px;
  background: var(--blue-dim);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  margin-bottom: 16px;
}

.feature-icon svg { width: 24px; height: 24px; }

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

.feature-card p { font-size: 14.5px; color: var(--text-muted); line-height: 1.6; }

/* ─── VeriFactu section ─────────────────────────────────── */
.verifactu-section {
  background: var(--dark);
  color: var(--white);
  border-radius: 20px;
  padding: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 60px;
  align-items: center;
}

.verifactu-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(74,107,255,0.2);
  color: var(--blue);
  padding: 6px 14px;
  border-radius: 50px;
  font-size: 12.5px;
  font-weight: 600;
  margin-bottom: 20px;
}

.verifactu-section h2 { color: var(--white); margin-bottom: 16px; }
.verifactu-section p { color: rgba(255,255,255,0.65); margin-bottom: 24px; font-size: 15px; line-height: 1.7; }

.verifactu-list { list-style: none; display: flex; flex-direction: column; gap: 12px; }

.verifactu-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 14.5px;
  color: rgba(255,255,255,0.85);
}

.check-icon {
  width: 22px;
  height: 22px;
  background: rgba(74,107,255,0.25);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--blue);
  margin-top: 1px;
}

.check-icon svg { width: 12px; height: 12px; }

/* Verifactu visual */
.verifactu-visual {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.1);
  border-radius: 14px;
  padding: 28px;
}

.vf-badge-big {
  text-align: center;
  padding: 24px;
  background: rgba(74,107,255,0.15);
  border-radius: 12px;
  margin-bottom: 20px;
}

.vf-badge-big .shield { font-size: 48px; margin-bottom: 8px; }
.vf-badge-big .vf-title { font-size: 14px; font-weight: 700; color: var(--white); }
.vf-badge-big .vf-sub { font-size: 11px; color: var(--blue); margin-top: 4px; }

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

.vf-step {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,0.04);
  border-radius: 8px;
  padding: 12px;
  font-size: 12.5px;
  color: rgba(255,255,255,0.75);
}

.vf-step .num {
  width: 24px;
  height: 24px;
  background: var(--blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  color: white;
  flex-shrink: 0;
}

/* ─── Pricing ─────────────────────────────────────────────── */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
  align-items: start;
}

.price-card {
  background: var(--white);
  border: 2px solid var(--border);
  border-radius: 16px;
  padding: 32px;
  transition: box-shadow 0.2s;
}

.price-card:hover { box-shadow: var(--shadow); }

.price-card.featured {
  border-color: var(--blue);
  position: relative;
  box-shadow: 0 0 0 4px var(--blue-dim);
}

.price-card.featured::before {
  content: 'Más popular';
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: white;
  font-size: 12px;
  font-weight: 600;
  padding: 4px 16px;
  border-radius: 50px;
  white-space: nowrap;
}

.plan-name {
  font-size: 13px;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 8px;
}

.plan-price {
  display: flex;
  align-items: flex-end;
  gap: 4px;
  margin-bottom: 4px;
}

.plan-price .amount {
  font-size: 3rem;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
}

.plan-price .currency { font-size: 1.4rem; font-weight: 700; color: var(--dark); margin-bottom: 6px; }
.plan-price .period { font-size: 14px; color: var(--text-muted); margin-bottom: 8px; }

.plan-annual { font-size: 12.5px; color: var(--text-muted); margin-bottom: 24px; }
.plan-annual strong { color: #059669; }

.plan-desc { font-size: 14px; color: var(--text-muted); line-height: 1.6; margin-bottom: 24px; padding-bottom: 24px; border-bottom: 1px solid var(--border); }

.plan-features { list-style: none; display: flex; flex-direction: column; gap: 10px; margin-bottom: 28px; }

.plan-features li {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  color: var(--text);
}

.plan-features .chk {
  width: 18px;
  height: 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  background: var(--blue-dim);
  color: var(--blue);
}

.plan-features .chk svg { width: 10px; height: 10px; }

.price-card .btn { width: 100%; justify-content: center; }

/* Toggle billing */
.billing-toggle {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  margin-top: 24px;
}

.billing-toggle span { font-size: 14px; font-weight: 500; color: var(--text-muted); }
.billing-toggle span.active { color: var(--dark); }

.toggle-switch {
  position: relative;
  width: 44px;
  height: 24px;
}

.toggle-switch input { display: none; }

.toggle-slider {
  position: absolute;
  inset: 0;
  background: var(--blue);
  border-radius: 50px;
  cursor: pointer;
  transition: 0.2s;
}

.toggle-slider::before {
  content: '';
  position: absolute;
  width: 18px; height: 18px;
  background: white;
  border-radius: 50%;
  top: 3px; left: 3px;
  transition: 0.2s;
}

.toggle-switch input:checked + .toggle-slider::before { left: 23px; }

.save-tag {
  background: #d1fae5;
  color: #059669;
  font-size: 11px;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 50px;
}

/* ─── Testimonials ─────────────────────────────────────── */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.testimonial-card {
  background: var(--white);
  border: 1.5px solid var(--border);
  border-radius: 14px;
  padding: 28px;
}

.testimonial-stars { color: #f59e0b; font-size: 16px; margin-bottom: 14px; }

.testimonial-text {
  font-size: 14.5px;
  color: var(--text);
  line-height: 1.7;
  margin-bottom: 20px;
  font-style: italic;
}

.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}

.avatar {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--blue-dim);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  font-weight: 700;
  color: var(--blue);
  flex-shrink: 0;
}

.testimonial-author .name { font-size: 13.5px; font-weight: 600; color: var(--dark); }
.testimonial-author .role { font-size: 12px; color: var(--text-muted); margin-top: 1px; }

/* ─── FAQ ─────────────────────────────────────────────── */
.faq-list {
  max-width: 740px;
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  border: 1.5px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
}

.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-weight: 600;
  font-size: 15px;
  color: var(--dark);
  background: var(--white);
  transition: background 0.15s;
  gap: 12px;
}

.faq-q:hover { background: var(--light); }

.faq-q svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  transition: transform 0.25s;
}

.faq-item.open .faq-q svg { transform: rotate(180deg); }

.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease, padding 0.3s;
  font-size: 14.5px;
  color: var(--text-muted);
  line-height: 1.7;
}

.faq-item.open .faq-a { max-height: 400px; padding: 0 22px 20px; }

/* ─── CTA banner ─────────────────────────────────────────── */
.cta-banner {
  background: linear-gradient(160deg, #0D1321 0%, #162040 55%, #1a2a5e 100%);
  border-radius: 20px;
  border: 1.5px solid rgba(74,107,255,0.25);
  padding: 60px;
  text-align: center;
  color: var(--white);
  position: relative;
  overflow: hidden;
}

.cta-banner::before {
  content: '';
  position: absolute;
  width: 340px; height: 340px;
  background: radial-gradient(circle, rgba(74,107,255,0.18) 0%, transparent 70%);
  border-radius: 50%;
  top: -120px; right: -60px;
  pointer-events: none;
}

.cta-banner::after {
  content: '';
  position: absolute;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(74,107,255,0.1) 0%, transparent 70%);
  border-radius: 50%;
  bottom: -70px; left: -40px;
  pointer-events: none;
}

.cta-banner h2 { color: white; margin-bottom: 12px; font-size: 2.2rem; position: relative; z-index: 1; }
.cta-banner p { color: rgba(255,255,255,0.65); margin-bottom: 32px; font-size: 1.05rem; position: relative; z-index: 1; }
.cta-banner .btn-white {
  background: white;
  color: var(--dark);
  font-weight: 700;
  padding: 14px 32px;
  font-size: 16px;
  border-radius: 12px;
  position: relative;
  z-index: 1;
  transition: transform 0.2s, box-shadow 0.2s;
}
.cta-banner .btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.3); }
.cta-banner .note { font-size: 12.5px; color: rgba(255,255,255,0.45); margin-top: 14px; position: relative; z-index: 1; }

/* ─── Stats ─────────────────────────────────────────────── */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
  gap: 24px;
  margin-top: 48px;
}

.stat-item { text-align: center; }
.stat-number { font-size: 2.8rem; font-weight: 800; color: var(--blue); line-height: 1; }
.stat-label { font-size: 14px; color: var(--text-muted); margin-top: 8px; }

/* ─── Section headers ─────────────────────────────────────── */
.section-header { text-align: center; max-width: 640px; margin: 0 auto; }
.section-header .badge { margin-bottom: 14px; }
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; color: var(--text-muted); line-height: 1.7; }

/* ─── Footer ─────────────────────────────────────────────── */
.footer {
  background: var(--dark);
  color: rgba(255,255,255,0.6);
  padding: 60px 0 32px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 48px;
  margin-bottom: 48px;
}

.footer-brand .logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.footer-brand .logo svg { width: 32px; height: 32px; }
.footer-brand .logo span { font-size: 20px; font-weight: 700; color: white; }
.footer-brand p { font-size: 13.5px; line-height: 1.7; max-width: 280px; }
.footer-brand .legal { font-size: 12px; margin-top: 16px; line-height: 1.6; }

.footer-col h4 { font-size: 13px; font-weight: 600; color: white; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.footer-col ul { display: flex; flex-direction: column; gap: 8px; }
.footer-col li a { font-size: 13.5px; color: rgba(255,255,255,0.55); transition: color 0.2s; }
.footer-col li a:hover { color: white; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.08);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 12.5px;
}

.footer-bottom-links { display: flex; gap: 20px; }
.footer-bottom-links a { color: rgba(255,255,255,0.45); transition: color 0.2s; }
.footer-bottom-links a:hover { color: white; }

/* ─── Page header ─────────────────────────────────────────── */
.page-hero {
  background: linear-gradient(160deg, #0D1321 0%, #162040 55%, #1a2a5e 100%);
  color: var(--white);
  padding: 72px 0 60px;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  width: 500px; height: 500px;
  background: radial-gradient(circle, rgba(74,107,255,0.18) 0%, transparent 70%);
  top: -120px; right: -80px;
  pointer-events: none;
}

.page-hero .badge { margin-bottom: 16px; }
.page-hero h1 { font-size: clamp(2rem, 4vw, 2.8rem); margin-bottom: 14px; color: var(--white); }
.page-hero p { font-size: 1.1rem; color: rgba(255,255,255,0.65); max-width: 560px; margin: 0 auto; }

/* ─── Responsive ─────────────────────────────────────────── */
@media (max-width: 900px) {
  .hero-inner { grid-template-columns: 1fr; }
  .hero-visual { display: none; }
  .verifactu-section { grid-template-columns: 1fr; padding: 40px 28px; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 640px) {
  .section { padding: 56px 0; }
  .navbar-inner { gap: 12px; }
  .nav-links { display: none; }
  .footer-grid { grid-template-columns: 1fr; }
  .cta-banner { padding: 40px 24px; }
  .pricing-grid { grid-template-columns: 1fr; }
}
