/* ============================================================
   Saisalabs — independent software & AI studio
   Noir / editorial. Fraunces + Instrument Sans + IBM Plex Mono.
   ============================================================ */

:root {
  --bg:        #1A171D;
  --bg-2:      #221E26;
  --bg-3:      #28232C;
  --line:      #302B36;
  --line-2:    #3C3644;
  --ink:       #FAFAF9;
  --muted:     #ACABB4;
  --faint:     #8D8C96;
  --gold:      #E9C57E;
  --gold-soft: rgba(233, 197, 126, 0.14);
  --warm:      #E8823C;

  --cream:       #FAF3E8;
  --cream-ink:   #221A12;
  --cream-muted: #5F5548;
  --cream-line:  #E4D8C4;
  --cream-amber: #96601A;

  --serif: "Fraunces", Georgia, "Times New Roman", serif;
  --sans:  "Instrument Sans", ui-sans-serif, system-ui, sans-serif;
  --mono:  "IBM Plex Mono", ui-monospace, "SFMono-Regular", monospace;

  --maxw: 1080px;
  --pad:  clamp(20px, 5vw, 44px);
  --r:    12px;
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
}

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

html { scroll-behavior: smooth; }

body {
  background:
    linear-gradient(178deg, #221D26 0%, #18151C 34%, #1B171D 62%, #241C22 100%)
    var(--bg);
  color: var(--ink);
  font-family: var(--sans);
  font-size: 16px;
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
  position: relative;
}

/* Atmosphere: a soft gold aurora + fine grain, both very restrained */
body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    radial-gradient(62vw 52vh at 88% -8%, rgba(233,197,126,0.16), transparent 62%),
    radial-gradient(50vw 42vh at 4% 6%, rgba(233,197,126,0.07), transparent 55%),
    radial-gradient(55vw 45vh at 10% 104%, rgba(232,130,60,0.07), transparent 58%);
}
body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  opacity: 0.035;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='140' height='140'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='2'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
}

main, .nav, .footer { position: relative; z-index: 1; }

::selection { background: var(--gold); color: #0E0E11; }

a { color: inherit; text-decoration: none; }

.skip {
  position: absolute;
  left: -999px;
  top: 0;
  background: var(--gold);
  color: #0E0E11;
  padding: 10px 16px;
  border-radius: var(--r);
  z-index: 100;
  font-family: var(--mono);
  font-size: 0.8rem;
}
.skip:focus { left: 16px; top: 16px; }

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: saturate(140%) blur(12px);
  background: rgba(26, 23, 29, 0.6);
  border-bottom: 1px solid transparent;
  transition: border-color 0.4s var(--ease), background 0.4s var(--ease);
}
.nav.scrolled {
  border-bottom-color: var(--line);
  background: rgba(26, 23, 29, 0.82);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 18px var(--pad);
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.brand {
  font-family: var(--serif);
  font-size: 1.28rem;
  font-weight: 500;
  letter-spacing: -0.01em;
  color: var(--ink);
}
.brand .dot { color: var(--gold); }
.nav-links {
  display: flex;
  gap: clamp(14px, 3vw, 30px);
  font-size: 0.9rem;
  color: var(--muted);
}
.nav-links a { position: relative; transition: color 0.25s var(--ease); }
.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 1px;
  background: var(--gold);
  transition: width 0.3s var(--ease);
}
.nav-links a:hover { color: var(--ink); }
.nav-links a:hover::after { width: 100%; }

