/*
 * CertifID Outreach Landing Styles
 * Purpose: Defines the full visual presentation for WEBSITE/index.html, including
 *          layout, typography, brand-token-driven theming, the preloader overlay,
 *          and viewport-entry reveal animations.
 * Provides: Shared landing-page styles for the header, hero, experience steps,
 *           SPUG section, footer, preloader, and section reveal states.
 * Dependencies: WEBSITE/index.html, WEBSITE/config.json for runtime brand values,
 *               WEBSITE/assets/fonts/THICCCBOI-*.woff2, and WEBSITE/js/index.js.
 */

@font-face {
  font-family: "Thicccboi";
  src: url("../assets/fonts/THICCCBOI-Regular.woff2") format("woff2");
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thicccboi";
  src: url("../assets/fonts/THICCCBOI-Medium.woff2") format("woff2");
  font-weight: 500;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thicccboi";
  src: url("../assets/fonts/THICCCBOI-SemiBold.woff2") format("woff2");
  font-weight: 600;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: "Thicccboi";
  src: url("../assets/fonts/THICCCBOI-Bold.woff2") format("woff2");
  font-weight: 700;
  font-style: normal;
  font-display: swap;
}

:root {
  --c-primary: #23579F;
  --c-primary-light: color-mix(in srgb, var(--c-primary) 18%, white);
  --c-primary-tint: color-mix(in srgb, var(--c-primary) 7%, white);
  --c-primary-dark: color-mix(in srgb, var(--c-primary) 75%, black);

  --navy-900: #102756;
  --navy-700: #1A3971;
  --navy-500: #2B5193;
  --blue-500: #156FBE;
  --green-500: #33C66E;
  --green-400: #48D07E;
  --green-300: #4BFA91;

  --neutral-100: #F8F9FC;
  --neutral-200: #EFF1F6;
  --neutral-300: #E2E6EE;
  --neutral-650: #4F5867;
  --neutral-800: #1F293C;
  --ink: #0E1626;
  --muted: #5A6473;
  --line: rgba(16, 39, 86, 0.10);

  --sans: "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
  --display: "Thicccboi", "Inter", -apple-system, BlinkMacSystemFont, sans-serif;

  --container: 1180px;
  --reveal-distance: 16px;
  --reveal-duration: 780ms;
  --reveal-ease: cubic-bezier(0.22, 1, 0.36, 1);
}

*,
*::before,
*::after {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

html,
body {
  overflow-x: hidden;
}

body {
  margin: 0;
  font-family: var(--sans);
  color: var(--ink);
  background: #fff;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body.preloader-active {
  overflow: hidden;
}

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

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

button {
  font: inherit;
}

html.app-booting .page-shell {
  visibility: hidden;
}

.page-shell {
  position: relative;
}

.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 32px);
}

.h-display {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.018em;
  line-height: 1.1;
  font-size: clamp(1.5rem, 3.1vw, 2.5rem);
  margin: 0;
}

.h2 {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.014em;
  line-height: 1.18;
  font-size: clamp(1.4rem, 2.6vw, 2.1rem);
  margin: 0;
}

.h3 {
  font-family: var(--display);
  font-weight: 600;
  letter-spacing: -0.008em;
  font-size: 1.25rem;
  line-height: 1.25;
  margin: 0;
}

.lede {
  font-size: 18px;
  line-height: 1.55;
  color: var(--neutral-650);
  max-width: 620px;
  margin: 0 auto;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  padding: 18px 28px;
  border-radius: 12px;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 16px;
  line-height: 1;
  border: 0;
  cursor: pointer;
  text-decoration: none;
  transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
  will-change: transform;
}

.btn-blue {
  background: var(--blue-500);
  color: #fff;
  box-shadow: 0 8px 20px -8px rgba(21, 111, 190, 0.45);
}

.btn-blue:hover {
  background: #1A7DCB;
  transform: translateY(-1px);
  box-shadow: 0 12px 24px -8px rgba(21, 111, 190, 0.55);
}

.btn-arrow svg {
  transition: transform 0.18s ease;
}

.btn-arrow:hover svg {
  transform: translateX(3px);
}

