:root {
  --ink: #171717;
  --soft-ink: #525866;
  --muted: #767b86;
  --line: #e5dfd3;
  --paper: #fbfaf7;
  --paper-strong: #f4efe7;
  --white: #ffffff;
  --sand: #efe7da;
  --blue: #1f4f5f;
  --green: #657a54;
  --terracotta: #b85c38;
  --gold: #d5a23f;
  --shadow: 0 24px 70px rgba(35, 31, 26, 0.11);
  --radius: 8px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background:
    radial-gradient(circle at top left, rgba(184, 92, 56, 0.1), transparent 34rem),
    linear-gradient(180deg, #fffdf9 0%, var(--paper) 46rem);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.55;
  overflow-x: hidden;
}

button,
input,
textarea {
  font: inherit;
}

a {
  color: inherit;
}

img {
  display: block;
  max-width: 100%;
}

h1,
h2,
h3,
p,
blockquote,
figure {
  margin: 0;
}

h1,
h2,
h3 {
  letter-spacing: 0;
  line-height: 1.02;
  overflow-wrap: break-word;
}

p,
small,
strong,
span,
figcaption,
a {
  overflow-wrap: break-word;
}

.site-header {
  position: sticky;
  z-index: 20;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px max(20px, calc((100vw - 1160px) / 2));
  background: rgba(251, 250, 247, 0.88);
  border-bottom: 1px solid rgba(229, 223, 211, 0.82);
  backdrop-filter: blur(18px);
}

.brand {
  display: inline-flex;
  min-width: 0;
  align-items: center;
  gap: 10px;
  text-decoration: none;
}

.brand span {
  display: grid;
  width: 36px;
  height: 36px;
  flex: 0 0 auto;
  place-items: center;
  color: var(--white);
  background: var(--ink);
  border-radius: var(--radius);
  font-size: 0.76rem;
  font-weight: 950;
}

.brand strong {
  min-width: 0;
  font-size: 0.98rem;
  white-space: nowrap;
}

.site-header nav {
  display: flex;
  min-width: 0;
  flex-wrap: nowrap;
  gap: 8px;
  justify-content: flex-end;
  overflow-x: auto;
  scrollbar-width: none;
}

.site-header nav::-webkit-scrollbar {
  display: none;
}

.site-header nav a {
  flex: 0 0 auto;
  border-radius: 999px;
  padding: 7px 11px;
  color: var(--soft-ink);
  text-decoration: none;
  font-size: 0.9rem;
  font-weight: 780;
  white-space: nowrap;
}

.site-header nav a:hover {
  color: var(--ink);
  background: var(--sand);
}

.hero,
.section,
.stats-strip,
.talk-band,
.contact,
footer {
  width: min(1160px, calc(100% - 36px));
  margin: 0 auto;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 0.95fr) minmax(430px, 0.78fr);
  gap: clamp(28px, 4.8vw, 66px);
  align-items: start;
  padding: clamp(34px, 4.5vw, 56px) 0 50px;
}

.hero__copy {
  display: grid;
  min-width: 0;
  gap: 20px;
}

.eyebrow {
  color: var(--terracotta);
  font-size: 0.75rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero h1 {
  max-width: 720px;
  font-size: clamp(2.3rem, 4.05vw, 4.05rem);
  text-wrap: normal;
}

.hero__lead {
  max-width: 700px;
  color: var(--soft-ink);
  font-size: clamp(1.02rem, 1.36vw, 1.14rem);
}

.hero__line {
  max-width: 780px;
  border-left: 4px solid var(--gold);
  padding-left: 16px;
  color: var(--blue);
  font-size: clamp(1.05rem, 1.5vw, 1.22rem);
  font-weight: 850;
}

.hero__actions,
.contact {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 16px;
  text-decoration: none;
  font-weight: 880;
}

.button--dark {
  color: var(--white);
  background: var(--ink);
  border-color: var(--ink);
}

.button--light {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.72);
}

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

.hero__photo {
  position: relative;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 6px);
  background: var(--white);
  box-shadow: var(--shadow);
  margin-top: clamp(38px, 7vw, 78px);
}

.hero__photo::before {
  position: absolute;
  z-index: 1;
  inset: 0;
  content: "";
  background: linear-gradient(180deg, transparent 52%, rgba(23, 23, 23, 0.34));
  pointer-events: none;
}

