:root {
  --ink: #f4f2e9;
  --muted: #b7c3ba;
  --subtle: #83958a;
  --forest-950: #04110d;
  --forest-900: #071b15;
  --forest-850: #0a211a;
  --forest-800: #102b22;
  --graphite: #101311;
  --graphite-soft: #161a17;
  --line: rgba(218, 232, 219, 0.16);
  --line-strong: rgba(218, 232, 219, 0.28);
  --accent: #b7da69;
  --accent-strong: #d0ed89;
  --warning: #d9b98c;
  --max: 1160px;
  --wide: 1320px;
  --shadow: 0 26px 80px rgba(0, 0, 0, 0.36);
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  background: var(--forest-950);
  color: var(--ink);
  font-family: "Aptos", "Segoe UI", Arial, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  letter-spacing: 0;
  text-rendering: optimizeLegibility;
}

body.nav-open {
  overflow: hidden;
}

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

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

button,
input,
select,
textarea {
  font: inherit;
  letter-spacing: 0;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

:focus-visible {
  outline: 3px solid var(--accent-strong);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  left: 16px;
  top: 12px;
  z-index: 1000;
  transform: translateY(-150%);
  padding: 10px 14px;
  background: var(--accent-strong);
  color: var(--forest-950);
  border-radius: 4px;
  font-weight: 700;
}

.skip-link:focus {
  transform: translateY(0);
}

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

.wide-container {
  width: min(calc(100% - 40px), var(--wide));
}

.section {
  padding: 128px 0;
  position: relative;
}

.texture-band {
  background-color: var(--forest-900);
  background-image: url("/assets/soldi-texture.png");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
}

.site-header {
  position: fixed;
  inset: 18px 0 auto;
  z-index: 100;
  pointer-events: none;
}

.nav-shell {
  width: min(calc(100% - 36px), 1080px);
  min-height: 66px;
  margin: 0 auto;
  padding: 8px 10px 8px 18px;
  display: grid;
  grid-template-columns: 180px 1fr 190px;
  align-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 36px;
  background: rgba(5, 18, 14, 0.91);
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.28);
  backdrop-filter: blur(18px);
  pointer-events: auto;
}

.wordmark {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  width: max-content;
  font-size: 20px;
  font-weight: 800;
  line-height: 1;
}

.wordmark-logo {
  width: 42px;
  height: 44px;
  flex: 0 0 auto;
  object-fit: contain;
}

.nav-links {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 27px;
}

.nav-links a {
  color: var(--muted);
  font-size: 14px;
  font-weight: 600;
  white-space: nowrap;
  transition: color 160ms ease;
}

.nav-links a:hover,
.nav-links a[aria-current="true"] {
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  background: transparent;
  color: var(--ink);
}

