:root {
  /* Swiss Modernism Palette */
  --bg: #ffffff;
  --bg-subtle: #f8f8f8;
  --text: #0a0a0a;
  --text-muted: #666666;
  --accent: #0284c7; /* Sky Blue, precise and forward */
  --accent-strong: #0369a1;
  --line: #0a0a0a;
  --line-subtle: rgba(10, 10, 10, 0.1);
  
  /* Typography - Modular Scale */
  --font-sans: "Outfit", ui-sans-serif, system-ui, -apple-system, sans-serif;
  --fs-xs: 12px;
  --fs-sm: 14px;
  --fs-base: 16px;
  --fs-md: 20px;
  --fs-lg: clamp(32px, 5vw, 48px);
  --fs-xl: clamp(48px, 8vw, 84px);
  
  /* Layout */
  --max-width: 1280px;
  --gutter: 24px;
  --radius: 0px; /* Sharp corners for Swiss style */
  --transition: 0.2s cubic-bezier(0.2, 0, 0, 1);
}

* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  background-color: var(--bg);
  color: var(--text);
}

body {
  font-family: var(--font-sans);
  line-height: 1.5;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  position: relative;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 9999;
  opacity: 0.04;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Base Elements */
a { color: inherit; text-decoration: none; transition: var(--transition); }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
img { display: block; max-width: 100%; filter: grayscale(1) contrast(1.1); transition: var(--transition); }
img:hover { filter: grayscale(0) contrast(1); }

.container {
  max-width: var(--max-width);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.section {
  padding: 120px 0;
  border-top: 1px solid var(--line-subtle);
}

.contact-info { grid-column: span 5; }
.contact-form-wrap { grid-column: 7 / span 6; }

/* Typography Helpers */
/* Profile CV — Swiss Legal Editorial */
main {
  counter-reset: cv-section;
}

.profile-cv-section {
  position: relative;
  padding: 52px 0;
  margin-bottom: 0;
  border-bottom: 1px solid var(--line-subtle);
  counter-increment: cv-section;
}

.profile-cv-section:last-child {
  border-bottom: none;
}

/* Decorative section counter — faint background art */
.profile-cv-section::before {
  content: counter(cv-section, decimal-leading-zero);
  position: absolute;
  right: -4px;
  top: 32px;
  font-size: 120px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: -8px;
  color: var(--text);
  opacity: 0.04;
  pointer-events: none;
  user-select: none;
  font-family: var(--font-sans);
}

.profile-cv-section h2 {
  font-size: 10px;
  text-transform: uppercase;
  letter-spacing: 0.22em;
  color: var(--accent);
  font-weight: 700;
  margin-bottom: 28px;
  border-bottom: none;
  padding-bottom: 0;
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Extending line to the right of heading */
.profile-cv-section h2::after {
  content: '';
  flex: 1;
  height: 1px;
  background: var(--line-subtle);
}

.cv-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.cv-item {
  display: grid;
  gap: 4px;
  padding: 16px 0;
  border-bottom: 1px solid rgba(10, 10, 10, 0.07);
  position: relative;
  transition: padding-left 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.cv-item:last-child {
  border-bottom: none;
  padding-bottom: 0;
}

/* Accent left border revealed on hover */
.cv-item::before {
  content: '';
  position: absolute;
  left: 0;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background: var(--accent);
  opacity: 0;
  transition: opacity 0.2s cubic-bezier(0.2, 0, 0, 1);
}

.cv-item:hover {
  padding-left: 14px;
}

.cv-item:hover::before {
  opacity: 1;
}

.cv-item__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text);
  line-height: 1.65;
}

.cv-item__desc {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.5;
  margin-top: 2px;
}

/* Utils */
.d2 { transition-delay: 0.2s; }
.d3 { transition-delay: 0.4s; }
.d4 { transition-delay: 0.6s; }
.d5 { transition-delay: 0.8s; }

/* Navbar */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  z-index: 1000;
  background: transparent;
  border-bottom: 1px solid transparent;
  height: 72px;
  transition: background 0.3s ease, border-color 0.3s ease;
  display: flex;
  align-items: center;
}

.nav-inner {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
  align-items: center;
}

.nav-logo {
  grid-column: span 3;
  font-weight: 800;
  font-size: var(--fs-md);
  letter-spacing: -0.02em;
}

.nav-links {
  grid-column: 6 / span 7;
  display: flex;
  justify-content: flex-end;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: var(--fs-sm);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.nav-links a:hover { color: var(--accent); }

.nav-back {
  grid-column: 4 / -1;
  justify-self: end;
  white-space: nowrap;
}

.profile-info { grid-column: span 6; }
.profile-media { grid-column: 8 / span 5; }

.navbar--scrolled {
  background: var(--bg);
  border-bottom-color: var(--line);
}

.navbar--transparent .nav-logo,
.navbar--transparent .nav-links a {
  color: #ffffff;
}

.navbar--transparent .nav-links a:hover { color: #7dd3fc; }

.navbar--transparent .nav-hamburger span { background: #ffffff; }

/* Hero */
.hero {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 72px;
  padding-bottom: 80px;
  position: relative;
  background: url("assets/hero.jpg") center center / cover no-repeat;
}

.hero > .container {
  position: relative;
  z-index: 1;
  width: 100%;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,10,10,0.72) 0%, rgba(22,59,102,0.60) 100%);
  pointer-events: none;
}

.hero-content {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}

.hero-eyebrow {
  grid-column: span 12;
  margin-bottom: 24px;
  color: rgba(255,255,255,0.75);
  position: relative;
}

.hero-title {
  grid-column: span 10;
  font-size: var(--fs-xl);
  line-height: 0.9;
  font-weight: 800;
  letter-spacing: -0.04em;
  text-transform: uppercase;
  color: #ffffff;
  position: relative;
}

.hero-title .text-accent {
  color: #7dd3fc;
}

.hero-sub {
  grid-column: 7 / span 5;
  margin-top: 40px;
  font-size: var(--fs-md);
  color: rgba(255,255,255,0.80);
  font-weight: 400;
  position: relative;
}

.hero-actions {
  grid-column: 7 / span 5;
  margin-top: 48px;
  display: flex;
  gap: 24px;
  position: relative;
}

.hero .btn-ghost {
  border-color: rgba(255,255,255,0.55);
  color: #ffffff;
}

.hero .btn-ghost:hover {
  background: rgba(255,255,255,0.12);
  border-color: #ffffff;
}

/* Buttons */
.btn-primary {
  background: var(--text);
  color: var(--bg);
  padding: 16px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--fs-sm);
}

.btn-primary:hover {
  background: var(--accent);
}

.btn-ghost {
  border: 1px solid var(--line);
  padding: 16px 32px;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  font-size: var(--fs-sm);
}

.btn-ghost:hover {
  background: var(--line);
  color: var(--bg);
}

/* Services */
.services-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--line);
}

