:root {
  --ink: #121417;
  --ink-2: #1f242b;
  --muted: #667085;
  --line: #d9e0e8;
  --paper: #ffffff;
  --soft: #f5f7fa;
  --soft-2: #edf3f2;
  --brand: #0d6b64;
  --brand-2: #124b72;
  --accent: #b45309;
  --shadow: 0 24px 70px rgba(18, 20, 23, 0.16);
  --shadow-card: 0 4px 18px rgba(18, 20, 23, 0.07);
  --radius: 10px;
  --transition: 0.22s cubic-bezier(0.4, 0, 0.2, 1);
}

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

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Manrope, "Noto Sans", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

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

/* =========================================================
   Scroll-triggered entrance animations
   ========================================================= */
@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

.reveal {
  opacity: 0;
}

.reveal.visible {
  animation: fadeUp 0.54s var(--transition) forwards;
}

.reveal-fade.visible {
  animation: fadeIn 0.48s ease forwards;
}

.reveal:nth-child(2) { animation-delay: 0.06s; }
.reveal:nth-child(3) { animation-delay: 0.12s; }
.reveal:nth-child(4) { animation-delay: 0.18s; }

/* =========================================================
   Header
   ========================================================= */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  display: grid;
  grid-template-columns: auto 1fr auto auto;
  gap: 28px;
  align-items: center;
  padding: 14px clamp(18px, 5vw, 76px);
  background: rgba(255, 255, 255, 0.97);
  border-bottom: 1px solid rgba(217, 224, 232, 0.7);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: box-shadow var(--transition);
}

.site-header.scrolled {
  box-shadow: 0 2px 18px rgba(18, 20, 23, 0.09);
}

.brand {
  display: inline-flex;
  gap: 12px;
  align-items: center;
  transition: opacity var(--transition);
}

.brand:hover {
  opacity: 0.85;
}

.brand-logo {
  height: 38px;
  width: auto;
  display: block;
}

.brand strong {
  display: block;
  line-height: 1.1;
}

.brand small {
  display: block;
  color: var(--muted);
  font-size: 12px;
}

nav {
  display: flex;
  gap: 22px;
  justify-content: center;
  color: #4b5563;
  font-size: 14px;
  font-weight: 750;
}

nav a,
.language {
  transition: color var(--transition);
}

nav a:hover,
.language:hover {
  color: var(--brand);
}

.language {
  color: var(--muted);
  font-size: 14px;
  font-weight: 800;
}

/* Mobile menu toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  width: 40px;
  height: 40px;
  padding: 8px;
  cursor: pointer;
  background: none;
  border: 1px solid var(--line);
  border-radius: 6px;
  transition: background var(--transition);
}

.menu-toggle:hover {
  background: var(--soft);
}

.menu-toggle span {
  display: block;
  height: 2px;
  background: var(--ink);
  border-radius: 2px;
  transition: transform var(--transition), opacity var(--transition);
}

.menu-toggle.open span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle.open span:nth-child(2) {
  opacity: 0;
}

.menu-toggle.open span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

/* Mobile nav drawer */
.mobile-nav {
  display: none;
  position: fixed;
  inset: 0;
  z-index: 99;
  background: rgba(18, 20, 23, 0.42);
  backdrop-filter: blur(4px);
  -webkit-backdrop-filter: blur(4px);
  opacity: 0;
  transition: opacity 0.24s ease;
  pointer-events: none;
}

.mobile-nav.open {
  opacity: 1;
  pointer-events: all;
}

.mobile-nav-panel {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  width: min(300px, 88vw);
  padding: 80px 28px 32px;
  background: #fff;
  transform: translateX(100%);
  transition: transform 0.28s cubic-bezier(0.4, 0, 0.2, 1);
  display: flex;
  flex-direction: column;
  gap: 8px;
  overflow-y: auto;
}

.mobile-nav.open .mobile-nav-panel {
  transform: translateX(0);
}

.mobile-nav-panel a {
  display: block;
  padding: 13px 16px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 16px;
  color: var(--ink);
  transition: background var(--transition), color var(--transition);
}

.mobile-nav-panel a:hover {
  background: var(--soft);
  color: var(--brand);
}

.mobile-nav-panel .mobile-lang {
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 14px;
}

/* =========================================================
   Hero
   ========================================================= */
.hero {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.74fr);
  gap: clamp(36px, 6vw, 90px);
  align-items: center;
  min-height: calc(100vh - 75px);
  padding: clamp(58px, 8vw, 118px) clamp(18px, 5vw, 76px) clamp(48px, 6vw, 86px);
  overflow: hidden;
  background:
    linear-gradient(105deg, rgba(18, 20, 23, 0.98) 0%, rgba(18, 20, 23, 0.94) 45%, rgba(13, 71, 66, 0.88) 100%),
    var(--ink);
}

