:root {
  --bg: #f6f7f4;
  --surface: #ffffff;
  --surface-soft: #eef3ef;
  --ink: #172021;
  --muted: #607071;
  --line: #dce4df;
  --blue: #315d83;
  --green: #3f7159;
  --amber: #c9923b;
  --charcoal: #101616;
  --shadow: 0 24px 70px rgba(14, 27, 29, 0.13);
  --shadow-strong: 0 30px 90px rgba(14, 27, 29, 0.18);
  --radius: 8px;
  --max: 1160px;
  --hero-shift: 0px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.55;
}

.muted {
  color: var(--muted);
}

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

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

.container {
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 40;
  border-bottom: 1px solid rgba(220, 228, 223, 0.78);
  background: rgba(246, 247, 244, 0.92);
  backdrop-filter: blur(18px);
}

.nav-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
  gap: 22px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 40px;
  height: 40px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--charcoal);
  font-size: 0.95rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 650;
}

.nav-links a:hover,
.footer-links a:hover {
  color: var(--blue);
}

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

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
}

.menu-button span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: currentColor;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  padding: 0 18px;
  border: 1px solid transparent;
  border-radius: 8px;
  font-weight: 760;
  line-height: 1;
  cursor: pointer;
  box-shadow: 0 0 0 rgba(14, 27, 29, 0);
  transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(14, 27, 29, 0.12);
}

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

.button-primary:hover {
  background: #243031;
}

.button-secondary {
  color: var(--ink);
  border-color: rgba(255, 255, 255, 0.72);
  background: rgba(255, 255, 255, 0.72);
}

.button-outline {
  color: var(--ink);
  border-color: var(--line);
  background: var(--surface);
}

.hero {
  position: relative;
  min-height: calc(100svh - 72px);
  display: grid;
  align-items: end;
  overflow: hidden;
  color: #fff;
  background: #111;
}

.hero::before,
.hero::after {
  content: "";
  position: absolute;
  inset: 0;
}

.hero::before {
  background: url("../img/artem-davydenko-hero.jpg") center / cover no-repeat;
  transform: translate3d(0, var(--hero-shift), 0) scale(1.055);
  transition: transform 120ms linear;
}

.hero::after {
  background:
    linear-gradient(90deg, rgba(8, 14, 15, 0.92) 0%, rgba(8, 14, 15, 0.64) 42%, rgba(8, 14, 15, 0.15) 100%),
    linear-gradient(0deg, rgba(8, 14, 15, 0.54) 0%, rgba(8, 14, 15, 0) 38%);
}

.hero-content {
  position: relative;
  z-index: 1;
  width: min(var(--max), calc(100% - 40px));
  margin: 0 auto;
  padding: 0 0 76px;
}

.hero-content > * {
  animation: heroEnter 720ms ease both;
}

.hero-content > *:nth-child(2) {
  animation-delay: 90ms;
}

.hero-content > *:nth-child(3) {
  animation-delay: 170ms;
}

.hero-content > *:nth-child(4) {
  animation-delay: 250ms;
}

.hero-content > *:nth-child(5) {
  animation-delay: 320ms;
}

.hero-content > *:nth-child(6) {
  animation-delay: 390ms;
}

.eyebrow {
  margin: 0 0 14px;
  color: var(--amber);
  font-size: 0.79rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.hero h1 {
  margin: 0;
  max-width: 760px;
  font-size: 4.15rem;
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 650px;
  margin: 24px 0 0;
  color: rgba(255, 255, 255, 0.84);
  font-size: 1.13rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 30px;
}

.hero-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 26px;
}

.hero-meta span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 999px;
  color: rgba(255, 255, 255, 0.86);
  background: rgba(255, 255, 255, 0.08);
  font-size: 0.86rem;
  font-weight: 700;
}

.hero-status {
  display: inline-grid;
  grid-template-columns: repeat(3, max-content);
  gap: 0;
  margin-top: 18px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(14px);
}

.hero-status span {
  position: relative;
  display: inline-flex;
  align-items: center;
  min-height: 42px;
  padding: 0 16px 0 28px;
  color: rgba(255, 255, 255, 0.86);
  font-size: 0.87rem;
  font-weight: 760;
}

.hero-status span::before {
  content: "";
  position: absolute;
  left: 12px;
  width: 7px;
  height: 7px;
  border-radius: 999px;
  background: var(--amber);
  box-shadow: 0 0 0 0 rgba(201, 146, 59, 0.42);
  animation: pulseDot 2.7s ease-in-out infinite;
}

.hero-status span + span {
  border-left: 1px solid rgba(255, 255, 255, 0.15);
}