.btn-outline {
  background: transparent;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn-outline:hover {
  background: var(--neutral-100);
}

.site-header {
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.site-header-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 14px clamp(16px, 4vw, 32px);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  min-height: 0;
}

.site-header-left {
  display: flex;
  align-items: center;
  gap: 16px;
  min-width: 0;
}

.site-header-logo {
  height: 26px;
  width: auto;
  display: block;
  flex-shrink: 0;
}

.live-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #fff;
  border: 1px solid rgba(16, 39, 86, 0.05);
  font-size: 12px;
  font-weight: 600;
  color: var(--muted);
  letter-spacing: 0.01em;
  white-space: nowrap;
}

.live-pill .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  animation: live-breath 2.4s cubic-bezier(0.4, 0, 0.6, 1) infinite;
}

@keyframes live-breath {
  0%,
  100% {
    opacity: 0.55;
    transform: scale(0.85);
  }

  50% {
    opacity: 1;
    transform: scale(1.15);
  }
}

.site-header-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 9px 16px;
  border-radius: 10px;
  font-family: var(--sans);
  font-size: 13px;
  font-weight: 700;
  line-height: 1;
  color: var(--blue-500);
  background: #fff;
  border: 1px solid var(--blue-500);
  text-decoration: none;
  flex-shrink: 0;
  transition: background 0.18s ease;
}

.site-header-cta:hover {
  background: var(--neutral-100);
}

.site-header-cta svg {
  width: 15px;
  height: 15px;
}

.hero {
  position: relative;
  padding: clamp(32px, 5vh, 72px) 0 clamp(56px, 8vh, 100px);
  background:
    radial-gradient(70% 60% at 100% -10%, color-mix(in srgb, var(--c-primary) 14%, transparent), transparent 70%),
    linear-gradient(180deg, #E9F7FE 0%, #FFFFFF 85%);
  overflow: hidden;
}

.hero-grid {
  display: grid;
  grid-template-columns:
    minmax(32px, calc((100vw - var(--container)) / 2 + 32px))
    minmax(0, 560px)
    48px
    1fr;
  align-items: center;
}

.hero-copy {
  grid-column: 2;
  text-align: left;
}

.hero-panel-wrap {
  grid-column: 4;
}

.hero-logo {
  display: block;
  height: 56px;
  width: auto;
  max-width: 320px;
  object-fit: contain;
  margin: 0 0 28px;
}

/* Hero preview image — desktop tuned settings. Smaller-desktop + mobile overrides below. */
.hero-image {
  display: block;
  width: 61%;
  height: auto;
  border-radius: 16px;
  margin-left: 0;
  margin-top: 0;
  transform-origin: center;
  transform: translate(-6px, -6px) scale(0.98) rotate(0deg);
}

/* Smaller desktop / large tablet — grow the image so it doesn't shrink. */
@media (max-width: 1280px) and (min-width: 961px) {
  .hero-image {
    width: 90%;
    transform: translate(0, 0) scale(1) rotate(0deg);
  }
}

@media (max-width: 960px) {
  .hero-image {
    width: 100%;
    max-width: 560px;
    margin: 0 auto;
    transform: none;
    border-radius: 16px;
  }
}

/* Eyebrow badge — "Soft pill with NEW chip" (Badge #1 from badges.html). */
.eyebrow-badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px 6px 6px;
  background: #fff;
  border: 1px solid rgba(35, 87, 159, 0.18);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 600;
  color: var(--c-primary-dark);
  box-shadow: 0 1px 2px rgba(16, 39, 86, 0.04);
  margin: 0 0 28px;
  width: fit-content;
}
.eyebrow-badge-chip {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  background: var(--c-primary);
  color: #fff;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero h1 {
  margin-bottom: 22px;
}

.hero p.lede {
  margin: 0 0 32px;
  max-width: 520px;
}

.hero-cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hero-panel {
  background: #fff;
  border-radius: 24px 0 0 24px;
  box-shadow:
    0 40px 70px -30px rgba(16, 39, 86, 0.25),
    0 16px 32px -16px rgba(16, 39, 86, 0.12);
  width: calc(100% + 80px);
  position: relative;
  overflow: hidden;
}

.hero-panel iframe {
  position: absolute;
  top: 0;
  left: 0;
  border: 0;
  background: #fff;
  transform-origin: top left;
  display: block;
  pointer-events: none;
}

