/* ============================================================
   Ice Thrul — faithful rebuild of the Figma design
   Palette: navy #1b3a6b · ice blue #5bafd6 · white
   Type: Spectral (display serif) · Inter (body)
   ============================================================ */

:root {
  --navy: #1b3a6b;
  --navy-700: #16315b;
  --navy-900: #102447;
  --ice: #5bafd6;
  --ice-soft: #7cc1e6;
  --ice-tint: #e9f4fb;
  --ice-tint-2: #d8ecf8;
  --white: #ffffff;
  --ink: #1b3a6b;
  --muted: #6b7d99;
  --line: #e3ebf3;

  --font-display: "Spectral", Georgia, "Times New Roman", serif;
  --font-body: "Inter", system-ui, -apple-system, "Segoe UI", sans-serif;

  --container: 1200px;
  --container-wide: 1280px;
  --radius: 16px;
  --radius-lg: 24px;

  --shadow-card:
    0 1px 2px rgba(27, 58, 107, 0.04), 0 12px 30px rgba(27, 58, 107, 0.06);
  --shadow-cube:
    0 8px 16px rgba(27, 58, 107, 0.1), 0 28px 44px rgba(91, 175, 214, 0.22);
  --ease: cubic-bezier(0.22, 0.61, 0.36, 1);
}

/* ---------- Reset ---------- */
*,
*::before,
*::after {
  box-sizing: border-box;
}
* {
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}
body {
  font-family: var(--font-body);
  color: var(--ink);
  background: var(--white);
  line-height: 1.6;
  font-size: 16px;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img,
svg,
iframe {
  display: block;
  max-width: 100%;
}
a {
  color: inherit;
  text-decoration: none;
}
button {
  font: inherit;
  cursor: pointer;
  border: none;
  background: none;
  color: inherit;
}
input,
textarea {
  font: inherit;
}

.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: 24px;
}

/* Reveal base (JS adds .is-visible; fallback shows all) */
[data-reveal] {
  opacity: 0;
  transform: translateY(28px);
}
.is-visible [data-reveal],
[data-reveal].is-visible {
  opacity: 1;
  transform: none;
}

/* Scroll progress bar */
.scroll-progress {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  z-index: 200;
  background: linear-gradient(90deg, var(--navy), var(--ice));
  transform: scaleX(0);
  transform-origin: 0 50%;
  will-change: transform;
}

/* ============================================================
   NAVIGATION
   ============================================================ */
.nav {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition:
    border-color 0.3s,
    box-shadow 0.3s,
    background 0.3s;
  padding: 5px 0;
}
.nav.is-scrolled {
  border-bottom-color: var(--line);
  box-shadow: 0 6px 24px rgba(27, 58, 107, 0.05);
}
.nav__inner {
  max-width: var(--container-wide);
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.logo {
  max-width: 190px;
  width: 100%;
  height: auto;
}

.nav__menu {
  display: flex;
  gap: 40px;
  margin-left: auto;
}
.nav__link {
  position: relative;
  font-size: 16px;
  font-weight: 500;
  color: var(--navy);
  padding: 4px 0;
}
.nav__link::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -2px;
  height: 2px;
  width: 0;
  background: var(--ice);
  transition: width 0.3s var(--ease);
}
.nav__link:hover::after,
.nav__link:focus-visible::after {
  width: 100%;
}

.nav__right {
  display: flex;
  align-items: center;
  gap: 16px;
}

/* Language pill */
.lang {
  display: inline-flex;
  background: var(--ice-tint);
  border-radius: 9999px;
  padding: 4px;
}
.lang__btn {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.03em;
  padding: 6px 14px;
  border-radius: 9999px;
  color: var(--navy);
  transition: all 0.25s;
}
.lang__btn.is-active {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 2px 8px rgba(27, 58, 107, 0.25);
}
.lang--footer {
  background: rgba(255, 255, 255, 0.12);
}
.lang--footer .lang__btn {
  color: rgba(255, 255, 255, 0.8);
}
.lang--footer .lang__btn.is-active {
  background: var(--white);
  color: var(--navy);
}