.srv-card {
  grid-column: span 3;
  padding: 48px var(--gutter);
  border-right: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
  transition: var(--transition);
}

.srv-card:hover {
  background: var(--bg-subtle);
}

.srv-num {
  font-size: var(--fs-xs);
  font-weight: 800;
  margin-bottom: 24px;
  display: block;
}

.srv-card h3 {
  font-size: var(--fs-md);
  font-weight: 700;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.srv-card p {
  color: var(--text-muted);
  font-size: var(--fs-sm);
}

/* Stats */
.why-section {
  background: var(--text);
  color: var(--bg);
}

.why-layout {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}

.why-text {
  grid-column: span 6;
}

.stats-grid {
  grid-column: 7 / span 6;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-block {
  padding: 40px;
  border: 1px solid rgba(255,255,255,0.1);
}

.stat-num {
  font-size: var(--fs-lg);
  font-weight: 800;
  display: block;
}

/* Team */
.team-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  border-top: 1px solid var(--line-subtle);
  border-left: 1px solid var(--line-subtle);
}

.team-card {
  grid-column: span 3;
  background: var(--bg);
  padding: 24px;
  border-right: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
  transition: background var(--transition);
}

a.team-card {
  display: block;
  color: inherit;
  text-decoration: none;
}

/* Nuestro equipo: filas 4-5-4 (13 perfiles), grid propio de 20 columnas */
#team-grid-main { grid-template-columns: repeat(20, 1fr); }
#team-grid-main .team-card:nth-child(-n+4) { grid-column: span 5; }
#team-grid-main .team-card:nth-child(n+5):nth-child(-n+9) { grid-column: span 4; }
#team-grid-main .team-card:nth-child(n+10) { grid-column: span 5; }

.team-card:hover {
  background: var(--bg-subtle);
}

.team-card h4 {
  font-size: var(--fs-sm);
  letter-spacing: 0.08em;
  margin-bottom: 8px;
}

.team-media {
  aspect-ratio: 4 / 5;
  background: var(--bg-subtle);
  margin-bottom: 24px;
  overflow: hidden;
}

.team-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  filter: grayscale(1) saturate(0.75) contrast(1.08);
  transition: filter var(--transition), transform var(--transition);
}

