:root {
  --brand: #00a5e0;
  --brand-strong: #0077b9;
  --brand-deep: #075d92;
  --scroll-progress: 0;
  --ink: #182027;
  --muted: #5d6872;
  --line: #d9e4ea;
  --surface: #ffffff;
  --surface-soft: #f4f8fa;
  --green: #20a36a;
  --amber: #f2a93b;
  --shadow: 0 24px 70px rgba(24, 32, 39, 0.12);
  --shadow-soft: 0 16px 44px rgba(24, 32, 39, 0.08);
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 96px;
}

body {
  position: relative;
  margin: 0;
  color: var(--ink);
  background:
    linear-gradient(145deg, rgba(0, 165, 224, 0.14) 0%, rgba(0, 165, 224, 0) 34%),
    linear-gradient(25deg, rgba(32, 163, 106, 0.09) 0%, rgba(32, 163, 106, 0) 26%),
    linear-gradient(180deg, #fbfdfe 0%, #eef7fa 46%, #f8fbfc 100%);
  font-family: "Baloo 2", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background:
    linear-gradient(115deg, transparent 0 46%, rgba(255, 255, 255, 0.62) 46% 58%, transparent 58%),
    linear-gradient(180deg, rgba(255, 255, 255, 0.86), rgba(255, 255, 255, 0.16));
  content: "";
}

body > * {
  position: relative;
  z-index: 1;
}

::selection {
  background: rgba(0, 165, 224, 0.22);
}

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

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

button,
input,
textarea {
  font: inherit;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 28px;
  width: 100%;
  min-height: 74px;
  margin: 0;
  padding: 14px max(18px, calc((100% - 1180px) / 2));
  backdrop-filter: blur(16px);
}

.site-header::before {
  position: fixed;
  inset: 0 0 auto;
  z-index: -1;
  height: 74px;
  background: rgba(248, 251, 252, 0.9);
  border-bottom: 1px solid rgba(217, 228, 234, 0.8);
  content: "";
  transition:
    background 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease;
}

.site-header::after {
  position: fixed;
  top: 73px;
  right: 0;
  left: 0;
  z-index: 1;
  height: 2px;
  background: linear-gradient(90deg, var(--brand), var(--green), var(--amber));
  content: "";
  transform: scaleX(var(--scroll-progress));
  transform-origin: left;
}

.site-header.is-scrolled::before {
  background: rgba(255, 255, 255, 0.92);
  border-color: rgba(217, 228, 234, 0.95);
  box-shadow: 0 14px 42px rgba(24, 32, 39, 0.08);
}

.brand img {
  width: 214px;
  height: auto;
  transition:
    opacity 180ms ease,
    transform 180ms ease;
}

.brand:hover img,
.brand:focus-visible img {
  opacity: 0.88;
  transform: translateY(-1px);
}

.site-nav {
  display: flex;
  align-items: center;
  gap: 8px;
  border: 1px solid rgba(217, 228, 234, 0.82);
  border-radius: 8px;
  padding: 4px;
  background: rgba(255, 255, 255, 0.72);
}

.site-nav a {
  border-radius: 6px;
  padding: 10px 12px;
  color: #3f4b55;
  font-size: 0.94rem;
  font-weight: 700;
  transition:
    background 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  background: rgba(0, 165, 224, 0.1);
  color: var(--brand-strong);
  outline: none;
  transform: translateY(-1px);
}

.nav-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 6px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    color 180ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(0, 119, 185, 0.35);
  color: var(--brand-strong);
  outline: none;
}

.section-band {
  width: min(1180px, calc(100% - 36px));
  margin: 0 auto;
  padding: 88px 0;
}

main section[id] {
  scroll-margin-top: 96px;
}

.section-tight {
  padding-top: 72px;
}

.hero {
  display: grid;
  min-height: calc(100vh - 74px);
  grid-template-columns: minmax(0, 1.04fr) minmax(360px, 0.96fr);
  align-items: center;
  gap: 52px;
  padding-top: 52px;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--brand-strong);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

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

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 700px;
  margin-bottom: 22px;
  font-size: clamp(2.15rem, 3.7vw, 4.1rem);
  line-height: 1.06;
}