.hero::after {
  position: absolute;
  right: 0;
  bottom: 0;
  width: 46vw;
  min-width: 420px;
  height: 46vw;
  min-height: 420px;
  pointer-events: none;
  content: "";
  background:
    linear-gradient(rgba(255, 255, 255, 0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.06) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(135deg, transparent 0%, #000 35%, #000 70%, transparent 100%);
}

.hero-copy,
.hero-visual {
  position: relative;
  z-index: 1;
}

/* Hero entrance animation */
.hero-copy {
  animation: fadeUp 0.7s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.hero-visual {
  animation: fadeUp 0.7s 0.18s cubic-bezier(0.4, 0, 0.2, 1) both;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand);
  font-size: 13px;
  font-weight: 900;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1 {
  max-width: 960px;
  margin-bottom: 24px;
  font-size: clamp(36px, 4.8vw, 60px);
  line-height: 1.02;
  letter-spacing: 0;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(27px, 3.3vw, 40px);
  line-height: 1.1;
  letter-spacing: 0;
}

h3 {
  margin-bottom: 12px;
  font-size: 19px;
  line-height: 1.18;
}

.lead {
  max-width: 780px;
  margin-bottom: 28px;
  color: #364152;
  font-size: clamp(16px, 1.6vw, 19px);
}

.hero h1,
.hero .lead {
  color: #fff;
}

.hero .lead {
  color: #d8e1e8;
}

.hero .eyebrow {
  color: #80f2df;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border: 1px solid var(--ink);
  border-radius: 8px;
  font-weight: 900;
  font-size: 15px;
  letter-spacing: 0.01em;
  cursor: pointer;
  transition: transform var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), color var(--transition);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(18, 20, 23, 0.15);
}

.button:active {
  transform: translateY(0);
  box-shadow: none;
}

.button.primary {
  color: #fff;
  background: var(--ink);
}

.button.primary:hover {
  background: var(--brand);
  border-color: var(--brand);
}

.button.secondary {
  color: #fff;
  background: transparent;
  border-color: rgba(255, 255, 255, 0.35);
}

.button.secondary:hover {
  background: rgba(255, 255, 255, 0.12);
  border-color: rgba(255, 255, 255, 0.6);
}

.proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding: 0;
  margin: 30px 0 0;
  list-style: none;
}

.proof li {
  padding: 8px 14px;
  color: #e5f7f4;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
  transition: background var(--transition), border-color var(--transition);
}

.proof li:hover {
  background: rgba(255, 255, 255, 0.14);
  border-color: rgba(128, 242, 223, 0.3);
}

.hero-visual {
  display: grid;
  place-items: center;
}

.capability-panel {
  width: min(100%, 560px);
  padding: 24px;
  color: #fff;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 12px;
  box-shadow: var(--shadow), 0 0 0 1px rgba(128, 242, 223, 0.06);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  transition: transform var(--transition), box-shadow var(--transition);
}

.capability-panel:hover {
  transform: translateY(-2px);
  box-shadow: var(--shadow), 0 0 40px rgba(13, 107, 100, 0.18);
}

.capability-head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 2px 18px;
  color: #d8e1e8;
  font-size: 13px;
  font-weight: 850;
}

.capability-head strong {
  padding: 5px 9px;
  color: #063f3a;
  background: #ccfbef;
  border-radius: 999px;
  font-size: 12px;
}

.capability-main,
.capability-list article {
  padding: 22px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
}

.capability-main small,
.capability-list small {
  display: block;
  margin-bottom: 8px;
  color: #a7f3e6;
  font-weight: 850;
}

.capability-main b,
.capability-list b {
  display: block;
  font-size: 19px;
  line-height: 1.25;
}

.capability-main {
  min-height: 190px;
  color: #fff;
  background: rgba(255, 255, 255, 0.13);
}

.capability-main small {
  color: #b8e8df;
}

.capability-main b {
  max-width: 420px;
  font-size: 28px;
}

.capability-list {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin-top: 14px;
}

.capability-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  padding: 0;
  margin-top: 14px;
  margin-bottom: 0;
  list-style: none;
}

.capability-tags li {
  padding: 9px 11px;
  color: #fff;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 999px;
  font-size: 13px;
  font-weight: 850;
}

/* =========================================================
   Sections layout
   ========================================================= */
.section,
.split,
.contact,
.band,
.footer {
  padding: clamp(62px, 8vw, 108px) clamp(18px, 5vw, 76px);
}