/* Language dropdown */
.lang-menu { position: relative; margin-left: clamp(10px, 2vw, 22px); }
.lang-btn {
  display: flex;
  align-items: center;
  gap: 7px;
  background: none;
  border: 0;
  cursor: pointer;
  font-family: var(--sans);
  font-size: 0.9rem;
  color: var(--muted);
  padding: 6px 2px;
  transition: color 0.25s var(--ease);
}
.lang-btn:hover { color: var(--ink); }
.lang-chev { transition: transform 0.25s var(--ease); }
.lang-menu.open .lang-chev { transform: rotate(180deg); }
.lang-list {
  position: absolute;
  right: 0;
  top: calc(100% + 12px);
  min-width: 132px;
  list-style: none;
  background: rgba(32, 29, 38, 0.96);
  backdrop-filter: blur(14px);
  border: 1px solid var(--line-2);
  border-radius: 10px;
  padding: 6px;
  opacity: 0;
  transform: translateY(-6px);
  pointer-events: none;
  transition: opacity 0.22s var(--ease), transform 0.22s var(--ease);
  z-index: 70;
}
.lang-menu.open .lang-list {
  opacity: 1;
  transform: none;
  pointer-events: auto;
}
.lang-list a {
  display: block;
  padding: 8px 12px;
  border-radius: 7px;
  font-size: 0.9rem;
  color: var(--muted);
  transition: color 0.2s var(--ease), background 0.2s var(--ease);
}
.lang-list a:hover { color: var(--ink); background: rgba(250, 250, 249, 0.05); }
.lang-list a.lang-on { color: var(--gold); }

/* ---------- Layout ---------- */
.section {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(56px, 9vw, 104px) var(--pad);
  border-top: 1px solid var(--line);
}
.label {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 28px;
}

/* ---------- Hero ---------- */
.hero {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: clamp(60px, 11vw, 132px) var(--pad) clamp(40px, 7vw, 72px);
  position: relative;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background-image: radial-gradient(circle at center, rgba(255,255,255,0.045) 1px, transparent 1px);
  background-size: 26px 26px;
  -webkit-mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
  mask-image: linear-gradient(to bottom, #000 0%, transparent 72%);
  opacity: 0.6;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 40px;
  align-items: start;
}
.eyebrow {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 22px;
  min-height: 1.2em;
  transition: opacity 0.4s var(--ease);
}
.eyebrow.fade { opacity: 0; }

.hero-title {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(2.6rem, 6.2vw, 4.6rem);
  line-height: 1.04;
  letter-spacing: -0.02em;
  max-width: 16ch;
  color: var(--ink);
}
.hero-title em {
  font-style: italic;
  font-weight: 500;
  color: var(--gold);
}
.hero-sub {
  margin-top: 24px;
  font-size: clamp(1rem, 1.6vw, 1.14rem);
  color: var(--muted);
  max-width: 46ch;
  line-height: 1.6;
}
.hero-actions {
  margin-top: 34px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.mono-note {
  margin-top: 30px;
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--faint);
  letter-spacing: 0.01em;
}
.mono-note .slash { color: var(--gold); }

.hero-aside { align-self: stretch; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-flex;
  align-items: center;
  font-size: 0.92rem;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--r);
  border: 1px solid transparent;
  transition: transform 0.2s var(--ease), background 0.25s var(--ease),
              border-color 0.25s var(--ease), color 0.25s var(--ease);
}
.btn-gold {
  background: var(--gold);
  color: #0E0E11;
}
.btn-gold:hover {
  transform: translateY(-2px);
  background: #F0D394;
}
.btn-ghost {
  border-color: var(--line-2);
  color: var(--ink);
}
.btn-ghost:hover {
  border-color: var(--gold);
  color: var(--gold);
  transform: translateY(-2px);
}

/* ---------- Section heads ---------- */
.section-head {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px clamp(30px, 6vw, 72px);
  align-items: end;
  margin-bottom: 48px;
}
h2 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: clamp(1.9rem, 4vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.02em;
  color: var(--ink);
}
.lead {
  color: var(--muted);
  font-size: clamp(1rem, 1.4vw, 1.08rem);
  line-height: 1.65;
  max-width: 52ch;
}

/* ---------- Cards (shared) ---------- */
.card {
  background: var(--bg-2);
  border: 1px solid var(--line);
  border-radius: var(--r);
  padding: 24px 24px 26px;
  transition: transform 0.28s var(--ease), border-color 0.28s var(--ease),
              background 0.28s var(--ease);
}
.card:hover {
  transform: translateY(-3px);
  border-color: var(--gold);
  background: #191920;
}

/* ---------- Approach / principles ---------- */
.principles {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.principle .num {
  font-family: var(--mono);
  font-size: 0.78rem;
  color: var(--gold);
  display: block;
  margin-bottom: 16px;
}
.principle h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.22rem;
  margin-bottom: 8px;
  color: var(--ink);
}
.principle p { color: var(--muted); font-size: 0.94rem; line-height: 1.55; }