.hero-flow {
  position: absolute;
  z-index: 1;
  top: 118px;
  right: max(28px, calc((100vw - var(--max)) / 2));
  width: 360px;
  height: 240px;
  pointer-events: none;
  opacity: 0.86;
}

.hero-lines {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  fill: none;
  stroke: rgba(255, 255, 255, 0.34);
  stroke-dasharray: 9 11;
  stroke-linecap: round;
  stroke-width: 2;
  animation: flowDash 9s linear infinite;
}

.flow-node {
  position: absolute;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 78px;
  min-height: 38px;
  padding: 0 12px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 8px;
  color: rgba(255, 255, 255, 0.9);
  background: rgba(16, 22, 22, 0.42);
  box-shadow: 0 18px 42px rgba(0, 0, 0, 0.22);
  backdrop-filter: blur(12px);
  font-size: 0.78rem;
  font-weight: 850;
  animation: floatNode 6s ease-in-out infinite;
}

.flow-node-a {
  left: 4px;
  top: 43px;
}

.flow-node-b {
  left: 126px;
  top: 8px;
  animation-delay: 600ms;
}

.flow-node-c {
  left: 195px;
  top: 98px;
  animation-delay: 1100ms;
}

.flow-node-d {
  right: 0;
  bottom: 22px;
  animation-delay: 1500ms;
}

.band {
  padding: 90px 0;
}

.band-soft {
  background: var(--surface-soft);
}

.band-dark {
  color: #fff;
  background: var(--charcoal);
}

.section-head {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(260px, 0.55fr);
  gap: 42px;
  align-items: end;
  margin-bottom: 42px;
}

.section-head h2,
.legal-hero h1 {
  margin: 0;
  font-size: 2.35rem;
  line-height: 1.08;
  letter-spacing: 0;
}

.section-head p {
  margin: 0;
  color: var(--muted);
}

.band-dark .section-head p,
.band-dark .muted {
  color: rgba(255, 255, 255, 0.68);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border: 1px solid var(--line);
  background: var(--surface);
}

.trust-item {
  min-height: 136px;
  padding: 24px;
  border-right: 1px solid var(--line);
}

.trust-item:last-child {
  border-right: 0;
}

.trust-item strong,
.mini-card strong,
.deliverable strong,
.faq-item h3,
.policy-block h2 {
  display: block;
  margin-bottom: 8px;
}

.trust-item p,
.mini-card p,
.deliverable p,
.faq-item p,
.policy-block p,
.policy-block li,
.feedback-card p {
  margin: 0;
  color: var(--muted);
}

.split {
  display: grid;
  grid-template-columns: minmax(280px, 0.82fr) minmax(0, 1.18fr);
  gap: 54px;
  align-items: center;
}