h2 {
  max-width: 720px;
  margin-bottom: 18px;
  font-size: clamp(1.65rem, 2.35vw, 2.55rem);
  line-height: 1.08;
}

h3 {
  margin-bottom: 10px;
  font-size: 1.16rem;
  line-height: 1.2;
}

.hero-text,
.method-copy p,
.tech-copy p,
.contact-copy p {
  max-width: 640px;
  color: var(--muted);
  font-size: 1.08rem;
  line-height: 1.72;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 32px 0;
}

.btn {
  position: relative;
  overflow: hidden;
  display: inline-flex;
  min-height: 48px;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 6px;
  padding: 0 18px;
  font-weight: 800;
  cursor: pointer;
  transition:
    transform 180ms ease,
    box-shadow 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.btn:hover {
  transform: translateY(-2px);
}

.btn svg {
  transition: transform 180ms ease;
}

.btn:hover svg,
.btn:focus-visible svg {
  transform: translateX(2px);
}

.btn-primary {
  background: linear-gradient(135deg, var(--brand) 0%, var(--brand-strong) 100%);
  color: #ffffff;
  box-shadow: 0 14px 34px rgba(0, 165, 224, 0.28);
}

.btn-primary:hover,
.btn-primary:focus-visible {
  background: var(--brand-strong);
  outline: none;
}

.btn-ghost {
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.78);
  color: var(--ink);
  box-shadow: 0 10px 26px rgba(24, 32, 39, 0.04);
}

.btn-ghost:hover,
.btn-ghost:focus-visible {
  border-color: rgba(0, 119, 185, 0.35);
  background: #ffffff;
  outline: none;
}

.btn svg,
.text-link svg,
.panel-title svg,
.service-card svg {
  width: 19px;
  height: 19px;
  stroke-width: 2.2;
}

.metrics {
  display: grid;
  max-width: 760px;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 0;
}

.metrics div {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: rgba(255, 255, 255, 0.74);
  box-shadow: 0 8px 26px rgba(24, 32, 39, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    background 180ms ease;
}

.metrics div:hover {
  border-color: rgba(0, 119, 185, 0.28);
  background: #ffffff;
}

.metrics dt {
  color: var(--ink);
  font-weight: 800;
}

.metrics dd {
  margin: 5px 0 0;
  color: var(--muted);
  font-size: 0.9rem;
  line-height: 1.45;
}

.hero-visual {
  position: relative;
}

.workspace-window {
  overflow: hidden;
  border: 1px solid rgba(0, 119, 185, 0.18);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transform: translateZ(0);
  transition:
    transform 240ms ease,
    box-shadow 240ms ease;
}

.workspace-window:hover {
  box-shadow: 0 30px 86px rgba(24, 32, 39, 0.16);
}

.window-bar {
  display: flex;
  gap: 7px;
  border-bottom: 1px solid var(--line);
  padding: 15px 16px;
  background: #eef6f9;
}

.window-bar span {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--brand);
}

.window-bar span:nth-child(2) {
  background: var(--amber);
}

.window-bar span:nth-child(3) {
  background: var(--green);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.3fr 0.7fr;
  gap: 14px;
  padding: 18px;
}

.system-panel {
  min-height: 170px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface-soft);
  transition:
    border-color 180ms ease,
    background 180ms ease,
    transform 180ms ease;
}

.system-panel:hover {
  border-color: rgba(0, 119, 185, 0.25);
  background: #ffffff;
}

.panel-large {
  grid-row: span 2;
  min-height: 354px;
}

.panel-title {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--ink);
  font-size: 0.88rem;
  font-weight: 800;
}

.panel-title svg {
  color: var(--brand-strong);
}

.line-chart {
  display: grid;
  height: 248px;
  grid-template-columns: repeat(6, 1fr);
  align-items: end;
  gap: 10px;
  margin-top: 26px;
}