.section-head {
  max-width: 940px;
  margin-bottom: 34px;
}

.promo-banner {
  position: relative;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 24px;
  align-items: center;
  margin-bottom: clamp(34px, 5vw, 56px);
  padding: clamp(24px, 4vw, 38px);
  color: #fff;
  overflow: hidden;
  background:
    linear-gradient(135deg, rgba(18, 20, 23, 0.96), rgba(13, 107, 100, 0.94)),
    var(--ink);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.promo-banner.has-image {
  min-height: 360px;
}

.promo-banner.has-image::before {
  position: absolute;
  inset: 0;
  z-index: 1;
  content: "";
  background: linear-gradient(90deg, rgba(18, 20, 23, 0.9), rgba(18, 20, 23, 0.58));
}

.promo-banner img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.promo-banner > div,
.promo-banner > a {
  position: relative;
  z-index: 2;
}

.promo-banner .eyebrow {
  color: #99f6e4;
}

.promo-banner h2 {
  max-width: 920px;
  margin-bottom: 12px;
  font-size: clamp(25px, 3vw, 36px);
}

.promo-banner p:not(.eyebrow) {
  max-width: 820px;
  margin-bottom: 0;
  color: #d8e2e8;
  font-size: 16px;
}

.promo-banner .button.primary {
  color: var(--ink);
  background: #fff;
  border-color: #fff;
}

.section-head p,
.split p,
.band p,
.contact-panel p {
  color: var(--muted);
  font-size: 16px;
}

.cards {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
}

.card {
  position: relative;
  min-height: 278px;
  padding: 28px;
  overflow: hidden;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 44px rgba(18, 20, 23, 0.12);
  border-color: rgba(13, 107, 100, 0.25);
}

.card::before {
  display: block;
  width: 42px;
  height: 4px;
  margin-bottom: 24px;
  content: "";
  background: linear-gradient(90deg, var(--brand), #14a89d);
  border-radius: 999px;
  transition: width var(--transition);
}

.card:hover::before {
  width: 64px;
}

.card-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  margin-bottom: 18px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(13, 107, 100, 0.1), rgba(13, 107, 100, 0.04));
  border: 1px solid rgba(13, 107, 100, 0.14);
  color: var(--brand);
}

.card-icon svg {
  width: 24px;
  height: 24px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.75;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card p {
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(320px, 0.62fr);
  gap: 48px;
  align-items: start;
  color: #fff;
  background:
    linear-gradient(135deg, rgba(18, 20, 23, 0.98) 0%, rgba(15, 76, 72, 0.96) 100%),
    var(--ink);
}

.split p {
  color: #d0d7df;
}

.split h2 {
  color: #fff;
}

.split .eyebrow {
  color: #80f2df;
  letter-spacing: 0.08em;
}

.checklist {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 17px 18px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.13);
  border-radius: 8px;
  transition: background var(--transition), border-color var(--transition);
}

.checklist li:hover {
  background: rgba(255, 255, 255, 0.13);
  border-color: rgba(255, 255, 255, 0.22);
}

.checklist li::before {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  content: "✓";
  color: #80f2df;
  background: rgba(128, 242, 223, 0.12);
  border: 1px solid rgba(128, 242, 223, 0.25);
  border-radius: 50%;
  font-size: 12px;
  font-weight: 900;
  line-height: 1;
}

.band {
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
  background: var(--soft-2);
}

.band div {
  max-width: 820px;
}

.process ol {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  padding: 0;
  margin: 0;
  list-style: none;
  counter-reset: steps;
}

.process li {
  min-height: 222px;
  padding: 26px;
  background: var(--soft);
  border: 1px solid #e8edf3;
  border-radius: var(--radius);
  counter-increment: steps;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.process li:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 30px rgba(18, 20, 23, 0.08);
  border-color: rgba(13, 107, 100, 0.2);
}

.process li::before {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  content: "0" counter(steps);
  font-size: 31px;
  font-weight: 950;
  line-height: 1;
}

.about-section {
  background: var(--soft);
}

