/* =========================================================
   MERSAD ABOUT PAGE — MODERN REDESIGN
   ========================================================= */

.mersad-about {
  --about-bg: #050505;
  --about-surface: #0a0a0a;
  --about-surface-soft: #0d0d0d;
  --about-border: rgba(255, 255, 255, 0.09);
  --about-border-soft: rgba(255, 255, 255, 0.06);
  --about-text: #f5f5f2;
  --about-muted: #969693;
  --about-lime: #d3f200;

  min-height: 100vh;
  overflow: clip;

  color: var(--about-text);
  background: var(--about-bg);

  font-family: "Inter", Arial, sans-serif;
}

.mersad-about *,
.mersad-about *::before,
.mersad-about *::after {
  box-sizing: border-box;
}

.about-container {
  position: relative;
  z-index: 2;

  width: min(calc(100% - 48px), 1320px);

  margin-inline: auto;
}

.about-section-label {
  display: inline-flex;
  align-items: center;
  gap: 9px;

  color: var(--about-lime);

  font-size: 11px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.about-section-label::before {
  content: "";

  width: 7px;
  height: 7px;

  flex: 0 0 auto;

  border-radius: 50%;

  background: var(--about-lime);

  box-shadow: 0 0 14px rgba(211, 242, 0, 0.45);
}

.about-section-heading {
  max-width: 900px;
}

.about-section-heading h2 {
  margin: 18px 0 0;

  font-size: clamp(46px, 5vw, 76px);
  font-weight: 800;
  line-height: 0.98;
  letter-spacing: -0.065em;
}

/* =========================================================
   HERO
   ========================================================= */

.about-hero {
  position: relative;

  min-height: 680px;

  display: flex;
  align-items: center;

  overflow: hidden;

  padding: 150px 0 85px;

  border-bottom: 1px solid var(--about-border-soft);

  background:
    radial-gradient(
      circle at 16% 34%,
      rgba(211, 242, 0, 0.075),
      transparent 29%
    ),
    linear-gradient(180deg, #050505, #070707);
}

.about-hero__grid {
  position: absolute;
  inset: 0;

  opacity: 0.15;

  background-image:
    linear-gradient(
      rgba(255, 255, 255, 0.022) 1px,
      transparent 1px
    ),
    linear-gradient(
      90deg,
      rgba(255, 255, 255, 0.022) 1px,
      transparent 1px
    );

  background-size: 56px 56px;

  -webkit-mask-image:
    linear-gradient(
      90deg,
      black 0%,
      rgba(0, 0, 0, 0.7) 58%,
      transparent 100%
    );

  mask-image:
    linear-gradient(
      90deg,
      black 0%,
      rgba(0, 0, 0, 0.7) 58%,
      transparent 100%
    );
}

.about-hero__glow {
  position: absolute;
  top: 18%;
  right: 8%;

  width: 430px;
  height: 430px;

  pointer-events: none;

  border: 1px solid rgba(211, 242, 0, 0.07);
  border-radius: 50%;

  box-shadow:
    inset 0 0 90px rgba(211, 242, 0, 0.018),
    0 0 100px rgba(211, 242, 0, 0.018);
}

.about-hero__layout {
  display: grid;
  grid-template-columns:
    minmax(0, 1.16fr)
    minmax(380px, 0.84fr);

  gap: 80px;
  align-items: center;
}

.about-hero__content {
  min-width: 0;
}

.about-eyebrow {
  min-height: 38px;

  display: inline-flex;
  align-items: center;
  gap: 9px;

  padding: 0 15px;

  color: var(--about-lime);

  background: rgba(211, 242, 0, 0.035);

  border: 1px solid rgba(211, 242, 0, 0.18);
  border-radius: 999px;

  font-size: 10px;
  font-weight: 750;
  line-height: 1;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.about-eyebrow::before {
  content: "";

  width: 7px;
  height: 7px;

  border-radius: 50%;

  background: var(--about-lime);

  box-shadow: 0 0 14px rgba(211, 242, 0, 0.5);
}

.about-hero h1 {
  max-width: 900px;

  margin: 22px 0 0;

  font-size: clamp(57px, 6vw, 94px);
  font-weight: 830;
  line-height: 0.93;
  letter-spacing: -0.075em;
}

.about-hero h1 span {
  display: block;

  margin-top: 10px;

  color: var(--about-lime);
}

.about-hero__content > p {
  max-width: 760px;

  margin: 28px 0 0;

  color: var(--about-muted);

  font-size: 16px;
  font-weight: 400;
  line-height: 1.75;
}

.about-hero__actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 11px;

  margin-top: 32px;
}

.about-button {
  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  padding: 0 20px;

  border-radius: 11px;

  font-size: 12px;
  font-weight: 750;
  line-height: 1;

  text-decoration: none;

  transition:
    transform 220ms ease,
    border-color 220ms ease,
    background-color 220ms ease;
}

.about-button svg,
.about-cta__panel a svg {
  width: 18px;
  height: 18px;

  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.about-button:hover {
  transform: translateY(-3px);
}

.about-button--primary {
  color: #050505;
  background: var(--about-lime);
}

.about-button--secondary {
  color: var(--about-text);
  background: rgba(255, 255, 255, 0.025);

  border: 1px solid var(--about-border);
}

.about-button--secondary:hover {
  border-color: rgba(211, 242, 0, 0.25);
}

/* =========================================================
   HERO ORBIT
   ========================================================= */

.about-hero__visual {
  min-width: 0;
}

.about-orbit {
  position: relative;

  width: min(100%, 470px);

  aspect-ratio: 1;

  margin-left: auto;
}

.about-orbit__rings {
  position: absolute;
  inset: 0;
}

.about-orbit__rings span {
  position: absolute;

  border: 1px solid rgba(211, 242, 0, 0.09);
  border-radius: 50%;
}

.about-orbit__rings span:nth-child(1) {
  inset: 4%;

  animation: aboutOrbitRotate 25s linear infinite;
}

.about-orbit__rings span:nth-child(2) {
  inset: 18%;

  border-color: rgba(255, 255, 255, 0.07);

  animation: aboutOrbitRotateReverse 18s linear infinite;
}

.about-orbit__rings span:nth-child(3) {
  inset: 31%;

  border-color: rgba(211, 242, 0, 0.14);

  box-shadow: 0 0 60px rgba(211, 242, 0, 0.04);
}

.about-orbit__rings span:nth-child(1)::before,
.about-orbit__rings span:nth-child(2)::before {
  content: "";

  position: absolute;
  top: -4px;
  left: 50%;

  width: 8px;
  height: 8px;

  border-radius: 50%;

  background: var(--about-lime);
  box-shadow: 0 0 15px rgba(211, 242, 0, 0.7);
}

.about-orbit__center {
  position: absolute;
  top: 50%;
  left: 50%;

  width: 145px;
  height: 145px;

  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;

  border: 1px solid rgba(211, 242, 0, 0.18);
  border-radius: 50%;

  background:
    radial-gradient(
      circle,
      rgba(211, 242, 0, 0.08),
      #080808 70%
    );

  box-shadow:
    0 0 65px rgba(211, 242, 0, 0.06);

  transform: translate(-50%, -50%);
}

.about-orbit__center span {
  color: var(--about-lime);

  font-size: 10px;
  font-weight: 750;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.about-orbit__center strong {
  max-width: 100px;

  margin-top: 7px;

  font-size: 18px;
  line-height: 1.05;
  text-align: center;
}

.about-orbit__item {
  position: absolute;

  min-height: 34px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  padding: 0 12px;

  color: #d8d8d5;

  background: rgba(8, 8, 8, 0.88);

  border: 1px solid var(--about-border);
  border-radius: 999px;

  box-shadow: 0 15px 35px rgba(0, 0, 0, 0.3);

  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.about-orbit__item--one {
  top: 4%;
  left: 40%;
}

.about-orbit__item--two {
  top: 29%;
  right: -2%;
}

.about-orbit__item--three {
  right: 9%;
  bottom: 15%;
}

.about-orbit__item--four {
  bottom: 3%;
  left: 18%;
}

.about-orbit__item--five {
  top: 34%;
  left: -3%;
}

@keyframes aboutOrbitRotate {
  to {
    transform: rotate(360deg);
  }
}

@keyframes aboutOrbitRotateReverse {
  to {
    transform: rotate(-360deg);
  }
}

/* =========================================================
   MARQUEE
   ========================================================= */

.about-marquee {
  overflow: hidden;

  padding: 19px 0;

  border-bottom: 1px solid var(--about-border-soft);

  background: var(--about-lime);
}

.about-marquee__track {
  width: max-content;

  display: flex;

  animation: aboutMarqueeMove 34s linear infinite;
}

.about-marquee__group {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.about-marquee__group span {
  padding-inline: 25px;

  color: #050505;

  font-size: 12px;
  font-weight: 800;
  line-height: 1;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.about-marquee__group i {
  width: 6px;
  height: 6px;

  border-radius: 50%;

  background: #050505;
}

@keyframes aboutMarqueeMove {
  to {
    transform: translateX(-50%);
  }
}

/* =========================================================
   POSITIONING
   ========================================================= */

.about-positioning {
  padding: 120px 0;
}

.about-positioning__layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.88fr)
    minmax(0, 1.12fr);

  gap: 110px;
}

.about-positioning__copy {
  max-width: 750px;
}

.about-positioning__copy p {
  margin: 0 0 24px;

  color: var(--about-muted);

  font-size: 18px;
  line-height: 1.75;
}

.about-positioning__copy strong {
  display: block;

  margin-top: 36px;
  padding-top: 25px;

  color: var(--about-lime);

  border-top: 1px solid var(--about-border);

  font-size: clamp(22px, 2.2vw, 32px);
  line-height: 1.3;
  letter-spacing: -0.03em;
}

/* =========================================================
   PROBLEMS ACCORDION
   ========================================================= */

.about-problems {
  padding: 120px 0;

  background: #080808;

  border-top: 1px solid var(--about-border-soft);
  border-bottom: 1px solid var(--about-border-soft);
}

.about-problems__layout {
  display: grid;
  grid-template-columns:
    minmax(300px, 0.72fr)
    minmax(0, 1.28fr);

  gap: 90px;
}

.about-problems__intro {
  position: sticky;
  top: 135px;

  align-self: start;
}

.about-problems__intro h2 {
  margin: 18px 0 0;

  font-size: clamp(44px, 4.8vw, 70px);
  line-height: 0.98;
  letter-spacing: -0.06em;
}

.about-problems__intro p {
  max-width: 430px;

  margin: 24px 0 0;

  color: var(--about-muted);

  font-size: 14px;
  line-height: 1.7;
}

.about-accordion {
  border-top: 1px solid var(--about-border);
}

.about-accordion__item {
  border-bottom: 1px solid var(--about-border);
}

.about-accordion__item button {
  width: 100%;

  display: grid;
  grid-template-columns:
    55px
    minmax(0, 1fr)
    42px;

  gap: 18px;
  align-items: center;

  padding: 28px 0;

  color: var(--about-text);
  background: transparent;

  border: 0;

  text-align: left;

  cursor: pointer;
}

.about-accordion__number {
  color: var(--about-lime);

  font-size: 13px;
  font-weight: 750;
}

.about-accordion__title {
  font-size: clamp(24px, 2.4vw, 36px);
  font-weight: 720;
  line-height: 1.15;
  letter-spacing: -0.04em;
}

.about-accordion__icon {
  width: 38px;
  height: 38px;

  display: inline-flex;
  align-items: center;
  justify-content: center;

  color: var(--about-lime);

  border: 1px solid rgba(211, 242, 0, 0.18);
  border-radius: 50%;

  font-size: 25px;
  font-weight: 300;

  transition:
    transform 280ms ease,
    background-color 280ms ease,
    color 280ms ease;
}

.about-accordion__item.is-open
.about-accordion__icon {
  color: #050505;
  background: var(--about-lime);

  transform: rotate(45deg);
}

.about-accordion__answer {
  display: grid;
  grid-template-rows: 0fr;

  opacity: 0;

  transition:
    grid-template-rows 380ms cubic-bezier(0.22, 1, 0.36, 1),
    opacity 260ms ease;
}

.about-accordion__answer > div {
  overflow: hidden;
}

.about-accordion__answer p {
  max-width: 710px;

  margin: 0;
  padding:
    0
    60px
    30px
    73px;

  color: var(--about-muted);

  font-size: 15px;
  line-height: 1.75;
}

.about-accordion__item.is-open
.about-accordion__answer {
  grid-template-rows: 1fr;

  opacity: 1;
}

/* =========================================================
   PRINCIPLES
   ========================================================= */

.about-principles {
  padding: 120px 0;
}

.about-principles__top {
  display: grid;
  grid-template-columns:
    minmax(0, 1fr)
    minmax(300px, 0.55fr);

  gap: 80px;
  align-items: end;
}

.about-principles__top > p {
  margin: 0;

  color: var(--about-muted);

  font-size: 15px;
  line-height: 1.7;
}

.about-principles__list {
  margin-top: 55px;

  border-top: 1px solid var(--about-border);
}

.about-principles__list article {
  display: grid;
  grid-template-columns:
    80px
    minmax(0, 1fr)
    minmax(250px, 0.6fr);

  gap: 35px;
  align-items: center;

  padding: 30px 0;

  border-bottom: 1px solid var(--about-border);

  transition:
    padding-left 260ms ease,
    background-color 260ms ease;
}

.about-principles__list article:hover {
  padding-left: 14px;

  background:
    linear-gradient(
      90deg,
      rgba(211, 242, 0, 0.025),
      transparent
    );
}

.about-principles__list article > span {
  color: var(--about-lime);

  font-size: 14px;
  font-weight: 750;
}

.about-principles__list h3 {
  margin: 0;

  font-size: clamp(27px, 3vw, 44px);
  line-height: 1.08;
  letter-spacing: -0.05em;
}

.about-principles__list p {
  margin: 0;

  color: var(--about-muted);

  font-size: 13px;
  line-height: 1.65;
}

/* =========================================================
   METHOD
   ========================================================= */

.about-method {
  padding: 120px 0;

  background: #080808;

  border-top: 1px solid var(--about-border-soft);
  border-bottom: 1px solid var(--about-border-soft);
}

.about-method__timeline {
  position: relative;

  max-width: 1040px;

  margin: 65px auto 0;
}

.about-method__progress {
  position: absolute;
  top: 0;
  bottom: 0;
  left: 29px;

  width: 2px;

  overflow: hidden;

  background: rgba(255, 255, 255, 0.07);
}

.about-method__progress span {
  display: block;

  width: 100%;
  height: 0;

  background: var(--about-lime);

  box-shadow: 0 0 14px rgba(211, 242, 0, 0.55);
}

.about-method__timeline article {
  position: relative;

  display: grid;
  grid-template-columns:
    60px
    minmax(0, 1fr);

  gap: 40px;

  padding: 0 0 60px;
}

.about-method__number {
  position: relative;
  z-index: 2;

  width: 60px;
  height: 60px;

  display: flex;
  align-items: center;
  justify-content: center;

  color: var(--about-lime);
  background: #080808;

  border: 1px solid rgba(211, 242, 0, 0.22);
  border-radius: 50%;

  font-size: 12px;
  font-weight: 800;
}

.about-method__timeline article > div {
  padding: 4px 0 0;
}

.about-method__timeline h3 {
  margin: 0;

  font-size: clamp(35px, 4vw, 58px);
  line-height: 1;
  letter-spacing: -0.06em;
}

.about-method__timeline p {
  max-width: 670px;

  margin: 17px 0 0;

  color: var(--about-muted);

  font-size: 15px;
  line-height: 1.7;
}

/* =========================================================
   DIFFERENCE
   ========================================================= */

.about-difference {
  padding: 120px 0;
}

.about-difference__layout {
  display: grid;
  grid-template-columns:
    minmax(0, 0.9fr)
    minmax(0, 1.1fr);

  gap: 100px;
}

.about-difference__headline h2 {
  margin: 18px 0 0;

  font-size: clamp(46px, 5vw, 75px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.about-difference__content > p {
  max-width: 650px;

  margin: 0;

  color: var(--about-muted);

  font-size: 18px;
  line-height: 1.75;
}

.about-difference__tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;

  margin-top: 38px;
}

.about-difference__tags span {
  padding: 14px 17px;

  color: #ddddda;

  background: rgba(255, 255, 255, 0.018);

  border: 1px solid var(--about-border);
  border-radius: 999px;

  font-size: 12px;
  font-weight: 650;

  transition:
    color 220ms ease,
    background-color 220ms ease,
    border-color 220ms ease,
    transform 220ms ease;
}

.about-difference__tags span:hover {
  color: #050505;
  background: var(--about-lime);
  border-color: var(--about-lime);

  transform: translateY(-3px);
}

/* =========================================================
   ECOSYSTEM
   ========================================================= */

.about-ecosystem {
  padding: 0 0 120px;
}

.about-ecosystem__layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));

  border-top: 1px solid var(--about-border);
  border-bottom: 1px solid var(--about-border);
}

.about-ecosystem__column {
  padding: 45px 42px;
}

.about-ecosystem__column + .about-ecosystem__column {
  border-left: 1px solid var(--about-border);
}

.about-ecosystem__list {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;

  margin-top: 30px;
}

.about-ecosystem__list span {
  padding: 11px 13px;

  color: #d9d9d6;

  background: rgba(255, 255, 255, 0.018);

  border: 1px solid var(--about-border);
  border-radius: 9px;

  font-size: 12px;
  font-weight: 650;
}

/* =========================================================
   STATEMENT
   ========================================================= */

.about-statement {
  padding: 120px 0;

  border-top: 1px solid var(--about-border-soft);
}

.about-statement__content {
  max-width: 1150px;
}

.about-statement h2 {
  margin: 20px 0 0;

  font-size: clamp(53px, 6vw, 94px);
  line-height: 0.94;
  letter-spacing: -0.075em;
}

.about-statement p {
  max-width: 760px;

  margin: 30px 0 0;

  color: var(--about-muted);

  font-size: 18px;
  line-height: 1.75;
}

/* =========================================================
   CTA
   ========================================================= */

.about-cta {
  padding: 0 0 100px;
}

.about-cta__panel {
  position: relative;

  overflow: hidden;

  padding: 80px 60px;

  text-align: center;

  background:
    radial-gradient(
      circle at 50% 0%,
      rgba(211, 242, 0, 0.13),
      transparent 39%
    ),
    #0a0a0a;

  border: 1px solid rgba(211, 242, 0, 0.18);
  border-radius: 28px;
}

.about-cta__panel::after {
  content: "";

  position: absolute;
  right: -140px;
  bottom: -190px;

  width: 420px;
  height: 420px;

  border: 1px solid rgba(211, 242, 0, 0.06);
  border-radius: 50%;
}

.about-cta__panel h2 {
  position: relative;
  z-index: 2;

  max-width: 880px;

  margin: 20px auto 0;

  font-size: clamp(46px, 5.4vw, 78px);
  line-height: 0.98;
  letter-spacing: -0.065em;
}

.about-cta__panel a {
  position: relative;
  z-index: 2;

  min-height: 54px;

  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;

  margin-top: 32px;
  padding: 0 20px;

  color: #050505;
  background: var(--about-lime);

  border-radius: 11px;

  font-size: 12px;
  font-weight: 750;

  text-decoration: none;

  transition: transform 220ms ease;
}

.about-cta__panel a:hover {
  transform: translateY(-3px);
}

/* =========================================================
   SCROLL REVEAL
   ========================================================= */

.mersad-about [data-about-reveal] {
  opacity: 0;

  transform: translateY(36px);

  transition:
    opacity 780ms cubic-bezier(0.22, 1, 0.36, 1),
    transform 780ms cubic-bezier(0.22, 1, 0.36, 1);

  transition-delay:
    var(--about-delay, 0ms);
}

.mersad-about [data-about-reveal].is-visible {
  opacity: 1;

  transform: translateY(0);
}

/* =========================================================
   TABLET
   ========================================================= */

@media (max-width: 1050px) {

  .about-hero__layout {
    grid-template-columns: 1fr;
    gap: 65px;
  }

  .about-hero__visual {
    max-width: 520px;
  }

  .about-orbit {
    margin:
      0
      auto;
  }

  .about-positioning__layout,
  .about-problems__layout,
  .about-difference__layout {
    grid-template-columns: 1fr;
    gap: 55px;
  }

  .about-problems__intro {
    position: relative;
    top: auto;
  }

  .about-principles__top {
    grid-template-columns: 1fr;
    gap: 28px;
  }

  .about-principles__list article {
    grid-template-columns:
      60px
      minmax(0, 1fr);

    gap: 25px;
  }

  .about-principles__list p {
    grid-column: 2;
  }
}

/* =========================================================
   MOBILE
   ========================================================= */

@media (max-width: 700px) {

  .about-container {
    width: min(calc(100% - 24px), 560px);
  }

  .about-section-label {
    font-size: 9px;
  }

  .about-section-heading h2 {
    font-size: clamp(39px, 11vw, 53px);
  }

  .about-hero {
    min-height: auto;

    padding: 118px 0 60px;
  }

  .about-hero h1 {
    font-size: clamp(43px, 13vw, 62px);
  }

  .about-hero__content > p {
    font-size: 15px;
  }

  .about-hero__visual {
    display: none;
  }

  .about-marquee {
    padding: 16px 0;
  }

  .about-marquee__group span {
    padding-inline: 18px;

    font-size: 10px;
  }

  .about-positioning,
  .about-problems,
  .about-principles,
  .about-method,
  .about-difference,
  .about-statement {
    padding: 82px 0;
  }

  .about-positioning__copy p,
  .about-difference__content > p,
  .about-statement p {
    font-size: 15px;
  }

  .about-accordion__item button {
    grid-template-columns:
      34px
      minmax(0, 1fr)
      34px;

    gap: 10px;

    padding: 22px 0;
  }

  .about-accordion__number {
    font-size: 10px;
  }

  .about-accordion__title {
    font-size: 21px;
  }

  .about-accordion__icon {
    width: 32px;
    height: 32px;

    font-size: 21px;
  }

  .about-accordion__answer p {
    padding:
      0
      10px
      24px
      44px;

    font-size: 13px;
  }

  .about-principles__list article {
    grid-template-columns:
      42px
      minmax(0, 1fr);

    padding: 24px 0;
  }

  .about-principles__list h3 {
    font-size: 25px;
  }

  .about-principles__list p {
    font-size: 12px;
  }

  .about-method__timeline article {
    grid-template-columns:
      48px
      minmax(0, 1fr);

    gap: 22px;
  }

  .about-method__progress {
    left: 23px;
  }

  .about-method__number {
    width: 48px;
    height: 48px;

    font-size: 10px;
  }

  .about-method__timeline h3 {
    font-size: 35px;
  }

  .about-method__timeline p {
    font-size: 13px;
  }

  .about-ecosystem__layout {
    grid-template-columns: 1fr;
  }

  .about-ecosystem__column {
    padding:
      35px
      0;
  }

  .about-ecosystem__column + .about-ecosystem__column {
    border-top: 1px solid var(--about-border);
    border-left: 0;
  }

  .about-statement h2 {
    font-size: clamp(43px, 12vw, 60px);
  }

  .about-cta__panel {
    padding:
      52px
      20px;
  }

  .about-cta__panel h2 {
    font-size: clamp(39px, 11vw, 53px);
  }
}

/* =========================================================
   REDUCED MOTION
   ========================================================= */

@media (prefers-reduced-motion: reduce) {

  .about-marquee__track,
  .about-orbit__rings span {
    animation: none !important;
  }

  .mersad-about [data-about-reveal] {
    opacity: 1;

    transform: none;

    transition: none;
  }
}