.experience {
  padding: clamp(64px, 10vw, 112px) 0;
  background: #fff;
  border-top: 1px solid var(--line);
}

.experience-logo {
  display: block;
  margin: 0 auto 28px;
  height: 58px;
  width: auto;
  max-width: 374px;
  object-fit: contain;
  opacity: 0.95;
}

.experience-head {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 64px;
}

.experience-head h2 {
  margin-bottom: 14px;
}

.experience-head .lede {
  font-size: 17px;
}

.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 36px 28px;
  align-items: start;
}

.step {
  text-align: center;
}

.step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--c-primary);
  color: #fff;
  font-family: var(--display);
  font-weight: 700;
  font-size: 1.1rem;
  line-height: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
}

.step-title {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.125rem;
  line-height: 1.3;
  color: var(--ink);
  margin: 0 0 10px;
  min-height: calc(2 * 1.3em);
}

.step-desc {
  color: var(--muted);
  font-size: 14.5px;
  line-height: 1.5;
  max-width: 320px;
  margin: 0 auto 28px;
  min-height: calc(4 * 1.5em);
}

.phone-shell {
  width: min(320px, 100%);
  margin: 0 auto;
  background: #0d0d0f;
  border-radius: 46px;
  padding: 9px;
  box-shadow:
    0 36px 70px -22px rgba(16, 39, 86, 0.30),
    0 14px 30px -14px rgba(16, 39, 86, 0.18),
    inset 0 0 0 1px rgba(255, 255, 255, 0.06);
  position: relative;
}

.phone-screen {
  width: 100%;
  aspect-ratio: 393 / 852;
  overflow: hidden;
  border-radius: 38px;
  background: #fff;
}

.phone-screen iframe {
  width: 100%;
  height: 100%;
  border: 0;
  background: #fff;
  display: block;
  pointer-events: none;
}

.spug-wrap {
  padding: clamp(16px, 3vw, 32px) clamp(16px, 3vw, 32px) clamp(40px, 6vw, 72px);
  background: #fff;
}

.spug-card {
  max-width: 1240px;
  margin: 0 auto;
  border-radius: clamp(20px, 3vw, 32px);
  padding: clamp(56px, 8vw, 96px) clamp(24px, 5vw, 56px);
  color: #fff;
  background-color: var(--navy-900);
  background-image:
    radial-gradient(circle at 100% 100%, var(--navy-500), transparent 52%),
    radial-gradient(circle at 15% 34%, var(--navy-500), transparent 35%);
  position: relative;
  overflow: hidden;
}

.spug-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 64px;
  align-items: center;
}

.spug-copy h2 {
  color: #fff;
  margin-bottom: 24px;
}

.spug-details {
  list-style: none;
  padding: 0;
  margin: 28px 0 0;        /* sits below the body paragraph */
  display: grid;
  gap: 14px;
}

.spug-details li {
  display: flex;
  align-items: center;
  gap: 14px;
  font-size: 15px;
  color: rgba(255, 255, 255, 0.86);
}

.spug-details .ico {
  width: 38px;
  height: 38px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.07);
  border: 1px solid rgba(255, 255, 255, 0.12);
  color: #fff;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}

.spug-copy p.body {
  color: rgba(255, 255, 255, 0.78);
  font-size: 16px;
  line-height: 1.65;
  max-width: 520px;
  margin: 0;
}

.spug-copy p.body strong {
  color: #fff;
  font-weight: 600;
}

.tyler-card {
  background: #fff;
  border-radius: 24px;
  padding: 36px 32px 32px;
  text-align: center;
  box-shadow: 0 30px 60px -25px rgba(0, 0, 0, 0.45);
}

.tyler-photo {
  width: 112px;
  height: 112px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: var(--neutral-200);
}

.tyler-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tyler-name {
  font-family: var(--display);
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 1.4rem;
  color: var(--ink);
  margin: 0 0 4px;
}

.tyler-title {
  font-size: 13px;
  color: var(--muted);
  margin: 0 0 14px;
}

.tyler-avail {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 14px;
  border-radius: 999px;
  background: rgba(51, 198, 110, 0.10);
  color: #1A7A41;
  font-size: 12px;
  font-weight: 600;
  margin: 0 0 22px;
}