.hero__photo img {
  width: 100%;
  aspect-ratio: 4 / 4.4;
  object-fit: cover;
}

.hero__photo figcaption {
  position: absolute;
  z-index: 2;
  right: 14px;
  bottom: 14px;
  left: 14px;
  border-radius: var(--radius);
  padding: 10px 12px;
  color: var(--white);
  background: rgba(23, 23, 23, 0.56);
  font-size: 0.9rem;
  backdrop-filter: blur(12px);
}

.stats-strip {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 10px;
  margin-bottom: clamp(50px, 6vw, 78px);
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 14px 34px rgba(35, 31, 26, 0.05);
}

.stats-strip article {
  display: grid;
  min-width: 0;
  gap: 8px;
  border-radius: 6px;
  padding: 14px;
  background: #f4f1eb;
}

.stats-strip span {
  color: var(--blue);
  font-size: clamp(1.35rem, 2vw, 1.65rem);
  font-weight: 950;
  line-height: 1;
}

.stats-strip strong {
  font-size: 0.92rem;
}

.section {
  padding: clamp(42px, 6vw, 78px) 0;
}

.section__head,
.manifest__inner {
  display: grid;
  gap: 14px;
  max-width: 920px;
}

.section__head--wide {
  max-width: 1040px;
}

.section h2,
.manifest h2,
.talk-band h2,
.contact h2 {
  font-size: clamp(1.95rem, 3.95vw, 3.75rem);
  text-wrap: normal;
}

.section__head p,
.manifest__text p,
.talk-band p,
.contact p,
.life-grid p,
.idea-grid p,
.tecalis-grid p,
.timeline-item p {
  color: var(--soft-ink);
}