/* ---------- Product ---------- */
.product {
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(30px, 6vw, 68px);
  align-items: center;
}
.kicker {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--faint);
  margin-bottom: 16px;
}
.product-title { display: flex; align-items: center; gap: 14px; margin-bottom: 18px; }
.mise-logo {
  width: 40px; height: 40px;
  border-radius: 10px;
  display: block;
  object-fit: cover;
  flex: none;
}
.product-copy h2 { font-size: clamp(1.7rem, 3vw, 2.3rem); }
.tags {
  list-style: none;
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 22px 0 24px;
}
.tags li {
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--muted);
  border: 1px solid var(--line-2);
  padding: 5px 12px;
  border-radius: 999px;
}
.arrow-link {
  font-family: var(--mono);
  font-size: 0.84rem;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap 0.25s var(--ease);
}
.arrow-link:hover { gap: 11px; }

/* Phone mock */
.product-visual { display: flex; justify-content: center; }
.phone {
  width: 232px;
  background: #1B1B1F;
  border: 1px solid var(--line-2);
  border-radius: 34px;
  padding: 9px;
  box-shadow: 0 30px 60px -30px rgba(0,0,0,0.7);
  transition: transform 0.4s var(--ease);
}
.phone:hover { transform: translateY(-4px) rotate(-1.2deg); }
.phone-screen {
  background: #FBF3EA;
  border-radius: 26px;
  overflow: hidden;
}
.phone-screen img {
  display: block;
  width: 100%;
  height: auto;
}

/* ---------- Ventures ---------- */
.ventures {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.venture { display: flex; flex-direction: column; }
.venture-head { display: flex; align-items: center; gap: 10px; margin-bottom: 10px; }
.venture-head h3 {
  font-family: var(--serif);
  font-weight: 500;
  font-size: 1.4rem;
  color: var(--ink);
}
.pill {
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.06em;
  color: var(--faint);
  border: 1px solid var(--line-2);
  padding: 3px 9px;
  border-radius: 999px;
}
.venture > p { color: var(--muted); font-size: 0.94rem; line-height: 1.55; margin-bottom: 18px; }
.venture .arrow-link { margin-top: auto; }

/* Daily8 editorial card (real product asset) */
.venture-shot {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 12px;
  border: 1px solid var(--line-2);
  margin-bottom: 18px;
}

/* Byzzle marks */
.byzzle-marks { display: flex; flex-wrap: wrap; gap: 7px; margin-bottom: 18px; }
.byzzle-marks span {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--muted);
  background: var(--bg-3);
  border: 1px solid var(--line);
  padding: 5px 10px;
  border-radius: 6px;
}

/* ---------- Contact ---------- */
.contact { max-width: 640px; }
.contact h2 { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 22px; }
.contact .lead { margin-bottom: 30px; font-size: clamp(1.02rem, 1.5vw, 1.16rem); }
.contact .lead a { color: var(--gold); border-bottom: 1px solid var(--gold-soft); transition: border-color 0.25s var(--ease); }
.contact .lead a:hover { border-color: var(--gold); }
.contact-actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
.contact-mail { margin-top: 0; }

/* ---------- Footer ---------- */
.footer {
  border-top: 1px solid var(--line);
  margin-top: 20px;
}
.footer-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 34px var(--pad) 44px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}
.footer-meta {
  display: flex;
  gap: clamp(12px, 3vw, 26px);
  font-family: var(--mono);
  font-size: 0.76rem;
  color: var(--faint);
  flex-wrap: wrap;
}
.footer-meta a { transition: color 0.25s var(--ease); }
.footer-meta a:hover { color: var(--gold); }

/* ---------- Reveal on scroll ---------- */
.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 0.7s var(--ease), transform 0.7s var(--ease);
}
.reveal.is-visible { opacity: 1; transform: none; }