.tyler-avail .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green-500);
  box-shadow: 0 0 0 3px rgba(51, 198, 110, 0.25);
}

.tyler-cta-row {
  display: flex;
  justify-content: center;
}

.tyler-alt {
  display: block;
  margin-top: 14px;
  font-size: 13px;
  color: var(--muted);
}

.tyler-alt strong {
  color: var(--ink);
  font-weight: 600;
}

.tyler-avail .short-text {
  display: none;
}

.site-footer {
  background: linear-gradient(180deg, #FFFFFF 0%, #F1F4FA 40%, #E8ECF4 100%);
  padding: 42px 0 32px;
}

.footer-card {
  background: #fff;
  border-radius: 20px;
  padding: 28px 36px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
  box-shadow: 0 8px 24px -12px rgba(16, 39, 86, 0.12);
}

.footer-logo {
  height: 24px;
}

.footer-meta {
  font-size: 13px;
  color: var(--muted);
  text-align: right;
}

.footer-meta strong {
  color: var(--ink);
  font-weight: 600;
}

.preloader {
  position: fixed;
  inset: 0;
  z-index: 100;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
  background:
    radial-gradient(70% 60% at 100% -10%, color-mix(in srgb, var(--c-primary) 12%, transparent), transparent 70%),
    linear-gradient(180deg, #E9F7FE 0%, #FFFFFF 85%);
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  --reveal-radius: 0px;
  --mask-edge: calc(var(--reveal-radius) + 1px);
  -webkit-mask-image: radial-gradient(circle at 50% 50%, transparent var(--reveal-radius), #000 var(--mask-edge));
  mask-image: radial-gradient(circle at 50% 50%, transparent var(--reveal-radius), #000 var(--mask-edge));
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-size: 100% 100%;
  mask-size: 100% 100%;
  will-change: opacity, -webkit-mask-image, mask-image;
}

.preloader.is-active {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.preloader-mark {
  width: 60px;
  height: auto;
  opacity: 0;
  transform: scale(0.8);
  transform-origin: center;
  will-change: transform, opacity;
}

html.motion-safe [data-reveal-section] {
  opacity: 0;
  transform: translate3d(0, var(--reveal-distance), 0);
  filter: blur(12px);
  transition:
    opacity var(--reveal-duration) var(--reveal-ease),
    transform var(--reveal-duration) var(--reveal-ease),
    filter var(--reveal-duration) var(--reveal-ease);
  will-change: opacity, transform, filter;
}

html.motion-safe [data-reveal-section].is-visible {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* Desktop-only line break helper (used in hero H1) */
.br-desktop { display: none; }
@media (min-width: 769px) {
  .br-desktop { display: inline; }
}

/* ─── Logo + company-name combo (only when the brand logo is square-ish) ───
   Applied at runtime by js/index.js when an icon-only logo is detected.
   Renders the company name as an uppercase wordmark beside the icon. */
.hero-logo-row {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin: 0 0 28px;
}
.hero-logo-row .hero-logo {
  margin: 0;
  height: 48px;
  width: auto;
  max-width: 100%;
  flex-shrink: 0;
}
.hero-logo-row .hero-logo-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  /* Subtle brand tint mixed into a near-black so the wordmark feels on-palette */
  color: color-mix(in srgb, var(--c-primary) 15%, #222);
  line-height: 1.1;
  white-space: nowrap;
}
@media (max-width: 640px) {
  .hero-logo-row .hero-logo { height: 36px; }
  .hero-logo-row .hero-logo-name { font-size: 0.7rem; }
}

/* Per-step stagger reveal — applied to all viewports.
   The 3 phone steps appear one after the other with 1s defer between them.
   IMPORTANT: `transition` lives on the base selector so it persists across
   class-name toggles (pending → shown) and the change is animated, not instant. */
html.motion-safe .step[data-step-stagger] {
  transition:
    opacity 700ms var(--reveal-ease),
    transform 700ms var(--reveal-ease),
    filter 700ms var(--reveal-ease);
  will-change: opacity, transform, filter;
}
html.motion-safe .step[data-step-stagger].step-pending {
  opacity: 0;
  transform: translate3d(0, 16px, 0);
  filter: blur(10px);
}
html.motion-safe .step[data-step-stagger].step-shown {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

/* ─── Header child stagger — bg fades in via data-reveal-section, then logo,
       pill, and CTA appear sequentially. Same transition-on-base trick. ─── */
html.motion-safe .site-header [data-header-stagger] {
  opacity: 0;
  transform: translate3d(0, -6px, 0);
  filter: blur(6px);
  transition:
    opacity 500ms var(--reveal-ease),
    transform 500ms var(--reveal-ease),
    filter 500ms var(--reveal-ease);
  will-change: opacity, transform, filter;
}
html.motion-safe .site-header [data-header-stagger].is-shown {
  opacity: 1;
  transform: translate3d(0, 0, 0);
  filter: blur(0);
}

@media (max-width: 960px) {
  .hero-grid {
    display: flex;
    flex-direction: column;
    gap: 32px;
  }

  .hero-copy {
    padding: 0 clamp(16px, 4vw, 32px);
    width: 100%;
    max-width: 720px;
    margin: 0 auto;
  }

  .hero-panel-wrap {
    padding-left: clamp(16px, 4vw, 32px);
    padding-right: clamp(16px, 4vw, 32px);
    width: 100%;
    display: flex;
    justify-content: center;
  }

  .hero-panel {
    width: 100%;
    border-radius: 24px 0 0 24px;
  }
}

@media (max-width: 1024px) {
  .steps-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 56px 20px;
  }

  .steps-grid .step:last-child {
    grid-column: 1 / -1;
  }
}

@media (max-width: 920px) {
  .spug-grid {
    grid-template-columns: 1fr;
    gap: 40px;
  }

  .tyler-card {
    max-width: 440px;
    margin: 0 auto;
  }
}

@media (max-width: 780px) {
  .step-title {
    min-height: 0;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: 56px;
  }

  .steps-grid .step:last-child {
    grid-column: auto;
  }
}

@media (max-width: 640px) {
  .site-header-inner {
    padding: 10px clamp(16px, 4vw, 32px);
  }

  .site-header-logo {
    height: 22px;
  }

  .live-pill {
    display: none;
  }

  .site-header-cta {
    padding: 9px 14px;
    font-size: 12px;
  }

  .hero {
    padding: 24px 0 48px;
  }

  .btn {
    padding: 14px 20px;
    font-size: 14px;
    gap: 8px;
  }

  .hero h1 {
    margin-bottom: 18px;
  }

  .hero p.lede {
    font-size: 16px;
    margin: 0 0 24px;
  }

  .hero-cta-row {
    gap: 10px;
    flex-direction: column;
    align-items: stretch;
    width: 100%;
    max-width: 320px;
  }

  .hero-cta-row .btn {
    width: 100%;
  }

  .hero-logo {
    height: 44px;
    margin-bottom: 22px;
  }

  .spug-copy h2 {
    margin-bottom: 18px;
  }

  .spug-details {
    margin: 20px 0 0;
  }

  .spug-copy p.body {
    font-size: 15px;
  }

  .tyler-card {
    padding: 28px 20px 24px;
    max-width: none;
    margin: 0;
  }

  .tyler-photo {
    width: 96px;
    height: 96px;
  }

  .tyler-name {
    font-size: 1.3rem;
  }

  .tyler-title {
    font-size: 12px;
    margin-bottom: 16px;
  }

  .tyler-avail {
    font-size: 11px;
    padding: 6px 12px;
    line-height: 1.3;
    margin-bottom: 18px;
    white-space: nowrap;
  }

  .tyler-cta-row .btn {
    padding: 12px 18px;
    font-size: 13px;
    gap: 8px;
  }

  .tyler-cta-row .btn svg {
    width: 14px;
    height: 14px;
  }

  .spug-wrap {
    padding-bottom: 0;
  }

  .site-footer {
    padding: 24px 0;
  }

  .tyler-avail .full-text {
    display: none;
  }

  .tyler-avail .short-text {
    display: inline;
  }
}

@media (max-width: 560px) {
  .footer-card {
    flex-direction: column;
    align-items: flex-start;
    padding: 24px;
  }

  .footer-meta {
    text-align: left;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  .live-pill .dot {
    animation: none;
  }

  .preloader {
    transition: none;
  }

  [data-reveal-section] {
    opacity: 1 !important;
    transform: none !important;
    filter: none !important;
    transition: none !important;
  }
}