.manifest {
  width: min(1160px, calc(100% - 36px));
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(28px, 5vw, 58px);
  background: linear-gradient(135deg, var(--white) 0%, #f4efe7 100%);
  box-shadow: var(--shadow);
}

.manifest__text {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.manifest blockquote {
  border-left: 4px solid var(--terracotta);
  padding-left: 16px;
  color: var(--blue);
  font-size: clamp(1.25rem, 2vw, 1.75rem);
  font-weight: 860;
  line-height: 1.2;
}

.timeline-shell {
  position: relative;
  margin-top: 28px;
  --timeline-axis: clamp(170px, 18vw, 230px);
}

.timeline-progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: var(--timeline-axis);
  width: 3px;
  overflow: hidden;
  border-radius: 999px;
  background: #e8dfd2;
}

.timeline-progress span {
  display: block;
  width: 100%;
  height: calc(var(--timeline-progress, 0) * 1%);
  border-radius: inherit;
  background: linear-gradient(180deg, var(--terracotta), var(--blue));
}

.timeline {
  display: grid;
  gap: 18px;
}

.timeline-item {
  position: relative;
  display: grid;
  grid-template-columns: var(--timeline-axis) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: start;
}

.timeline-item::before {
  position: absolute;
  top: 24px;
  left: var(--timeline-axis);
  width: 15px;
  height: 15px;
  border: 4px solid var(--paper);
  border-radius: 999px;
  background: var(--gold);
  box-shadow: 0 0 0 1px var(--line);
  content: "";
  transform: translateX(-50%);
}

.timeline-item.is-active::before {
  background: var(--terracotta);
  box-shadow: 0 0 0 8px rgba(184, 92, 56, 0.14);
}

.timeline-item__year {
  position: sticky;
  top: 92px;
  display: block;
  max-width: calc(var(--timeline-axis) - 44px);
  padding-right: clamp(32px, 4.2vw, 52px);
  color: var(--terracotta);
  font-size: clamp(1.08rem, 1.55vw, 1.55rem);
  font-weight: 950;
  line-height: 1.04;
  text-align: right;
  overflow-wrap: anywhere;
}

.timeline-item > div {
  display: grid;
  min-width: 0;
  gap: 12px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: clamp(18px, 3vw, 28px);
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 12px 30px rgba(35, 31, 26, 0.05);
}

.timeline-item h3 {
  font-size: clamp(1.35rem, 2.4vw, 2.15rem);
}

.timeline-item small {
  color: var(--blue);
  font-size: 1rem;
  font-weight: 850;
}

.timeline-logo {
  width: 118px;
  height: 42px;
  border-radius: 6px;
  object-fit: contain;
  background: #050505;
}

.media-trigger {
  width: fit-content;
  min-height: 42px;
  border: 1px solid rgba(31, 79, 95, 0.2);
  border-radius: var(--radius);
  padding: 0 14px;
  color: var(--blue);
  background: #eef6f7;
  font-weight: 880;
  cursor: pointer;
}

.timeline-item--final > div {
  background: linear-gradient(135deg, #172b30, #1f4f5f);
}

.timeline-item--final h3,
.timeline-item--final p,
.timeline-item--final small {
  color: var(--white);
}

.tecalis-grid,
.idea-grid,
.life-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 12px;
  margin-top: 28px;
}

.tecalis .section__head,
.life .section__head {
  max-width: none;
}

.enterprise-impact {
  display: grid;
  grid-template-columns: minmax(220px, 0.45fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 46px);
  align-items: start;
  margin-top: 28px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(22px, 4vw, 34px);
  background: linear-gradient(135deg, #172b30, #1f4f5f);
  box-shadow: var(--shadow);
}

.enterprise-impact h3 {
  margin-top: 10px;
  color: var(--white);
  font-size: clamp(1.35rem, 2.55vw, 2.35rem);
}

.enterprise-impact p {
  color: rgba(255, 255, 255, 0.82);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
}

.logo-carousel {
  position: relative;
  overflow: hidden;
  margin-top: 14px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: 0 10px 26px rgba(35, 31, 26, 0.04);
}

.logo-carousel::before,
.logo-carousel::after {
  position: absolute;
  z-index: 2;
  top: 0;
  bottom: 0;
  width: 64px;
  content: "";
  pointer-events: none;
}

.logo-carousel::before {
  left: 0;
  background: linear-gradient(90deg, var(--white), transparent);
}

.logo-carousel::after {
  right: 0;
  background: linear-gradient(270deg, var(--white), transparent);
}

.logo-track {
  display: flex;
  width: max-content;
  gap: 10px;
  padding: 14px;
  animation: logoRail 34s linear infinite;
}

.logo-track span {
  display: inline-flex;
  min-width: 168px;
  min-height: 64px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0 18px;
  color: var(--ink);
  background: #f8f6f0;
  font-weight: 900;
  text-align: center;
  white-space: nowrap;
}

.client-logo i {
  display: grid;
  width: 34px;
  height: 34px;
  flex: 0 0 auto;
  place-items: center;
  border-radius: 9px;
  color: var(--white);
  background: var(--ink);
  font-style: normal;
  font-size: 0.92rem;
  font-weight: 950;
  line-height: 1;
}

.client-logo b {
  font-weight: 950;
}

.client-logo--santander i { background: #e40000; }
.client-logo--masorange i { background: linear-gradient(135deg, #ff7900, #e6007e); }
.client-logo--telefonica i { background: #0066ff; }
.client-logo--orange i { background: #ff7900; }
.client-logo--orange i::before {
  display: block;
  width: 18px;
  height: 18px;
  background: #fff;
  content: "";
}
.client-logo--ibercaja i { background: #006f3c; }
.client-logo--renfe i { background: #6f1d77; }
.client-logo--habitissimo i { background: #00a878; text-transform: lowercase; }
.client-logo--dominion i { background: #111827; }
.client-logo--bip i { background: #0f766e; }
.client-logo--asturias i { background: #005eb8; }
}

.founded-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.56fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  margin-top: 16px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 8px);
  padding: clamp(20px, 4vw, 32px);
  background: #fbf4e8;
}

.founded-grid h3 {
  margin-top: 8px;
  font-size: clamp(1.28rem, 2.2vw, 2rem);
}

.founded-grid ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.founded-grid li {
  border: 1px solid rgba(184, 92, 56, 0.18);
  border-radius: var(--radius);
  padding: 12px;
  background: rgba(255, 255, 255, 0.72);
  font-weight: 880;
}

.tecalis-grid article,
.idea-grid article,
.life-grid article {
  display: grid;
  min-width: 0;
  gap: 10px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 18px;
  background: var(--white);
  box-shadow: 0 10px 26px rgba(35, 31, 26, 0.04);
}

.tecalis-grid span,
.life-grid span {
  width: fit-content;
  border-radius: 999px;
  padding: 5px 9px;
  color: var(--white);
  background: var(--blue);
  font-size: 0.72rem;
  font-weight: 920;
}

.tecalis-grid h3,
.idea-grid h3,
.life-grid h3 {
  font-size: 1.14rem;
}

.proof-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 0.74fr);
  gap: 12px;
  margin-top: 16px;
}

.proof-grid figure {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.proof-grid img {
  width: 100%;
  height: clamp(260px, 30vw, 360px);
  padding: 10px;
  object-fit: contain;
}

.proof-grid figcaption {
  padding: 12px;
  color: var(--soft-ink);
  font-size: 0.92rem;
  font-weight: 780;
}

.proof-feature {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1fr);
  gap: clamp(18px, 4vw, 44px);
  align-items: center;
  margin-top: 18px;
  border: 1px solid var(--line);
  border-radius: calc(var(--radius) + 10px);
  padding: clamp(18px, 4vw, 34px);
  background: linear-gradient(135deg, var(--white), #f4efe7);
  box-shadow: 0 16px 42px rgba(35, 31, 26, 0.06);
}

.proof-feature__media {
  display: grid;
  grid-template-columns: 1.1fr 0.86fr;
  gap: 10px;
  align-items: stretch;
}

.proof-thumb {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 0;
  background: var(--white);
  cursor: zoom-in;
}

.proof-thumb img {
  width: 100%;
  height: 260px;
  object-fit: contain;
  padding: 10px;
}

.proof-feature__copy {
  display: grid;
  gap: 12px;
}

.proof-feature__copy h3 {
  font-size: clamp(1.55rem, 2.8vw, 2.75rem);
}

.proof-feature__copy p:last-child {
  color: var(--soft-ink);
  font-size: 1.05rem;
}

.ideas {
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  padding-top: clamp(38px, 5vw, 64px);
  padding-bottom: clamp(38px, 5vw, 64px);
}

.idea-grid {
  grid-template-columns: repeat(2, minmax(0, 1fr));
}

.idea-grid article {
  border-left: 4px solid var(--gold);
}

.life {
  width: 100%;
  border-top: 1px solid #d8e3dd;
  border-bottom: 1px solid #d8e3dd;
  padding: clamp(48px, 6vw, 78px) max(18px, calc((100vw - 1160px) / 2));
  background:
    linear-gradient(135deg, rgba(18, 66, 76, 0.9), rgba(80, 110, 72, 0.86)),
    radial-gradient(circle at 82% 16%, rgba(255, 255, 255, 0.2), transparent 24rem),
    url("/assets/galicia-cies-background.jpg");
  background-position: center;
  background-size: cover;
  background-attachment: fixed;
}

.life .eyebrow,
.life h2,
.life .section__head p,
.life-intro p {
  color: var(--white);
}

.life .section__head p,
.life-intro p {
  color: rgba(255, 255, 255, 0.78);
}

.life-intro {
  margin-top: 22px;
  max-width: 980px;
  border-left: 4px solid var(--gold);
  padding-left: 18px;
}

.life-grid article {
  align-content: start;
  min-height: 0;
  background: rgba(255, 255, 255, 0.94);
}

.life-grid p {
  color: var(--soft-ink);
}

.life-grid a {
  width: fit-content;
  color: var(--blue);
  font-weight: 850;
}

.talk-band {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  border: 1px solid #d7e4de;
  border-radius: var(--radius);
  padding: clamp(22px, 4vw, 34px);
  margin-top: clamp(24px, 3.6vw, 38px);
  background: #edf5f1;
}

.talk-band div {
  display: grid;
  min-width: 0;
  gap: 10px;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 20px;
  align-items: center;
  width: min(1160px, calc(100% - 36px));
  border: 1px solid rgba(31, 79, 95, 0.18);
  border-radius: calc(var(--radius) + 12px);
  padding: clamp(28px, 5vw, 52px);
  margin: clamp(26px, 4vw, 46px) auto 0;
  color: var(--white);
  background:
    linear-gradient(135deg, rgba(23, 23, 23, 0.95), rgba(31, 79, 95, 0.94)),
    radial-gradient(circle at 92% 10%, rgba(213, 162, 63, 0.34), transparent 24rem);
  box-shadow: var(--shadow);
}

.contact div {
  display: grid;
  min-width: 0;
  gap: 12px;
}

.contact .eyebrow,
.contact h2,
.contact p,
.contact .closing-line {
  color: var(--white);
}

.button--linkedin {
  gap: 10px;
}

.button--linkedin svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

.closing-line {
  grid-column: 1 / -1;
  color: var(--blue);
  font-size: clamp(1.15rem, 2.4vw, 1.9rem);
  font-weight: 880;
}

footer {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  border-top: 1px solid var(--line);
  padding: 22px 0 32px;
  color: var(--soft-ink);
  font-size: 0.92rem;
}

footer a {
  font-weight: 850;
}

.image-modal {
  position: fixed;
  z-index: 100;
  inset: 0;
  display: none;
  place-items: center;
  padding: 24px;
  background: rgba(23, 23, 23, 0.78);
}

.image-modal.is-open {
  display: grid;
}

.image-modal figure {
  width: min(980px, 100%);
  max-height: calc(100vh - 80px);
  overflow: hidden;
  border-radius: calc(var(--radius) + 10px);
  background: var(--white);
  box-shadow: 0 34px 90px rgba(0, 0, 0, 0.34);
}

.image-modal img {
  width: 100%;
  max-height: calc(100vh - 140px);
  object-fit: contain;
  background: #0b0b0b;
}

.image-modal figcaption {
  padding: 12px 14px;
  color: var(--ink);
  font-weight: 850;
}

.image-modal__close {
  position: fixed;
  top: 18px;
  right: 18px;
  display: grid;
  width: 44px;
  height: 44px;
  place-items: center;
  border: 0;
  border-radius: 999px;
  color: var(--white);
  background: rgba(23, 23, 23, 0.74);
  font-size: 1.5rem;
  cursor: pointer;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@keyframes logoRail {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 980px) {
  .site-header {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .site-header nav {
    width: 100%;
    flex-wrap: wrap;
    justify-content: flex-start;
    overflow-x: visible;
  }

  .hero,
  .proof-feature,
  .proof-grid,
  .enterprise-impact,
  .founded-grid,
  .talk-band,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero__photo {
    max-width: 640px;
    margin-top: 0;
  }

  .stats-strip,
  .founded-grid ul,
  .tecalis-grid,
  .life-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .manifest__text {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 660px) {
  .hero,
  .section,
  .stats-strip,
  .talk-band,
  footer {
    width: min(100% - 24px, 1160px);
  }

  .site-header {
    padding: 14px 12px;
  }

  .site-header nav {
    gap: 6px;
  }

  .site-header nav a {
    padding: 6px 9px;
    font-size: 0.84rem;
  }

  .brand strong {
    white-space: normal;
  }

.hero h1 {
    font-size: clamp(2.05rem, 9.2vw, 3.2rem);
  }

  .hero__photo img {
    aspect-ratio: 1 / 1.03;
  }

  .stats-strip,
  .proof-feature__media,
  .founded-grid ul,
  .tecalis-grid,
  .idea-grid,
  .life-grid {
    grid-template-columns: 1fr;
  }

  .timeline-progress {
    left: 11px;
  }

  .timeline-item {
    grid-template-columns: 1fr;
    padding-left: 32px;
  }

  .timeline-item::before {
    left: 11px;
  }

  .timeline-item__year {
    position: static;
    padding-right: 0;
    text-align: left;
  }

  .timeline-item > div {
    padding: 18px;
  }

  .proof-grid img,
  .proof-thumb img {
    height: 240px;
  }

  .enterprise-impact,
  .life {
    padding-right: 18px;
    padding-left: 18px;
    background-attachment: scroll;
  }

  .logo-track {
    animation-duration: 24s;
  }

  .logo-track span {
    min-width: 132px;
  }

  .button {
    width: 100%;
  }

  footer {
    align-items: flex-start;
    flex-direction: column;
  }
}

@media (prefers-reduced-motion: reduce) {
  *,
  *::before,
  *::after {
    scroll-behavior: auto !important;
    transition-duration: 1ms !important;
    animation-duration: 1ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

  .logo-track {
    animation: none;
  }
}