/* Hero load-in (staggered) */
.hero-copy > * {
  opacity: 0;
  transform: translateY(16px);
  animation: rise 0.8s var(--ease) forwards;
}
.hero-copy > *:nth-child(1) { animation-delay: 0.05s; }
.hero-copy > *:nth-child(2) { animation-delay: 0.15s; }
.hero-copy > *:nth-child(3) { animation-delay: 0.25s; }
.hero-copy > *:nth-child(4) { animation-delay: 0.35s; }
.hero-copy > *:nth-child(5) { animation-delay: 0.45s; }
.hero-aside { opacity: 0; animation: fade 1s var(--ease) 0.6s forwards; }
@keyframes rise { to { opacity: 1; transform: none; } }
@keyframes fade { to { opacity: 1; } }

/* ---------- Responsive ---------- */
@media (max-width: 860px) {
  .hero-grid { grid-template-columns: 1fr; }
  .hero-aside { display: none; }
  .section-head { grid-template-columns: 1fr; }
  .principles { grid-template-columns: 1fr; }
  .product { grid-template-columns: 1fr; }
  .product-visual { justify-content: flex-start; }
  .ventures { grid-template-columns: 1fr; }
}
@media (max-width: 560px) {
  .nav-links { gap: 14px; font-size: 0.82rem; }
  .nav-links a:nth-child(1) { display: none; }
  .footer-inner { flex-direction: column; align-items: flex-start; }
}

/* ---------- Warm spread (cream section, full-bleed) ---------- */
.section--warm {
  background: var(--cream);
  box-shadow: 0 0 0 100vmax var(--cream);
  clip-path: inset(0 -100vmax);
  border-top: 1px solid var(--cream-line);
}
.section--warm .label { color: var(--cream-amber); }
.section--warm .kicker { color: #8A7B66; }
.section--warm h2 { color: var(--cream-ink); }
.section--warm .lead { color: var(--cream-muted); }
.section--warm .tags li {
  color: var(--cream-muted);
  border-color: var(--cream-line);
  background: rgba(255, 255, 255, 0.4);
}
.section--warm .arrow-link { color: var(--cream-amber); }
.section--warm .mise-logo {
  box-shadow: 0 0 0 1px var(--cream-line);
}
.section--warm .phone {
  background: #2A2126;
  border-color: #3E3238;
  box-shadow: 0 34px 64px -32px rgba(85, 55, 25, 0.38);
}
.section--warm + .section { border-top: 0; }

/* ---------- Preloader ---------- */
.preloader {
  position: fixed;
  inset: 0;
  z-index: 200;
  background: #0A0A0C;
  display: flex;
  align-items: center;
  justify-content: center;
}
.no-preloader .preloader { display: none; }
.preloader-word {
  font-family: var(--serif);
  font-size: clamp(1.7rem, 4vw, 2.5rem);
  letter-spacing: -0.01em;
  color: var(--ink);
  display: inline-flex;
}
.pl-ch {
  display: inline-block;
  opacity: 0;
  transform: translateY(0.4em);
}
.pl-dot { color: var(--gold); }

/* ---------- Hero ornaments ---------- */
.hero-ornaments {
  position: absolute;
  inset: 0;
  z-index: -1;
  pointer-events: none;
}
.orn-orbit {
  position: absolute;
  right: 5%;
  top: 6%;
  width: clamp(220px, 26vw, 360px);
  height: clamp(220px, 26vw, 360px);
  border-radius: 50%;
  border: 1px solid rgba(233, 197, 126, 0.13);
}
.orn-orbit::after {
  content: "";
  position: absolute;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.65;
  top: 11%;
  left: 9%;
}
.orn-orbit-2 {
  right: 16%;
  top: 34%;
  width: clamp(120px, 14vw, 200px);
  height: clamp(120px, 14vw, 200px);
  border-color: rgba(250, 250, 249, 0.07);
}
.orn-orbit-2::after { width: 5px; height: 5px; opacity: 0.4; }
.orn-dot {
  position: absolute;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0.32;
}
.orn-dot-1 { left: 54%; top: 16%; }
.orn-dot-2 { left: 46%; top: 68%; opacity: 0.2; }
.orn-dot-3 { right: 3%; top: 64%; width: 4px; height: 4px; opacity: 0.5; }
.orn-cross {
  position: absolute;
  left: 60%;
  top: 76%;
  font-family: var(--mono);
  font-size: 17px;
  color: rgba(233, 197, 126, 0.38);
}
@media (max-width: 860px) {
  .orn-orbit-2, .orn-dot-2, .orn-cross { display: none; }
}

/* ---------- Marquee ---------- */
.marquee {
  overflow: hidden;
  border-top: 1px solid var(--line);
  padding: 15px 0;
}
.marquee-track {
  display: flex;
  width: max-content;
  animation: mq-scroll 30s linear infinite;
  will-change: transform;
}
.marquee:hover .marquee-track { animation-play-state: paused; }
.mq-seg {
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--faint);
  white-space: nowrap;
  padding-right: 0.9em;
}
.mq-seg i {
  font-style: normal;
  color: var(--gold);
  padding: 0 0.35em;
}
@keyframes mq-scroll {
  to { transform: translateX(-50%); }
}