.nav-toggle svg,
.rail-icon svg {
  width: 21px;
  height: 21px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.button {
  min-height: 48px;
  padding: 12px 21px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--accent);
  border-radius: 5px;
  background: var(--accent);
  color: #0a170f;
  box-shadow: 0 0 0 4px rgba(183, 218, 105, 0.07);
  font-size: 15px;
  font-weight: 750;
  line-height: 1.25;
  text-align: center;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

.button:hover {
  background: var(--accent-strong);
  border-color: var(--accent-strong);
  transform: translateY(-2px);
}

.button-small {
  min-height: 46px;
  padding: 10px 16px;
  font-size: 13px;
}

.nav-cta {
  justify-self: end;
}

.button-quiet {
  background: rgba(3, 14, 11, 0.4);
  color: var(--ink);
  border-color: var(--line-strong);
  box-shadow: none;
}

.button-quiet:hover {
  background: rgba(244, 242, 233, 0.08);
  border-color: rgba(244, 242, 233, 0.4);
}

.hero {
  position: relative;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::after,
.cta-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(3, 14, 11, 0.43);
  pointer-events: none;
}

.hero-inner {
  position: relative;
  z-index: 1;
  padding-top: 168px;
  padding-bottom: 58px;
  text-align: center;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  overflow-wrap: break-word;
}

h1,
h2,
h3 {
  margin-top: 0;
  line-height: 1.12;
  letter-spacing: 0;
}

h1 {
  max-width: 970px;
  margin: 0 auto;
  font-size: 58px;
  font-weight: 800;
}

.hero-lead {
  max-width: 790px;
  margin: 24px auto 0;
  color: #ccd5ce;
  font-size: 19px;
  line-height: 1.65;
}

.hero-actions {
  margin-top: 32px;
  display: flex;
  justify-content: center;
  gap: 12px;
}

.hero-note {
  margin: 18px auto 0;
  color: var(--subtle);
  font-size: 14px;
}

.value-rail {
  max-width: 1020px;
  margin: 76px auto 0;
  border-top: 1px solid var(--line-strong);
}

.value-rail article {
  display: grid;
  grid-template-columns: 46px 255px 1fr;
  gap: 24px;
  align-items: center;
  padding: 22px 8px;
  border-bottom: 1px solid var(--line-strong);
  text-align: left;
}

.value-rail h2 {
  margin: 0;
  font-size: 17px;
}

.value-rail p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.rail-icon {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid var(--line-strong);
  border-radius: 50%;
  color: var(--accent-strong);
}

.section-heading {
  max-width: 810px;
  margin: 0 auto 62px;
  text-align: center;
}

.left-heading {
  margin-left: 0;
  text-align: left;
}

.section-heading h2,
.setup-band > .container > h2,
.cta-copy h2 {
  margin-bottom: 22px;
  font-size: 43px;
  font-weight: 780;
}

.section-heading > p:not(.eyebrow),
.cta-copy > p {
  color: var(--muted);
  font-size: 17px;
}

.problem-section {
  background: #f0eee5;
  color: #132019;
}

.problem-section .eyebrow {
  color: #416525;
}

.problem-section .section-heading > p:not(.eyebrow) {
  color: #526058;
}

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

.problem-card {
  min-height: 305px;
  padding: 26px;
  border: 1px solid rgba(19, 32, 25, 0.14);
  border-radius: 6px;
  background: #faf9f4;
}

.problem-card > span,
.feature-card > span,
.audience-index,
.control-list article > span,
.setup-grid article > span {
  color: #65883b;
  font-size: 12px;
  font-weight: 800;
}

.problem-card h3 {
  margin: 42px 0 16px;
  font-size: 22px;
}

.problem-card p {
  margin: 0;
  color: #59655e;
}

.section-close {
  max-width: 780px;
  margin: 42px auto 0;
  color: #33433a;
  font-size: 19px;
  font-weight: 650;
  text-align: center;
}

.product-section {
  overflow: hidden;
  background: var(--forest-900);
}

.product-orbit {
  min-height: 700px;
  display: grid;
  grid-template-columns: minmax(190px, 1fr) minmax(600px, 2.8fr) minmax(190px, 1fr);
  grid-template-rows: repeat(4, 1fr);
  gap: 18px 30px;
  align-items: center;
}

.app-figure {
  grid-column: 2;
  grid-row: 1 / 5;
  margin: 0;
  position: relative;
}

.app-figure::before {
  content: "";
  position: absolute;
  inset: -18px;
  z-index: -1;
  border: 1px solid var(--line);
  border-radius: 8px;
}

.app-figure img {
  width: 100%;
  height: auto;
  aspect-ratio: 36 / 19;
  object-fit: cover;
  border: 1px solid rgba(240, 244, 236, 0.22);
  border-radius: 7px;
  box-shadow: var(--shadow);
}

.orbit-label {
  position: relative;
  color: var(--muted);
  font-size: 13px;
}

.orbit-label strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
  font-size: 15px;
}

.orbit-label::after {
  content: "";
  position: absolute;
  top: 50%;
  width: 46px;
  border-top: 1px solid rgba(183, 218, 105, 0.48);
}

.orbit-a,
.orbit-b,
.orbit-c,
.orbit-d {
  text-align: right;
}

.orbit-a::after,
.orbit-b::after,
.orbit-c::after,
.orbit-d::after {
  right: -63px;
}

.orbit-e::after,
.orbit-f::after,
.orbit-g::after,
.orbit-h::after {
  left: -63px;
}