.photo-interactive:hover img,
.photo-interactive:focus-visible img,
.team-media img:hover {
  filter: grayscale(0) saturate(1) contrast(1);
  transform: scale(1.03);
}

.team-header {
  margin-bottom: 48px;
}

.team-title {
  font-size: var(--fs-lg);
  text-transform: uppercase;
  font-weight: 800;
  margin-top: 16px;
}

.team-role {
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.02em;
}

.associates-wrap {
  margin-top: 56px;
}

.associates-label {
  opacity: 0.7;
}

.associates-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 1px;
  background: var(--line-subtle);
  border: 1px solid var(--line-subtle);
  margin-top: 20px;
}

.associate-card {
  background: var(--bg);
  padding: 24px;
  display: block;
  transition: background var(--transition);
}

.associate-card:hover {
  background: var(--bg-subtle);
}

.associate-card h5 {
  font-size: 12px;
  margin-bottom: 6px;
}

.associate-card p {
  font-size: 11px;
  color: var(--text-muted);
}

/* Footer */
.footer {
  padding: 80px 0;
  border-top: 2px solid var(--line);
}

.footer-grid {
  display: grid;
  grid-template-columns: repeat(12, 1fr);
  gap: var(--gutter);
}

.footer-brand { grid-column: span 4; }
.footer-col { grid-column: span 2; }

/* Reveal Animations */
.reveal, .reveal-up, .fade-in {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s cubic-bezier(0.2, 0, 0, 1), transform 0.6s cubic-bezier(0.2, 0, 0, 1);
}

.is-visible {
  opacity: 1;
  transform: translateY(0);
}

/* Hero always visible — no depende de JS */
.hero .reveal,
.hero .reveal-up,
.hero .fade-in {
  opacity: 1;
  transform: none;
}

/* Chatbot */
.chatbot-widget {
  position: fixed;
  bottom: 32px;
  right: 32px;
  z-index: 2000;
}

.chat-toggle {
  height: 52px;
  padding: 0 14px;
  background: #163b66;
  color: #ffffff;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.12);
  transition: transform var(--transition), background var(--transition), box-shadow var(--transition);
}

.chat-toggle:hover {
  transform: translateY(-1px);
  background: #0f2d52;
  box-shadow: 0 14px 30px rgba(0,0,0,0.28);
}

.chat-launch__icon {
  width: 28px;
  height: 28px;
  border-radius: 999px;
  background: rgba(255,255,255,0.14);
  display: grid;
  place-items: center;
  font-weight: 800;
  line-height: 1;
}

.chat-launch__label {
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
}

.chat-panel {
  position: absolute;
  bottom: 80px;
  right: 0;
  width: 420px;
  height: 560px;
  background: #ffffff;
  border: 1px solid rgba(10,10,10,0.12);
  border-radius: 16px;
  box-shadow: 0 30px 80px rgba(0,0,0,0.32);
  overflow: hidden;
  display: none;
  flex-direction: column;
}

.chatbot-widget.open .chat-panel { display: flex; }