/* ---------- Hero constellation canvas ---------- */
.hero-canvas {
  position: absolute;
  inset: 0;
  z-index: -1;
  width: 100%;
  height: 100%;
}

/* ---------- Fixed contact tab ---------- */
.contact-fab {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 60;
  writing-mode: vertical-rl;
  background: var(--gold);
  color: #1A0F06;
  font-family: var(--mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  padding: 20px 11px;
  border-radius: 10px 0 0 10px;
  box-shadow: -6px 0 28px -10px rgba(233, 197, 126, 0.45);
  transition: padding 0.25s var(--ease), background 0.25s var(--ease);
}
.contact-fab:hover {
  background: #F0D394;
  padding-right: 17px;
}
@media (max-width: 860px) {
  .contact-fab {
    writing-mode: horizontal-tb;
    top: auto;
    bottom: 18px;
    right: 16px;
    transform: none;
    border-radius: 999px;
    padding: 12px 22px;
    letter-spacing: 0.14em;
    box-shadow: 0 10px 30px -8px rgba(0, 0, 0, 0.5), 0 0 0 1px rgba(233, 197, 126, 0.25);
  }
  .contact-fab:hover { padding-right: 22px; }
}

/* ---------- Custom cursor ---------- */
.cursor-dot {
  position: fixed;
  left: 0;
  top: 0;
  z-index: 300;
  width: 8px;
  height: 8px;
  margin: -4px 0 0 -4px;
  border-radius: 50%;
  background: var(--gold);
  opacity: 0;
  pointer-events: none;
}
@media (pointer: coarse) {
  .cursor-dot { display: none; }
}

/* ---------- GSAP takeover ---------- */
/* When GSAP drives the motion, neutralize the CSS entrance animations/transitions
   so the two systems never fight over the same properties. */
html.gsap-on .hero-copy > *,
html.gsap-on .hero-aside {
  animation: none;
  opacity: 1;
  transform: none;
}
html.gsap-on .reveal {
  opacity: 1;
  transform: none;
  transition: none;
}
html.gsap-on .btn {
  transition: background 0.25s var(--ease), border-color 0.25s var(--ease), color 0.25s var(--ease);
}
html.gsap-on .btn-gold:hover {
  transform: none;
  box-shadow: 0 8px 32px -10px rgba(233, 197, 126, 0.45);
}
html.gsap-on .btn-ghost:hover { transform: none; }
html.gsap-on .card {
  transition: border-color 0.28s var(--ease), background 0.28s var(--ease);
}
html.gsap-on .card:hover { transform: none; }
html.gsap-on .phone { transition: none; }
html.gsap-on .phone:hover { transform: none; }
.js-tilt { transform-style: preserve-3d; }

/* Fixed nav while ScrollSmoother is active (sticky breaks inside the
   transformed content, so the nav lives outside and pins to the viewport). */
html.smoother-on .nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
}
html.smoother-on .hero {
  padding-top: calc(clamp(60px, 11vw, 132px) + 66px);
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after {
    animation-duration: 0.001ms !important;
    animation-delay: 0ms !important;
    transition-duration: 0.001ms !important;
  }
  .reveal { opacity: 1; transform: none; }
  .hero-copy > *, .hero-aside { opacity: 1; transform: none; }
  .marquee-track { animation: none !important; }
  .cursor-dot { display: none !important; }
  .hero-canvas { display: none !important; }
  .preloader { display: none !important; }
  .pl-ch { opacity: 1; transform: none; }
}