.orbit-a,
.orbit-e { grid-row: 1; }
.orbit-b,
.orbit-f { grid-row: 2; }
.orbit-c,
.orbit-g { grid-row: 3; }
.orbit-d,
.orbit-h { grid-row: 4; }
.orbit-a,
.orbit-b,
.orbit-c,
.orbit-d { grid-column: 1; }
.orbit-e,
.orbit-f,
.orbit-g,
.orbit-h { grid-column: 3; }

.compare-section {
  background: var(--graphite);
}

.comparison-table {
  border-top: 1px solid var(--line-strong);
}

.comparison-head,
.comparison-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
}

.comparison-head span {
  padding: 16px 24px;
  color: var(--subtle);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.comparison-head span:last-child,
.comparison-row p:last-child {
  border-left: 1px solid var(--line-strong);
}

.comparison-row {
  border-top: 1px solid var(--line);
}

.comparison-row p {
  margin: 0;
  padding: 25px 24px;
  color: #aeb8b1;
}

.comparison-row p:last-child {
  color: var(--ink);
  font-weight: 620;
}

.process-section {
  background: var(--forest-850);
}

.process-flow {
  display: grid;
  grid-template-columns: 1fr 90px 1fr 90px 1fr;
  align-items: stretch;
}

.process-step {
  padding: 34px 6px;
  text-align: center;
}

.step-number {
  width: 60px;
  height: 60px;
  margin: 0 auto 28px;
  display: grid;
  place-items: center;
  border: 1px solid var(--accent);
  border-radius: 7px;
  color: var(--accent-strong);
  font-size: 15px;
  font-weight: 800;
}

.process-step h3 {
  margin-bottom: 16px;
  font-size: 23px;
}

.process-step p {
  min-height: 132px;
  margin: 0;
  color: var(--muted);
}

.process-step > span {
  display: inline-block;
  margin-top: 24px;
  color: var(--accent-strong);
  font-size: 12px;
  font-weight: 750;
}

.process-link {
  display: grid;
  align-items: center;
}

.process-link span {
  border-top: 1px dashed rgba(183, 218, 105, 0.55);
}

.feature-section {
  background: #edebe2;
  color: #152019;
}

.feature-section .eyebrow {
  color: #466a29;
}

.feature-section .section-heading > p:not(.eyebrow) {
  color: #5a655e;
}

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

.feature-card {
  min-height: 310px;
  padding: 24px;
  border: 1px solid rgba(21, 32, 25, 0.13);
  border-radius: 5px;
  background: #f8f7f1;
}

.feature-card h3 {
  margin: 36px 0 14px;
  font-size: 20px;
}

.feature-card p {
  margin: 0;
  color: #5b665f;
  font-size: 15px;
}

.audience-section {
  background: var(--forest-900);
}

.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  align-items: stretch;
}

.audience-card {
  padding: 32px;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: #0b1511;
}

.audience-card.featured {
  border-color: rgba(183, 218, 105, 0.62);
  background: #101a13;
}

.audience-index {
  color: var(--accent-strong);
}

.audience-card h3 {
  margin: 38px 0 14px;
  font-size: 28px;
}

.audience-card > p {
  min-height: 132px;
  margin: 0;
  color: var(--muted);
}

.audience-card ul {
  margin: 28px 0 30px;
  padding: 22px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.audience-card li {
  position: relative;
  padding: 6px 0 6px 20px;
  color: #c7d0c9;
  font-size: 14px;
}

.audience-card li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 15px;
  width: 8px;
  border-top: 2px solid var(--accent);
}

.button-card {
  width: 100%;
  margin-top: auto;
  background: transparent;
  color: var(--ink);
  box-shadow: none;
}

.center-action {
  margin-top: 42px;
  text-align: center;
}

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

.control-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 82px;
  align-items: start;
}

.control-list {
  border-top: 1px solid var(--line-strong);
}

.control-list article {
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line-strong);
}

.control-list article > span {
  color: var(--accent-strong);
}

.control-list h3 {
  margin-bottom: 8px;
  font-size: 20px;
}

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

.accountant-note {
  margin-top: 74px;
  padding: 34px 38px;
  border-left: 3px solid var(--warning);
  background: #211f1a;
}

.accountant-note > span {
  color: var(--warning);
  font-size: 12px;
  font-weight: 800;
  text-transform: uppercase;
}