/* Chat messages */
.chat-msg {
  padding: 16px;
  max-width: 84%;
  font-size: var(--fs-sm);
  white-space: pre-wrap;
  border-radius: 14px;
  line-height: 1.45;
}

.chat-msg--bot {
  background: #ffffff;
  color: var(--text);
  border: 1px solid rgba(10,10,10,0.08);
  border-left: 4px solid #163b66;
  align-self: flex-start;
}

.chat-msg--user {
  background: #163b66;
  color: #ffffff;
  align-self: flex-end;
}

.chat-msg--system {
  background: rgba(22, 59, 102, 0.06);
  color: #163b66;
  border: 1px dashed rgba(22, 59, 102, 0.28);
  align-self: stretch;
  max-width: 100%;
  font-size: 12px;
  letter-spacing: 0.02em;
  border-radius: 12px;
}

@keyframes chatPulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 1; }
}

.chat-msg--pending {
  font-style: italic;
  animation: chatPulse 1.2s ease-in-out infinite;
}

#send-msg[disabled],
#chat-input[disabled] {
  opacity: 0.6;
  cursor: not-allowed;
}

/* Chat internal layout (applied via JS) */
.chat-header {
  background: #163b66;
  color: #ffffff;
  padding: 16px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.chat-header__titles {
  display: grid;
  gap: 2px;
}

.chat-header__title {
  font-weight: 800;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 12px;
}

.chat-header__sub {
  font-size: 12px;
  opacity: 0.85;
}

.chat-close {
  width: 32px;
  height: 32px;
  display: grid;
  place-items: center;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  color: #ffffff;
  font-size: 18px;
}

.chat-close:hover {
  background: rgba(255,255,255,0.18);
}

.chat-body {
  flex: 1;
  padding: 16px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: linear-gradient(180deg, #f6f8fb 0%, #ffffff 100%);
}

.chat-inputbar {
  padding: 12px;
  border-top: 1px solid rgba(10,10,10,0.08);
  background: #ffffff;
  display: flex;
  gap: 10px;
  align-items: center;
}

#chat-input {
  flex: 1;
  padding: 12px 14px;
  border: 1px solid rgba(10,10,10,0.14);
  border-radius: 999px;
  font-family: inherit;
  background: #ffffff;
  outline: none;
}

#chat-input:focus {
  border-color: rgba(22, 59, 102, 0.55);
  box-shadow: 0 0 0 4px rgba(22, 59, 102, 0.12);
}

.chat-send {
  width: 42px;
  height: 42px;
  border-radius: 999px;
  background: #163b66;
  color: #ffffff;
  display: grid;
  place-items: center;
  font-weight: 800;
  border: 1px solid rgba(255,255,255,0.12);
}

.chat-send:hover {
  background: #0f2d52;
}

/* Intro blocks */
.chat-intro { display: grid; gap: 10px; }

.chat-banner {
  padding: 12px 12px;
  border-radius: 12px;
  background: rgba(255, 193, 7, 0.14);
  border: 1px solid rgba(255, 193, 7, 0.22);
  color: rgba(10,10,10,0.82);
}

.chat-prompts {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.chat-prompt {
  padding: 8px 10px;
  border-radius: 999px;
  border: 1px solid rgba(10,10,10,0.12);
  background: #ffffff;
  color: rgba(10,10,10,0.75);
  font-size: 12px;
}

.chat-prompt:hover {
  border-color: rgba(22, 59, 102, 0.35);
  color: #163b66;
}

/* Analysis card */
.chat-analysis {
  display: grid;
  gap: 12px;
}

.chat-analysis__title {
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 12px;
  color: rgba(10,10,10,0.85);
}

.chat-analysis__section {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(10,10,10,0.08);
  background: rgba(255,255,255,0.9);
}

.chat-analysis__label {
  font-size: 12px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-weight: 800;
  color: rgba(10,10,10,0.55);
  margin-bottom: 8px;
}

.chat-analysis__value { font-weight: 700; }

.chat-analysis__list {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 6px;
}

.chat-analysis__context { color: rgba(10,10,10,0.78); }

.chat-analysis__disclaimer {
  font-size: 12px;
  color: rgba(10,10,10,0.6);
  padding-top: 4px;
}

/* Concept Strip */
.concept-strip {
  border-top: 1px solid var(--line-subtle);
  border-bottom: 1px solid var(--line-subtle);
  padding: 48px 0;
}

.concept-inner {
  display: flex;
  align-items: center;
  gap: 48px;
}

.concept-item {
  display: flex;
  align-items: baseline;
  gap: 20px;
  flex: 1;
}

.concept-label {
  font-size: var(--fs-xs);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--accent);
}