.line-chart span {
  min-height: 34px;
  border-radius: 6px 6px 0 0;
  background: linear-gradient(180deg, #18b8ec, var(--brand-strong));
  transform-origin: bottom;
  animation: bar-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
}

.line-chart span:nth-child(2) {
  animation-delay: 90ms;
}

.line-chart span:nth-child(3) {
  animation-delay: 180ms;
}

.line-chart span:nth-child(4) {
  animation-delay: 270ms;
}

.line-chart span:nth-child(5) {
  animation-delay: 360ms;
}

.line-chart span:nth-child(6) {
  animation-delay: 450ms;
}

.phone-preview {
  display: grid;
  gap: 8px;
  margin-top: 22px;
}

.phone-preview span,
.status-list span {
  display: block;
  height: 13px;
  border-radius: 5px;
  background: #d5e7ee;
  animation: soft-pulse 3.4s ease-in-out infinite;
}

.phone-preview span:nth-child(1) {
  width: 72%;
}

.phone-preview span:nth-child(2) {
  width: 100%;
}

.phone-preview span:nth-child(3) {
  width: 54%;
  background: var(--green);
}

.status-list {
  display: grid;
  gap: 10px;
  margin-top: 24px;
}

.status-list span {
  height: 18px;
}

.status-list span:nth-child(2) {
  width: 78%;
}

.status-list span:nth-child(3) {
  width: 60%;
  background: var(--amber);
}

.integration-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 8px;
  margin-top: 12px;
}

.integration-strip span {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 10px 6px;
  background: #ffffff;
  color: var(--muted);
  font-size: 0.78rem;
  font-weight: 800;
  text-align: center;
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.integration-strip span:hover {
  border-color: rgba(0, 119, 185, 0.28);
  color: var(--brand-deep);
}

.section-heading {
  display: grid;
  grid-template-columns: minmax(180px, 0.42fr) minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-bottom: 34px;
}

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

.service-card {
  position: relative;
  overflow: hidden;
  min-height: 244px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.82);
  box-shadow: 0 10px 30px rgba(24, 32, 39, 0.04);
  transition:
    transform 220ms ease,
    box-shadow 220ms ease,
    border-color 220ms ease,
    background 220ms ease;
}

.service-card::before {
  position: absolute;
  inset: 0 0 auto;
  height: 3px;
  background: linear-gradient(90deg, var(--brand), var(--green), var(--amber));
  content: "";
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 220ms ease;
}

.service-card:hover {
  border-color: rgba(0, 119, 185, 0.28);
  background: #ffffff;
  box-shadow: var(--shadow-soft);
}

.service-card:hover::before {
  transform: scaleX(1);
}

.service-card svg {
  width: 28px;
  height: 28px;
  margin-bottom: 32px;
  color: var(--brand-strong);
  transition:
    color 180ms ease,
    transform 180ms ease;
}

.service-card:hover svg {
  color: var(--green);
}

.service-card p,
.method-list p {
  margin-bottom: 0;
  color: var(--muted);
  line-height: 1.62;
}

.method {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 54px;
  align-items: center;
}

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

.method-list li {
  display: grid;
  grid-template-columns: 74px 1fr;
  column-gap: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 20px;
  background: #ffffff;
  box-shadow: 0 10px 30px rgba(24, 32, 39, 0.04);
  transition:
    transform 200ms ease,
    border-color 200ms ease,
    box-shadow 200ms ease;
}

.method-list li:hover {
  border-color: rgba(0, 119, 185, 0.28);
  box-shadow: var(--shadow-soft);
}

.method-list span {
  grid-row: span 2;
  color: var(--brand);
  font-family: "Baloo 2", system-ui, sans-serif;
  font-size: 2rem;
  font-weight: 700;
  line-height: 1;
}

.method-list strong {
  margin-bottom: 5px;
  font-size: 1.08rem;
}

.tech-layout {
  display: grid;
  grid-template-columns: 0.72fr 1fr;
  gap: 42px;
  align-items: start;
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--brand-strong);
  font-weight: 800;
  transition: color 180ms ease;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--green);
  outline: none;
}