.portrait-frame,
.image-frame {
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  background: #dfe6e3;
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.image-frame img {
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.content-stack > * + * {
  margin-top: 18px;
}

.content-stack h2,
.content-stack h3 {
  margin-bottom: 0;
}

.content-stack h2 {
  font-size: 2.25rem;
  line-height: 1.1;
  letter-spacing: 0;
}

.content-stack p {
  color: var(--muted);
}

.mini-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 26px;
}

.mini-card,
.deliverable,
.feedback-card,
.faq-item,
.service-card,
.comparison-card {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.mini-card {
  padding: 20px;
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.service-card {
  position: relative;
  display: flex;
  min-height: 100%;
  flex-direction: column;
  padding: 24px;
  overflow: hidden;
  transition:
    transform 220ms ease,
    border-color 220ms ease,
    box-shadow 220ms ease,
    background 220ms ease;
}

.service-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 4px;
  background: linear-gradient(90deg, var(--green), var(--blue), var(--amber));
  opacity: 0;
  transition: opacity 220ms ease;
}

.service-card:hover {
  transform: translateY(-6px);
  border-color: rgba(49, 93, 131, 0.34);
  box-shadow: var(--shadow-strong);
}

.service-card:hover::before,
.service-card.featured::before {
  opacity: 1;
}

.service-card.featured {
  border-color: rgba(63, 113, 89, 0.42);
  box-shadow: var(--shadow);
}

.service-topline {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.service-kicker {
  color: var(--green);
  font-size: 0.78rem;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0;
}

.service-badge {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 0 10px;
  border: 1px solid rgba(63, 113, 89, 0.2);
  border-radius: 999px;
  color: var(--ink);
  background: #f4f8f5;
  font-size: 0.74rem;
  font-weight: 850;
  white-space: nowrap;
}

.featured .service-badge {
  color: #fff;
  border-color: var(--green);
  background: var(--green);
}

.service-card h3 {
  margin: 10px 0 8px;
  font-size: 1.25rem;
  line-height: 1.16;
}

.price {
  margin: 0 0 16px;
  color: var(--blue);
  font-size: 2rem;
  font-weight: 850;
}

.service-card p,
.service-card li {
  color: var(--muted);
}

.service-card ul {
  padding-left: 18px;
  margin: 14px 0 20px;
}

.service-card li + li {
  margin-top: 8px;
}

.service-meta {
  display: grid;
  gap: 8px;
  margin-top: auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  font-size: 0.9rem;
}

.service-meta span {
  color: var(--muted);
}

.service-card .button {
  width: 100%;
  margin-top: 18px;
}

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

.deliverable {
  padding: 22px;
}

.before-after {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.comparison-card {
  position: relative;
  padding: 30px;
  overflow: hidden;
}

.comparison-card::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 4px;
  background: var(--line);
}

.after-card {
  border-color: rgba(63, 113, 89, 0.36);
  box-shadow: var(--shadow);
}

.after-card::after {
  background: linear-gradient(90deg, var(--green), var(--blue));
}

.comparison-label {
  display: inline-flex;
  align-items: center;
  min-height: 30px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--muted);
  background: var(--surface-soft);
  font-size: 0.78rem;
  font-weight: 850;
  text-transform: uppercase;
}

.after-card .comparison-label {
  color: #fff;
  background: var(--green);
}

.comparison-card h3 {
  margin: 18px 0 16px;
  font-size: 1.45rem;
  line-height: 1.15;
}

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

.comparison-list li {
  position: relative;
  padding-left: 24px;
  color: var(--muted);
}

.comparison-list li::before {
  content: "";
  position: absolute;
  top: 0.7em;
  left: 0;
  width: 9px;
  height: 9px;
  border-radius: 999px;
  background: var(--line);
}

.after-card .comparison-list li::before {
  background: var(--green);
}

.process {
  display: grid;
  grid-template-columns: minmax(0, 1.05fr) minmax(280px, 0.95fr);
  gap: 44px;
  align-items: center;
}

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

.step {
  position: relative;
  display: grid;
  grid-template-columns: 42px 1fr;
  gap: 16px;
  align-items: start;
  transition: transform 220ms ease;
}

.step:not(:last-child)::after {
  content: "";
  position: absolute;
  top: 48px;
  bottom: -7px;
  left: 20px;
  width: 2px;
  background: var(--line);
}

.step-number {
  position: relative;
  z-index: 1;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  border-radius: 8px;
  color: #fff;
  background: var(--green);
  font-weight: 850;
  transition: background 220ms ease, transform 220ms ease, box-shadow 220ms ease;
}

.step.is-active {
  transform: translateX(4px);
}

.step.is-active .step-number {
  background: var(--amber);
  box-shadow: 0 12px 26px rgba(201, 146, 59, 0.24);
  transform: scale(1.06);
}

.step h3 {
  margin: 0 0 5px;
}

.step p {
  margin: 0;
  color: var(--muted);
}

.feedback-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feedback-card {
  padding: 24px;
}

.feedback-card cite {
  display: block;
  margin-top: 18px;
  color: var(--ink);
  font-style: normal;
  font-weight: 800;
}

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

.faq-item {
  padding: 24px;
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(260px, 0.7fr);
  gap: 32px;
  align-items: center;
  padding: 34px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.04);
}

.contact-panel h2 {
  margin: 0 0 12px;
  font-size: 2rem;
}

.contact-panel p {
  margin: 0;
  color: rgba(255, 255, 255, 0.7);
}

.contact-lines {
  display: grid;
  gap: 12px;
}

.contact-lines a,
.contact-lines span {
  display: block;
  padding: 15px 16px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 8px;
  color: #fff;
  background: rgba(255, 255, 255, 0.06);
  font-weight: 760;
}

.site-footer {
  padding: 32px 0;
  border-top: 1px solid var(--line);
  background: var(--surface);
}

.footer-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 650;
}

.legal-hero {
  padding: 78px 0 36px;
}

.legal-layout {
  display: grid;
  grid-template-columns: minmax(0, 1fr) 290px;
  gap: 34px;
  padding-bottom: 82px;
}

.policy-block {
  margin-bottom: 16px;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.policy-block h2 {
  margin-top: 0;
  font-size: 1.35rem;
}

.policy-block ul {
  margin: 12px 0 0;
  padding-left: 20px;
}

.legal-side {
  position: sticky;
  top: 96px;
  align-self: start;
  padding: 24px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
}

.legal-side p {
  margin: 0 0 16px;
  color: var(--muted);
}

.legal-side .footer-links {
  flex-direction: column;
  align-items: flex-start;
}

.success-shell {
  display: grid;
  min-height: calc(100svh - 137px);
  place-items: center;
  padding: 70px 0;
}

.success-panel {
  width: min(760px, calc(100% - 40px));
  padding: 42px;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow);
}