/* Burger */
.nav__burger {
  display: none;
  width: 40px;
  height: 40px;
  flex-direction: column;
  gap: 5px;
  align-items: center;
  justify-content: center;
}
.nav__burger span {
  width: 22px;
  height: 2px;
  background: var(--navy);
  border-radius: 2px;
  transition:
    transform 0.3s,
    opacity 0.3s;
}
.nav__burger.is-open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}
.nav__burger.is-open span:nth-child(2) {
  opacity: 0;
}
.nav__burger.is-open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* ============================================================
   HERO
   ============================================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 560px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: clamp(104px, 14vh, 132px) 24px clamp(80px, 10vh, 110px);
  text-align: center;
  overflow: hidden;
  background: var(--white);
  gap: clamp(14px, 2.6vh, 26px);
}
.hero__glow {
  position: absolute;
  top: 42%;
  left: 50%;
  width: 640px;
  height: 640px;
  transform: translate(-50%, -50%);
  background: radial-gradient(
    circle,
    rgba(91, 175, 214, 0.18) 0%,
    rgba(91, 175, 214, 0) 68%
  );
  pointer-events: none;
}
.hero__cube {
  position: relative;
  width: clamp(160px, min(34vw, 45vh), 400px);
}
.hero__cube img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transform: rotate(0deg); /* resting position; JS rotates it with scroll */
  filter: drop-shadow(0 8px 16px rgba(27, 58, 107, 0.1))
    drop-shadow(0 28px 44px rgba(91, 175, 214, 0.28));
}
.hero__content {
  position: relative;
  max-width: 720px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.hero__title {
  font-family: var(--font-display);
  font-weight: 500;
  color: var(--navy);
  font-size: clamp(26px, min(5.4vw, 6vh), 52px);
  line-height: 1.2;
  letter-spacing: -0.01em;
}
.hero__subtitle {
  margin-top: clamp(10px, 2vh, 22px);
  color: var(--ice);
  font-size: clamp(15px, 2vw, 19px);
  letter-spacing: 0.01em;
}
.hero__content .btn {
  margin-top: clamp(14px, 2.4vh, 30px);
}

.hero__scroll {
  position: absolute;
  bottom: 66px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  opacity: 0.42;
}
.hero__scroll-line {
  width: 1px;
  height: 40px;
  background: linear-gradient(to bottom, rgba(27, 58, 107, 0), var(--navy));
}
.hero__scroll svg {
  animation: nudge 1.8s var(--ease) infinite;
}
@keyframes nudge {
  0%,
  100% {
    transform: translateY(0);
  }
  50% {
    transform: translateY(4px);
  }
}

/* ============================================================
   BUTTONS · shared bits
   ============================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-weight: 600;
  font-size: 16px;
  letter-spacing: 0.04em;
  padding: 10px 30px;
  border-radius: 9999px;
  transition:
    transform 0.25s var(--ease),
    box-shadow 0.25s,
    background 0.25s;
  will-change: transform;
}
.btn--primary {
  background: var(--navy);
  color: var(--white);
  box-shadow: 0 8px 20px rgba(27, 58, 107, 0.22);
}
.btn--primary:hover {
  background: var(--navy-700);
  transform: translateY(-4px) scale(1.025);
  box-shadow: 0 18px 38px rgba(27, 58, 107, 0.38);
}
.btn--primary:active {
  transform: translateY(-1px) scale(0.99);
}
.btn--block {
  width: 100%;
}

/* Eyebrow label */
.eyebrow {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 28px;
}
.eyebrow span {
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--ice);
}
.eyebrow::after {
  content: "";
  width: 40px;
  height: 2px;
  background: var(--ice);
  border-radius: 2px;
}
.eyebrow--center {
  align-items: center;
}