.concept-text {
  font-size: clamp(20px, 2.5vw, 32px);
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: -0.02em;
  line-height: 1;
}

.concept-divider {
  width: 1px;
  height: 40px;
  background: var(--line-subtle);
  flex-shrink: 0;
}

/* Hamburger */
.nav-hamburger {
  display: none;
  grid-column: 12 / span 1;
  justify-self: end;
  flex-direction: column;
  gap: 5px;
  padding: 8px;
  background: none;
  border: none;
  cursor: pointer;
}

.nav-hamburger span {
  display: block;
  width: 22px;
  height: 2px;
  background: var(--text);
  transition: var(--transition);
}

.nav-hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-hamburger.open span:nth-child(2) { opacity: 0; }
.nav-hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Responsive */
@media (max-width: 1024px) {
  .hero-title { grid-column: span 12; }
  .hero-sub, .hero-actions { grid-column: span 12; }
  .srv-card { grid-column: span 6; }
  .team-card { grid-column: span 6; }
  .team-media { aspect-ratio: 1; }
  #team-grid-main .team-card:nth-child(n) { grid-column: span 10 !important; }
}

@media (max-width: 768px) {
  .nav-hamburger { display: flex; }

  .nav-links {
    display: none;
    position: fixed;
    top: 72px;
    left: 0;
    right: 0;
    background: var(--bg);
    border-bottom: 2px solid var(--line);
    flex-direction: column;
    padding: 32px var(--gutter);
    gap: 28px;
    z-index: 999;
  }

  .nav-links.open { display: flex; }

  .nav-links a {
    font-size: var(--fs-base);
  }

  .srv-card { grid-column: span 12; }
  .team-card { grid-column: span 12; }
  .why-text, .stats-grid { grid-column: span 12; }
  .contact-info, .contact-form-wrap { grid-column: span 12; }
  .profile-info, .profile-media { grid-column: span 12; }
  .nav-back { grid-column: 5 / -1; font-size: 10px !important; }
  #team-grid-main .team-card:nth-child(n) { grid-column: span 20 !important; }
  .associates-grid { grid-template-columns: 1fr; }

  .chat-panel {
    width: min(92vw, 420px);
    height: min(72vh, 560px);
    right: -8px;
  }
}

/* ══ PAGE LOADER ══ */
#page-loader {
  position: fixed;
  inset: 0;
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #ffffff;
  transition: opacity 0.5s ease, visibility 0.5s ease;
}

#page-loader.hidden {
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
}

.page-loader__box {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 12px;
}

.page-loader__wordmark {
  font-family: "Outfit", sans-serif;
  font-size: clamp(2.5rem, 8vw, 4rem);
  font-weight: 800;
  letter-spacing: 0.08em;
  color: #163b66;
  animation: loaderFadeUp 0.6s ease both;
}

.page-loader__tagline {
  font-family: "Outfit", sans-serif;
  font-size: clamp(0.7rem, 2vw, 0.85rem);
  font-weight: 400;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: #0284c7;
  animation: loaderFadeUp 0.6s ease 0.15s both;
}

.page-loader__bar {
  margin-top: 8px;
  width: min(180px, 45vw);
  height: 2px;
  background: rgba(2, 132, 199, 0.15);
  border-radius: 2px;
  overflow: hidden;
  animation: loaderFadeUp 0.6s ease 0.25s both;
}

.page-loader__bar-fill {
  height: 100%;
  width: 0;
  background: #0284c7;
  animation: loaderBar 1.6s ease 0.3s forwards;
}

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

@keyframes loaderBar {
  to { width: 100%; }
}