.text-link svg {
  transition: transform 180ms ease;
}

.text-link:hover svg,
.text-link:focus-visible svg {
  transform: translate(2px, -2px);
}

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

.tech-cloud li {
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 16px;
  background: #ffffff;
  color: #34434d;
  font-weight: 800;
  box-shadow: 0 8px 24px rgba(24, 32, 39, 0.04);
  transition:
    transform 180ms ease,
    border-color 180ms ease,
    color 180ms ease;
}

.tech-cloud li:hover {
  border-color: rgba(32, 163, 106, 0.42);
  color: var(--green);
}

.products {
  padding-top: 74px;
}

.product-feature {
  position: relative;
  overflow: hidden;
  display: grid;
  grid-template-columns: minmax(0, 0.92fr) minmax(360px, 1.08fr);
  gap: 42px;
  align-items: center;
  border: 1px solid rgba(217, 228, 234, 0.92);
  border-radius: 8px;
  padding: 32px;
  background:
    linear-gradient(135deg, rgba(0, 165, 224, 0.1), rgba(255, 255, 255, 0) 42%),
    rgba(255, 255, 255, 0.82);
  box-shadow: var(--shadow-soft);
}

.product-feature::before {
  position: absolute;
  inset: 0;
  pointer-events: none;
  background: linear-gradient(115deg, transparent 0 58%, rgba(255, 255, 255, 0.72) 58% 70%, transparent 70%);
  content: "";
}

.product-copy,
.product-preview {
  position: relative;
  z-index: 1;
}

.product-copy img {
  width: min(260px, 100%);
  margin-bottom: 20px;
}

.product-kicker {
  margin-bottom: 8px;
  color: var(--brand-strong);
  font-size: 0.86rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.product-copy h3 {
  margin-bottom: 12px;
  font-size: clamp(1.75rem, 2.5vw, 2.5rem);
}

.product-copy p:not(.product-kicker) {
  max-width: 560px;
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1.06rem;
  line-height: 1.68;
}

.product-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
  margin-top: 28px;
}

.product-preview {
  display: grid;
  min-height: 360px;
  align-items: center;
}

.schedule-card {
  width: min(100%, 520px);
  margin-left: auto;
  border: 1px solid rgba(0, 119, 185, 0.18);
  border-radius: 8px;
  padding: 18px;
  background: #ffffff;
  box-shadow: 0 24px 62px rgba(24, 32, 39, 0.12);
}

.schedule-header,
.schedule-row {
  display: grid;
  grid-template-columns: 86px 1fr;
  gap: 14px;
  align-items: center;
}

.schedule-header {
  border-bottom: 1px solid var(--line);
  padding-bottom: 14px;
  color: var(--brand-deep);
  font-weight: 800;
}

.schedule-header span {
  color: var(--muted);
}

.schedule-row {
  margin-top: 12px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 14px;
  background: var(--surface-soft);
}

.schedule-row span {
  color: var(--brand-strong);
  font-weight: 800;
}

.schedule-row strong {
  color: #2b3740;
}

.schedule-row.is-active {
  border-color: rgba(32, 163, 106, 0.35);
  background: rgba(32, 163, 106, 0.08);
}

.product-stat {
  position: absolute;
  right: 18px;
  bottom: 18px;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  border: 1px solid rgba(0, 119, 185, 0.18);
  border-radius: 8px;
  padding: 13px 16px;
  background: rgba(255, 255, 255, 0.92);
  color: var(--brand-deep);
  font-weight: 800;
  box-shadow: 0 16px 42px rgba(24, 32, 39, 0.1);
}

.product-stat svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

.contact {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 56px;
  align-items: center;
  padding-bottom: 78px;
}

.contact-copy img {
  width: 76px;
  margin-bottom: 22px;
}

.contact-form {
  display: grid;
  gap: 14px;
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 22px;
  background: #ffffff;
  box-shadow: var(--shadow);
  transition:
    border-color 220ms ease,
    box-shadow 220ms ease,
    transform 220ms ease;
}