/* "Μάθετε περισσότερα →" link */
.link-more {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: currentColor;
}
.link-more::after {
  content: "";
  width: 18px;
  height: 10px;
  background: currentColor;
  -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M0 5h16M12 1l4 4-4 4' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E")
    center/contain no-repeat;
  mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='10' viewBox='0 0 18 10' fill='none'%3E%3Cpath d='M0 5h16M12 1l4 4-4 4' stroke='black' stroke-width='1.5'/%3E%3C/svg%3E")
    center/contain no-repeat;
  transition: transform 0.25s var(--ease);
}
.link-more {
  transition:
    gap 0.25s var(--ease),
    opacity 0.25s;
}
.link-more:hover {
  gap: 16px;
}
.link-more:hover::after {
  transform: translateX(8px);
}

/* ============================================================
   FEATURES
   ============================================================ */
.features {
  padding: 110px 0;
  background: var(--white);
}
.features__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 28px;
  margin-top: 8px;
}
.feature-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 36px 30px;
  box-shadow: var(--shadow-card);
  transition:
    transform 0.35s var(--ease),
    box-shadow 0.35s,
    border-color 0.35s;
}
.feature-card:hover {
  transform: translateY(-12px);
  box-shadow: 0 28px 56px rgba(27, 58, 107, 0.18);
  border-color: var(--ice);
}
.feature-card__icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  margin-bottom: 22px;
  background: var(--ice-tint);
  color: var(--navy);
  transition:
    transform 0.35s var(--ease),
    background 0.35s,
    color 0.35s;
}
.feature-card:hover .feature-card__icon {
  background: var(--navy);
  color: #fff;
  transform: scale(1.12) rotate(-6deg);
}
.feature-card__icon svg {
  width: 26px;
  height: 26px;
}
.feature-card__title {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 21px;
  line-height: 1.25;
  color: var(--navy);
  margin-bottom: 12px;
}
.feature-card__text {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.55;
}

/* ============================================================
   PRODUCTS — scroll-stacked panels (each 100vh, overlapping)
   ============================================================ */
.products {
  position: relative;
  background: var(--navy-900);
}
.panel {
  position: sticky;
  top: 0;
  min-height: 100vh;
  display: flex;
  align-items: center;
  background: var(--ice-tint);
  color: var(--navy);
  transform-origin: center top;
  will-change: transform, filter;
  overflow: hidden;
}
.panel[data-theme="dark"] {
  background: var(--navy);
  color: var(--white);
}
.panel[data-theme="blue"] {
  background: var(--ice-soft);
  color: var(--navy);
}
/* Rounded top + lifted shadow so each panel visibly overlaps the one below */
.panel + .panel {
  border-top-left-radius: 36px;
  border-top-right-radius: 36px;
  box-shadow: 0 -30px 60px rgba(16, 36, 71, 0.22);
}

.panel__inner {
  display: grid;
  grid-template-columns: 472px 1fr;
  gap: 96px;
  align-items: center;
  width: 100%;
}
.panel__media {
  display: flex;
  justify-content: center;
}
.product-frame {
  width: 400px;
  aspect-ratio: 1;
  border-radius: var(--radius-lg);
  overflow: hidden;
  background: linear-gradient(
    150deg,
    rgba(255, 255, 255, 0.55),
    rgba(255, 255, 255, 0.15)
  );
  border: 1px solid rgba(255, 255, 255, 0.5);
  box-shadow: 0 24px 60px rgba(27, 58, 107, 0.18);
  backdrop-filter: blur(4px);
  display: grid;
  place-items: center;
  transition:
    transform 0.5s var(--ease),
    box-shadow 0.5s var(--ease);
}
.product-frame:hover {
  transform: scale(1.035) rotate(1.5deg);
  box-shadow: 0 36px 80px rgba(27, 58, 107, 0.3);
}
.product-frame__img {
  width: 86%;
  height: 86%;
  object-fit: contain;
  mix-blend-mode: multiply;
  filter: drop-shadow(0 16px 30px rgba(27, 58, 107, 0.22));
  transition: transform 0.6s var(--ease);
}
.product-frame:hover .product-frame__img {
  transform: scale(1.1) rotate(-3deg);
}
.panel[data-theme="dark"] .product-frame__img {
  mix-blend-mode: normal;
}