.accountant-note h3 {
  margin: 10px 0 12px;
  font-size: 27px;
}

.accountant-note p {
  max-width: 900px;
  margin: 0;
  color: #d3d0c5;
}

.setup-band {
  padding: 106px 0;
  background: #020806;
  border-block: 1px solid var(--line);
}

.setup-band > .container > h2 {
  max-width: 650px;
  margin: 0 0 62px;
}

.setup-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 50px;
}

.setup-grid article {
  padding-top: 20px;
  border-top: 1px solid var(--line-strong);
}

.setup-grid article > span {
  color: var(--accent-strong);
}

.setup-grid h3 {
  margin: 28px 0 14px;
  font-size: 22px;
}

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

.faq-section {
  background: #efede4;
  color: #152019;
}

.faq-section .eyebrow {
  color: #466a29;
}

.faq-container {
  max-width: 960px;
}

.faq-list {
  border-top: 1px solid rgba(21, 32, 25, 0.2);
}

.faq-list details {
  border-bottom: 1px solid rgba(21, 32, 25, 0.2);
}

.faq-list summary {
  min-height: 76px;
  padding: 20px 52px 20px 0;
  display: flex;
  align-items: center;
  position: relative;
  cursor: pointer;
  list-style: none;
  font-size: 19px;
  font-weight: 700;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  content: "+";
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  color: #466a29;
  font-size: 28px;
  font-weight: 400;
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-list details p {
  max-width: 810px;
  margin: -2px 0 24px;
  color: #59655e;
}

.cta-section {
  position: relative;
  padding: 130px 0;
  overflow: hidden;
}

.cta-layout {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 82px;
  align-items: start;
}

.cta-copy h2 {
  font-size: 45px;
}

.text-link {
  display: inline-block;
  margin-top: 14px;
  padding-bottom: 3px;
  border-bottom: 1px solid var(--accent);
  color: var(--accent-strong);
  font-weight: 700;
}

.contact-form {
  padding: 32px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: rgba(3, 12, 9, 0.86);
  box-shadow: var(--shadow);
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.contact-form label {
  display: grid;
  gap: 8px;
  color: #d4dbd5;
  font-size: 13px;
  font-weight: 700;
}

.contact-form input,
.contact-form select,
.contact-form textarea {
  width: 100%;
  min-height: 48px;
  padding: 11px 13px;
  border: 1px solid var(--line-strong);
  border-radius: 4px;
  background: #0b1712;
  color: var(--ink);
}

.contact-form textarea {
  resize: vertical;
}

.contact-form select {
  color-scheme: dark;
}

.full-field {
  grid-column: 1 / -1;
}

.form-button {
  width: 100%;
  margin-top: 22px;
  border: 0;
  cursor: pointer;
}

.form-note {
  margin: 12px 0 0;
  color: var(--subtle);
  font-size: 12px;
  text-align: center;
}

.site-footer {
  padding: 78px 0 24px;
  background: #020604;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.7fr 0.7fr 0.9fr;
  gap: 80px;
}

.footer-brand p {
  max-width: 570px;
  color: var(--subtle);
  font-size: 14px;
}

.footer-brand p a {
  color: var(--muted);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.footer-links {
  display: grid;
  align-content: start;
  gap: 10px;
}

.footer-links h2 {
  margin-bottom: 14px;
  font-size: 15px;
}

.footer-links a {
  color: var(--subtle);
  font-size: 14px;
}

.footer-links a:hover {
  color: var(--ink);
}

.footer-bottom {
  margin-top: 62px;
  padding-top: 22px;
  display: flex;
  justify-content: space-between;
  gap: 24px;
  border-top: 1px solid var(--line);
  color: #6e7d73;
  font-size: 12px;
}

.reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (max-width: 1100px) {
  .nav-shell {
    grid-template-columns: 150px 1fr 170px;
  }

  .nav-links {
    gap: 16px;
  }

  .product-orbit {
    grid-template-columns: 170px minmax(500px, 1fr) 170px;
    gap: 14px 22px;
  }

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

  .control-layout,
  .cta-layout {
    gap: 50px;
  }
}

@media (max-width: 900px) {
  .section {
    padding: 96px 0;
  }

  .nav-shell {
    grid-template-columns: 1fr auto;
    min-height: 62px;
  }

  .nav-toggle {
    display: grid;
    grid-column: 2;
  }

  .nav-links {
    position: absolute;
    top: 70px;
    left: 18px;
    right: 18px;
    padding: 20px;
    display: none;
    align-items: stretch;
    flex-direction: column;
    gap: 0;
    border: 1px solid var(--line-strong);
    border-radius: 8px;
    background: #06130f;
    box-shadow: var(--shadow);
  }

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

  .nav-links a {
    padding: 13px 8px;
    border-bottom: 1px solid var(--line);
    font-size: 16px;
  }

  .nav-links a:last-child {
    border-bottom: 0;
  }

  .nav-cta {
    display: none;
  }

  h1 {
    font-size: 46px;
  }

  .hero-inner {
    padding-top: 142px;
  }

  .value-rail article {
    grid-template-columns: 42px 220px 1fr;
    gap: 16px;
  }

  .problem-grid,
  .audience-grid,
  .setup-grid {
    grid-template-columns: 1fr;
  }

  .problem-card,
  .feature-card {
    min-height: 0;
  }

  .product-orbit {
    min-height: 0;
    display: flex;
    flex-direction: column;
  }

  .app-figure {
    order: -1;
    width: min(100%, 760px);
    margin-bottom: 28px;
  }

  .orbit-label {
    width: min(100%, 760px);
    padding: 15px 0;
    border-bottom: 1px solid var(--line);
    text-align: left;
  }

  .orbit-label::after {
    display: none;
  }

  .process-flow {
    grid-template-columns: 1fr;
  }

  .process-link {
    height: 40px;
    width: 1px;
    margin: 0 auto;
    border-left: 1px dashed rgba(183, 218, 105, 0.55);
  }

  .process-link span {
    display: none;
  }

  .process-step p {
    min-height: 0;
  }

  .control-layout,
  .cta-layout {
    grid-template-columns: 1fr;
  }

  .footer-grid {
    grid-template-columns: 1.5fr 0.7fr 0.9fr;
    gap: 36px;
  }
}

@media (max-width: 640px) {
  .container,
  .wide-container {
    width: min(calc(100% - 28px), var(--max));
  }

  .site-header {
    inset: 10px 0 auto;
  }

  .nav-shell {
    width: calc(100% - 20px);
    padding-left: 12px;
  }

  .hero-inner {
    padding-top: 120px;
    padding-bottom: 42px;
  }

  .eyebrow {
    font-size: 11px;
  }

  h1 {
    font-size: 38px;
  }

  .hero-lead {
    font-size: 17px;
  }

  .hero-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .value-rail {
    margin-top: 52px;
  }

  .value-rail article {
    grid-template-columns: 38px 1fr;
    padding: 20px 0;
  }

  .value-rail p {
    grid-column: 2;
  }

  .section {
    padding: 78px 0;
  }

  .section-heading {
    margin-bottom: 42px;
  }

  .section-heading h2,
  .setup-band > .container > h2,
  .cta-copy h2 {
    font-size: 33px;
  }

  .problem-grid,
  .feature-grid {
    grid-template-columns: 1fr;
  }

  .comparison-head span {
    padding: 14px 10px;
    font-size: 10px;
  }

  .comparison-row p {
    padding: 18px 10px;
    font-size: 14px;
  }

  .app-figure::before {
    inset: -8px;
  }

  .audience-card {
    padding: 26px;
  }

  .audience-card > p {
    min-height: 0;
  }

  .control-list article {
    grid-template-columns: 34px 1fr;
  }

  .accountant-note {
    margin-top: 50px;
    padding: 26px 24px;
  }

  .setup-band {
    padding: 78px 0;
  }

  .setup-grid {
    gap: 34px;
  }

  .faq-list summary {
    min-height: 68px;
    font-size: 17px;
  }

  .cta-section {
    padding: 90px 0;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .full-field {
    grid-column: auto;
  }

  .contact-form {
    padding: 22px;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .footer-bottom {
    flex-direction: column;
  }
}

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

  *,
  *::before,
  *::after {
    transition-duration: 0.01ms !important;
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
  }

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