.about-inner {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(280px, 0.7fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
}

.about-copy .lead {
  color: var(--muted);
  font-size: clamp(16px, 1.5vw, 18px);
}

.about-highlights {
  display: grid;
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.about-highlights li {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 18px 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.about-highlights li:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(18, 20, 23, 0.08);
}

.about-highlights li::before {
  content: "";
  display: block;
  width: 10px;
  height: 10px;
  flex-shrink: 0;
  background: var(--brand);
  border-radius: 50%;
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 0.74fr) minmax(340px, 0.7fr);
  gap: 24px;
  background:
    linear-gradient(135deg, rgba(245, 247, 250, 0.98), rgba(237, 243, 242, 0.98)),
    var(--soft);
  border-top: 1px solid var(--line);
}

.contact-panel,
.form {
  padding: clamp(25px, 4vw, 40px);
  background: #fff;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  box-shadow: 0 8px 30px rgba(18, 20, 23, 0.07);
}

.direct {
  display: grid;
  gap: 8px;
  padding: 18px;
  margin: 24px 0;
  background: #f8fafc;
  border: 1px solid #e5eaf0;
  border-radius: 8px;
}

.direct a {
  color: var(--brand);
  font-weight: 950;
}

address {
  display: grid;
  gap: 6px;
  color: var(--muted);
  font-style: normal;
}

.form {
  display: grid;
  gap: 14px;
}

label {
  display: grid;
  gap: 7px;
  color: #344054;
  font-size: 14px;
  font-weight: 850;
}

.consent {
  grid-template-columns: auto 1fr;
  gap: 10px;
  align-items: start;
  color: var(--muted);
  font-size: 13px;
  font-weight: 650;
  line-height: 1.45;
}

.consent input {
  width: 18px;
  height: 18px;
  margin-top: 2px;
}

input,
select,
textarea {
  width: 100%;
  padding: 13px 14px;
  color: var(--ink);
  background: #fff;
  border: 1.5px solid #cbd5e1;
  border-radius: 7px;
  font: inherit;
  font-size: 15px;
  transition: border-color var(--transition), box-shadow var(--transition);
  appearance: none;
  -webkit-appearance: none;
}

input:hover,
select:hover,
textarea:hover {
  border-color: #a0afc0;
}

input:focus,
select:focus,
textarea:focus {
  outline: none;
  box-shadow: 0 0 0 3px rgba(13, 107, 100, 0.14);
  border-color: var(--brand);
}

input:invalid:not(:placeholder-shown),
textarea:invalid:not(:placeholder-shown) {
  border-color: #e05252;
}

textarea {
  resize: vertical;
  min-height: 110px;
}

select {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%23667085' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M6 9l6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 12px center;
  padding-right: 40px;
}

/* Form success/error states */
.form-success,
.form-error {
  display: none;
  padding: 16px 18px;
  border-radius: 8px;
  font-weight: 800;
  font-size: 15px;
  text-align: center;
}

.form-success {
  color: #063f3a;
  background: #d1fae5;
  border: 1px solid #34d399;
}

.form-error {
  color: #7c2d12;
  background: #fee2e2;
  border: 1px solid #f87171;
}

.form-success.visible,
.form-error.visible {
  display: block;
}

.footer {
  display: flex;
  gap: 18px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  color: #94a3b8;
  background: var(--ink);
  border-top: 1px solid rgba(255, 255, 255, 0.06);
}

.footer p {
  max-width: 780px;
  margin: 0;
  font-size: 14px;
  line-height: 1.6;
}

.footer-links {
  display: flex;
  gap: 18px;
  align-items: center;
  flex-shrink: 0;
}

.footer a {
  color: #e2e8f0;
  font-weight: 700;
  font-size: 14px;
  transition: color var(--transition);
}

.footer a:hover {
  color: #80f2df;
}

/* Back to top button */
.back-to-top {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  color: var(--ink);
  background: #fff;
  border-radius: 50%;
  font-size: 18px;
  line-height: 1;
  transition: background var(--transition), transform var(--transition);
  flex-shrink: 0;
}

.back-to-top:hover {
  background: #80f2df;
  transform: translateY(-2px);
}

.noscript {
  padding: 48px;
}

@media (max-width: 1080px) {
  .site-header {
    grid-template-columns: auto 1fr auto auto;
  }

  nav {
    display: none;
  }

  .menu-toggle {
    display: flex;
  }

  .mobile-nav {
    display: block;
  }

  .hero,
  .split,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
  }

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

@media (max-width: 680px) {
  .site-header {
    gap: 10px;
    padding: 12px 16px;
  }

  .brand small,
  .language {
    font-size: 11px;
  }

  h1 {
    font-size: 34px;
  }

  h2 {
    font-size: 26px;
  }

  .hero {
    padding-top: 44px;
  }

  .capability-list,
  .cards,
  .process ol {
    grid-template-columns: 1fr;
  }

  .band,
  .promo-banner,
  .footer {
    grid-template-columns: 1fr;
    align-items: flex-start;
    flex-direction: column;
  }
}

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

  .reveal {
    opacity: 1;
  }
}