.success-panel h1 {
  margin: 0 0 12px;
  font-size: 2.5rem;
  line-height: 1.08;
}

.success-panel p {
  color: var(--muted);
}

.mobile-sticky-cta {
  position: fixed;
  right: 14px;
  bottom: calc(14px + env(safe-area-inset-bottom));
  left: 14px;
  z-index: 60;
  display: none;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  border-radius: 8px;
  color: #fff;
  background: var(--charcoal);
  box-shadow: 0 18px 48px rgba(14, 27, 29, 0.28);
  font-weight: 850;
}

.reveal-ready {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 620ms ease, transform 620ms ease;
  transition-delay: var(--reveal-delay, 0ms);
}

.reveal-ready.is-visible {
  opacity: 1;
  transform: translateY(0);
}

.image-frame.reveal-ready,
.portrait-frame.reveal-ready {
  transform: translateY(26px) scale(0.985);
}

.image-frame.reveal-ready.is-visible,
.portrait-frame.reveal-ready.is-visible {
  transform: translateY(0) scale(1);
}

@keyframes heroEnter {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

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

@keyframes flowDash {
  to {
    stroke-dashoffset: -120;
  }
}

@keyframes floatNode {
  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-8px);
  }
}

@keyframes pulseDot {
  0%,
  100% {
    box-shadow: 0 0 0 0 rgba(201, 146, 59, 0.42);
  }

  50% {
    box-shadow: 0 0 0 8px rgba(201, 146, 59, 0);
  }
}

@media (max-width: 980px) {
  .nav-links {
    position: fixed;
    inset: 72px 16px auto;
    display: none;
    flex-direction: column;
    align-items: stretch;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: var(--surface);
    box-shadow: var(--shadow);
  }

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

  .menu-button {
    display: block;
  }

  .hero h1 {
    font-size: 3rem;
  }

  .section-head,
  .split,
  .process,
  .contact-panel,
  .before-after,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .trust-grid,
  .services-grid,
  .deliverables-grid,
  .feedback-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .trust-item:nth-child(2) {
    border-right: 0;
  }

  .trust-item {
    border-bottom: 1px solid var(--line);
  }

  .trust-item:nth-last-child(-n + 2) {
    border-bottom: 0;
  }

  .legal-side {
    position: static;
  }

  .hero-flow {
    right: 22px;
    width: 300px;
    height: 210px;
    opacity: 0.62;
  }
}

@media (max-width: 680px) {
  body {
    padding-bottom: 78px;
  }

  .container {
    width: min(100% - 28px, var(--max));
  }

  .nav-shell {
    min-height: 64px;
  }

  .brand-mark {
    width: 36px;
    height: 36px;
  }

  .nav-actions .button {
    display: none;
  }

  .hero {
    min-height: calc(100svh - 64px);
  }

  .hero::before {
    background-position: 62% center;
  }

  .hero::after {
    background:
      linear-gradient(90deg, rgba(8, 14, 15, 0.94) 0%, rgba(8, 14, 15, 0.7) 62%, rgba(8, 14, 15, 0.26) 100%),
      linear-gradient(0deg, rgba(8, 14, 15, 0.62) 0%, rgba(8, 14, 15, 0) 42%);
  }

  .hero-flow {
    display: none;
  }

  .hero-content {
    width: min(100% - 28px, 760px);
    padding-bottom: 52px;
  }

  .hero h1,
  .section-head h2,
  .content-stack h2,
  .legal-hero h1,
  .success-panel h1 {
    font-size: 2.25rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .hero-status {
    display: grid;
    grid-template-columns: 1fr;
    width: min(100%, 360px);
  }

  .hero-status span + span {
    border-top: 1px solid rgba(255, 255, 255, 0.15);
    border-left: 0;
  }

  .band {
    padding: 64px 0;
  }

  .trust-grid,
  .services-grid,
  .deliverables-grid,
  .feedback-grid,
  .faq-grid,
  .mini-grid {
    grid-template-columns: 1fr;
  }

  .trust-item,
  .trust-item:nth-child(2),
  .trust-item:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-item:last-child {
    border-bottom: 0;
  }

  .service-card,
  .faq-item,
  .feedback-card,
  .comparison-card,
  .policy-block,
  .success-panel {
    padding: 22px;
  }

  .service-topline {
    align-items: flex-start;
    flex-direction: column;
    gap: 8px;
  }

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

  .mobile-sticky-cta {
    display: flex;
  }
}

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

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }

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