.contact-form:hover {
  border-color: rgba(0, 119, 185, 0.22);
  box-shadow: 0 28px 78px rgba(24, 32, 39, 0.14);
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #34434d;
  font-size: 0.9rem;
  font-weight: 800;
}

.contact-form input,
.contact-form textarea {
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 6px;
  padding: 13px 14px;
  background: var(--surface-soft);
  color: var(--ink);
  resize: vertical;
  transition:
    border-color 180ms ease,
    background 180ms ease,
    outline-color 180ms ease;
}

.contact-form input:focus,
.contact-form textarea:focus {
  border-color: var(--brand);
  background: #ffffff;
  outline: 3px solid rgba(0, 165, 224, 0.14);
}

.site-footer {
  display: flex;
  width: 100%;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin: 0;
  border-top: 1px solid var(--line);
  padding: 26px max(18px, calc((100% - 1180px) / 2)) 36px;
  background: rgba(255, 255, 255, 0.72);
  color: var(--muted);
  font-size: 0.92rem;
  backdrop-filter: blur(10px);
}

.site-footer img {
  width: 172px;
}

.reveal-item {
  --parallax-y: 0px;
  --reveal-y: 18px;
  opacity: 0;
  transform: translate3d(0, calc(var(--reveal-y) + var(--parallax-y)), 0);
  transition:
    opacity 560ms ease,
    transform 560ms cubic-bezier(0.22, 1, 0.36, 1);
  will-change: opacity, transform;
}

.reveal-item.is-visible {
  --reveal-y: 0px;
  opacity: 1;
}

.parallax-item {
  will-change: transform;
}

.parallax-item:not(.reveal-item) {
  transform: translate3d(0, var(--parallax-y), 0);
}

@keyframes bar-rise {
  from {
    transform: scaleY(0.08);
  }

  to {
    transform: scaleY(1);
  }
}

@keyframes soft-pulse {
  0%,
  100% {
    opacity: 0.72;
  }

  50% {
    opacity: 1;
  }
}

@media (max-width: 980px) {
  .hero,
  .method,
  .tech-layout,
  .product-feature,
  .contact {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 58px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .section-heading {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .schedule-card {
    margin-left: 0;
  }
}

@media (max-width: 720px) {
  .site-header {
    padding-inline: 14px;
  }

  .brand img {
    width: 184px;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    position: absolute;
    top: 68px;
    right: 0;
    left: 0;
    display: none;
    flex-direction: column;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 8px;
    background: #ffffff;
    box-shadow: var(--shadow);
    animation: menu-open 180ms ease both;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 13px 14px;
  }

  .section-band {
    width: min(100% - 28px, 1180px);
    padding: 58px 0;
  }

  .hero {
    gap: 34px;
  }

  .hero-actions,
  .btn {
    width: 100%;
  }

  .metrics,
  .service-grid,
  .dashboard-grid,
  .integration-strip {
    grid-template-columns: 1fr;
  }

  .product-feature {
    padding: 22px;
  }

  .product-preview {
    min-height: 310px;
  }

  .schedule-header,
  .schedule-row {
    grid-template-columns: 1fr;
    gap: 4px;
  }

  .product-stat {
    position: static;
    margin-top: 12px;
  }

  .panel-large {
    min-height: 260px;
  }

  .line-chart {
    height: 158px;
  }

  .service-card {
    min-height: auto;
  }

  .method-list li {
    grid-template-columns: 1fr;
  }

  .method-list span {
    margin-bottom: 12px;
  }

  .site-footer {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 420px) {
  h1 {
    font-size: 1.95rem;
  }

  h2 {
    font-size: 1.55rem;
  }

  .brand img {
    width: 160px;
  }

  .contact-form {
    padding: 16px;
  }
}

@keyframes menu-open {
  from {
    opacity: 0;
    transform: translateY(-8px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

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

  .reveal-item {
    opacity: 1;
    transform: none;
  }
}