/* Full-bleed product photos (real photography, not cutout PNGs) */
.product-frame--photo {
  padding: 0;
}
.product-frame--photo .product-frame__img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  mix-blend-mode: normal;
  filter: none;
}
.product-frame--photo:hover .product-frame__img {
  transform: scale(1.06);
}

.panel__body {
  position: relative;
}
.slide__count {
  display: inline-block;
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.14em;
  opacity: 0.55;
  margin-bottom: 22px;
}
.slide__count-num {
  font-size: 17px;
  opacity: 1;
}
.slide__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(34px, 4.4vw, 48px);
  line-height: 1.1;
}
.slide__divider {
  display: block;
  width: 48px;
  height: 2px;
  background: currentColor;
  opacity: 0.5;
  margin: 26px 0;
}
.slide__text {
  max-width: 460px;
  font-size: 17px;
  line-height: 1.7;
  opacity: 0.85;
  margin-bottom: 32px;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about {
  padding: 130px 0;
  background: var(--white);
}
.about__inner {
  display: grid;
  grid-template-columns: 544px 1fr;
  gap: 112px;
  align-items: center;
}
.product-frame--about {
  width: 100%;
  max-width: 544px;
  aspect-ratio: 544 / 560;
  border-radius: var(--radius-lg);
  background: linear-gradient(150deg, var(--ice-tint), #f3f9fd);
  border-color: var(--line);
  box-shadow: var(--shadow-card);
}
.about__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.6vw, 44px);
  line-height: 1.18;
  color: var(--navy);
  margin-bottom: 26px;
}
.about__text {
  color: var(--muted);
  font-size: 17px;
  line-height: 1.8;
}
.about__text + .about__text {
  margin-top: 18px;
}

/* ============================================================
   CONTACT
   ============================================================ */
.contact {
  padding: 120px 0;
  background: var(--ice-tint);
}
.contact__inner {
  display: grid;
  grid-template-columns: 45fr 55fr;
  gap: 64px;
  align-items: stretch;
}
.contact__title {
  font-family: var(--font-display);
  font-weight: 500;
  font-size: clamp(30px, 3.4vw, 40px);
  color: var(--navy);
  margin-bottom: 16px;
}
.contact__lead {
  color: var(--muted);
  font-size: 16px;
  max-width: 460px;
  margin-bottom: 36px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 22px;
}
.field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.field-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.field label {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
}
.field input,
.field textarea {
  width: 100%;
  padding: 15px 18px;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: var(--white);
  color: var(--ink);
  font-size: 15px;
  transition:
    border-color 0.2s,
    box-shadow 0.2s;
}
.field textarea {
  resize: vertical;
  min-height: 120px;
}
.field input::placeholder,
.field textarea::placeholder {
  color: #9aa9bf;
}
.field input:focus,
.field textarea:focus {
  outline: none;
  border-color: var(--ice);
  box-shadow: 0 0 0 4px rgba(91, 175, 214, 0.16);
}
.field__error {
  font-size: 13px;
  color: #d64545;
  display: none;
}
.field.has-error input,
.field.has-error textarea {
  border-color: #e08b8b;
  box-shadow: 0 0 0 4px rgba(214, 69, 69, 0.12);
}
.field.has-error .field__error {
  display: block;
}
.form__success {
  margin-top: 6px;
  padding: 14px 18px;
  border-radius: 12px;
  background: rgba(91, 175, 214, 0.14);
  color: var(--navy);
  font-weight: 500;
  font-size: 15px;
}

.contact__map-col {
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(27, 58, 107, 0.16);
  border: 1px solid rgba(255, 255, 255, 0.6);
  min-height: 480px;
}
.contact__map-col iframe {
  width: 100%;
  height: 100%;
  min-height: 480px;
  border: 0;
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer {
  background: var(--navy);
  color: rgba(255, 255, 255, 0.78);
  padding-top: 80px;
}
.footer__inner {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 56px;
}
.brand--footer {
}
.footer-logo {
  max-width: 190px;
  width: 100%;
  height: auto;
}
.footer__tagline {
  max-width: 260px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.6);
}
.footer__heading {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 18px;
}
.footer__col {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.footer__link,
.footer__contact {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.78);
  transition: color 0.2s;
}
.footer__link:hover,
.footer__contact:hover {
  color: var(--ice-soft);
}
.footer__social {
  display: flex;
  gap: 14px;
  margin-top: 8px;
}
.footer__social a {
  width: 36px;
  height: 36px;
  border-radius: 9999px;
  background: rgba(255, 255, 255, 0.1);
  display: grid;
  place-items: center;
  transition:
    background 0.25s,
    transform 0.25s;
}
.footer__social a:hover {
  background: var(--ice);
  transform: translateY(-4px) scale(1.12);
}
.footer__social svg {
  width: 17px;
  height: 17px;
  color: var(--white);
}

.footer__bottom {
  border-top: 1px solid rgba(255, 255, 255, 0.12);
}
.footer__bottom-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-block: 26px;
  gap: 16px;
}
.footer__copy {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.55);
}

/* ============================================================
   GO TO TOP
   ============================================================ */
.to-top {
  position: fixed;
  right: 28px;
  bottom: 28px;
  z-index: 90;
  width: 48px;
  height: 48px;
  border-radius: 9999px;
  background: var(--navy);
  color: var(--white);
  display: grid;
  place-items: center;
  box-shadow: 0 10px 24px rgba(27, 58, 107, 0.3);
  opacity: 0;
  visibility: hidden;
  transform: translateY(12px);
  transition: all 0.3s var(--ease);
}
.to-top.is-visible {
  opacity: 1;
  visibility: visible;
  transform: none;
}
.to-top:hover {
  background: var(--navy-700);
  transform: translateY(-3px);
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1100px) {
  .panel__inner {
    grid-template-columns: 360px 1fr;
    gap: 56px;
  }
  .product-frame {
    width: 320px;
  }
  .about__inner {
    grid-template-columns: 1fr 1fr;
    gap: 64px;
  }
}

@media (max-width: 920px) {
  .nav__menu,
  .nav__right .lang {
    display: none;
  }
  .nav__burger {
    display: flex;
  }
  .nav__menu.is-open {
    display: flex;
    flex-direction: column;
    gap: 4px;
    position: absolute;
    top: 80px;
    left: 0;
    right: 0;
    background: var(--white);
    padding: 16px 24px 24px;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(27, 58, 107, 0.08);
  }
  .nav__menu.is-open .nav__link {
    padding: 12px 0;
    font-size: 18px;
  }
  .nav__menu.is-open + .nav__right .lang {
    display: inline-flex;
  }

  .features__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }
  /* Keep the scroll-stacking effect on mobile, but compact each product so
     the whole card (image + text + button) fits within one viewport. */
  .panel {
    min-height: 100svh;
    padding: 0;
  }
  .panel__inner {
    grid-template-columns: 1fr;
    gap: clamp(12px, 2vh, 20px);
    align-content: center;
    padding-block: 64px 20px;
  }
  .about__inner,
  .contact__inner {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .panel__media,
  .about__media {
    order: -1;
  }
  .panel__body {
    text-align: left;
  }
  .product-frame {
    width: min(34vh, 62vw);
  }
  .slide__count {
    margin-bottom: 10px;
  }
  .slide__title {
    font-size: clamp(26px, 7vw, 34px);
  }
  .slide__divider {
    margin: 14px 0;
  }
  .slide__text {
    max-width: none;
    font-size: 15px;
    line-height: 1.55;
    margin-bottom: 18px;
  }
  .footer__inner {
    grid-template-columns: 1fr 1fr;
    gap: 36px;
  }
  .footer__brand {
    grid-column: 1 / -1;
  }
}

@media (max-width: 560px) {
  .container {
    padding-inline: 20px;
  }
  .features {
    padding: 70px 0;
  }
  .features__grid {
    grid-template-columns: 1fr;
  }
  .field-row {
    grid-template-columns: 1fr;
  }
  .footer__inner {
    grid-template-columns: 1fr;
  }
  .footer__bottom-inner {
    flex-direction: column;
    align-items: flex-start;
  }
}

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }
  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.001ms !important;
  }
  [data-reveal] {
    opacity: 1;
    transform: none;
  }
}
