:root {
  --ink: #191816;
  --muted: #67625b;
  --soft: #f5f3ee;
  --paper: #fffdf8;
  --line: rgba(25, 24, 22, 0.12);
  --accent: #1c6b63;
  --accent-2: #c65f35;
  --blueprint: #334c8a;
  --shadow: 0 24px 70px rgba(28, 33, 31, 0.14);
  --shadow-soft: 0 18px 50px rgba(28, 33, 31, 0.09);
  color-scheme: light;
  font-family: Inter, "SF Pro Display", "SF Pro Text", "PingFang SC", "Microsoft YaHei", Arial, sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  letter-spacing: 0;
}

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

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

.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 20;
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 24px;
  min-height: 54px;
  padding: 0 clamp(18px, 5vw, 72px);
  color: rgba(255, 255, 255, 0.92);
  background: rgba(18, 17, 15, 0.26);
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
  transition: background 220ms ease, color 220ms ease, border-color 220ms ease, backdrop-filter 220ms ease;
}

.site-header.is-scrolled {
  color: var(--ink);
  background: rgba(255, 253, 248, 0.86);
  border-bottom: 1px solid var(--line);
  backdrop-filter: blur(22px);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  font-weight: 760;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 29px;
  height: 29px;
  border: 1px solid currentColor;
  border-radius: 50%;
  font-size: 14px;
  line-height: 1;
}

.brand-text {
  font-size: 15px;
  white-space: nowrap;
}

.nav {
  justify-self: center;
  display: flex;
  align-items: center;
  gap: clamp(16px, 2.8vw, 34px);
  font-size: 13px;
}

.nav a,
.header-action {
  opacity: 0.86;
  transition: opacity 180ms ease, transform 180ms ease, background 180ms ease;
}

.nav a:hover,
.header-action:hover {
  opacity: 1;
}

.header-action {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 32px;
  padding: 0 15px;
  border-radius: 999px;
  color: #fff;
  background: var(--accent);
  font-size: 13px;
  font-weight: 700;
}

.site-header:not(.is-scrolled) .header-action {
  background: rgba(255, 255, 255, 0.18);
  border: 1px solid rgba(255, 255, 255, 0.26);
}

.header-action:hover {
  transform: translateY(-1px);
}

.hero {
  position: relative;
  min-height: 94vh;
  display: grid;
  align-items: end;
  overflow: hidden;
  isolation: isolate;
  background: #111;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(circle at 18% 20%, rgba(255, 255, 255, 0.12), transparent 24%),
    linear-gradient(180deg, rgba(8, 8, 7, 0.2), rgba(8, 8, 7, 0.08) 34%, rgba(8, 8, 7, 0.78)),
    linear-gradient(90deg, rgba(8, 8, 7, 0.68), rgba(8, 8, 7, 0.12) 58%, rgba(8, 8, 7, 0.34));
}

.hero-media {
  position: absolute;
  inset: 0;
  z-index: -2;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.02);
}

.hero-content {
  width: min(1080px, calc(100% - 40px));
  margin: 0 auto;
  padding: 140px 0 76px;
  color: #fff;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  color: inherit;
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  opacity: 0.74;
}

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

h1 {
  max-width: 980px;
  margin-bottom: 24px;
  font-size: clamp(52px, 8vw, 108px);
  line-height: 0.98;
  font-weight: 780;
  letter-spacing: -0.045em;
}

h2 {
  margin-bottom: 18px;
  font-size: clamp(34px, 5vw, 64px);
  line-height: 1.06;
  font-weight: 780;
  letter-spacing: -0.035em;
}

h3 {
  margin-bottom: 10px;
  font-size: 22px;
  line-height: 1.25;
  letter-spacing: -0.015em;
}

p {
  color: var(--muted);
  font-size: 18px;
  line-height: 1.8;
}

.hero-copy {
  max-width: 760px;
  color: rgba(255, 255, 255, 0.84);
  font-size: clamp(18px, 2.2vw, 24px);
  line-height: 1.65;
}

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

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 9px;
  min-height: 48px;
  padding: 0 23px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-size: 16px;
  font-weight: 760;
  transition: transform 180ms ease, background 180ms ease, color 180ms ease, border-color 180ms ease;
}

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

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

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

.button.secondary {
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.54);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(12px);
}

.button.soft {
  color: var(--accent);
  border-color: rgba(28, 107, 99, 0.18);
  background: rgba(28, 107, 99, 0.08);
}

.link-more {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  color: var(--accent);
  font-size: 16px;
  font-weight: 760;
  transition: gap 180ms ease, opacity 180ms ease;
}

.link-more:hover {
  gap: 9px;
  opacity: 0.82;
}

.link-more-light {
  color: rgba(255, 255, 255, 0.9);
}

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

.intro {
  padding: clamp(70px, 12vw, 150px) 20px;
}

.intro-inner {
  width: min(980px, 100%);
  margin: 0 auto;
  text-align: center;
}

.intro-inner .section-kicker,
.section-heading .section-kicker,
.resources-copy .section-kicker,
.contact-card .section-kicker,
.roadmap-copy .section-kicker {
  color: var(--accent);
}

.intro-inner p:last-child {
  width: min(820px, 100%);
  margin: 0 auto;
}

.product-section,
.features,
.ui-showcase,
.pain-section,
.solutions,
.contact,
.support {
  padding: clamp(76px, 12vw, 150px) clamp(20px, 5vw, 72px);
}

.section-heading {
  width: min(940px, 100%);
  margin: 0 auto clamp(46px, 7vw, 86px);
  text-align: center;
}

.section-heading p:not(.section-kicker) {
  width: min(720px, 100%);
  margin: 0 auto;
}

.pain-layout {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(320px, 0.95fr) minmax(0, 1.05fr);
  gap: clamp(24px, 5vw, 62px);
  align-items: center;
}

.pain-visual {
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: #fff8ed;
  box-shadow: var(--shadow-soft);
}

.pain-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.pain-grid,
.feature-grid,
.solution-grid,
.support-grid,
.roadmap-grid {
  display: grid;
  gap: 18px;
}

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

.pain-grid article,
.feature-grid article,
.solution-grid article,
.support-grid article,
.roadmap-grid article {
  position: relative;
  padding: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: 0 14px 40px rgba(28, 33, 31, 0.06);
}

.pain-grid span,
.feature-grid span,
.roadmap-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 36px;
  height: 26px;
  margin-bottom: 22px;
  padding: 0 10px;
  border-radius: 999px;
  color: var(--accent-2);
  background: rgba(198, 95, 53, 0.09);
  font-size: 12px;
  font-weight: 850;
}

.pain-grid p,
.feature-grid p,
.solution-grid p,
.support-grid p,
.roadmap-grid p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
}

.product-stage {
  width: min(1180px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: minmax(300px, 440px) minmax(0, 1fr);
  gap: clamp(28px, 6vw, 88px);
  align-items: center;
}

.phone-shell {
  width: min(100%, 390px);
  aspect-ratio: 9 / 18.6;
  margin: 0 auto;
  padding: 14px;
  border-radius: 46px;
  background: #171816;
  box-shadow: var(--shadow);
}

.phone-status {
  width: 96px;
  height: 25px;
  margin: 0 auto 10px;
  border-radius: 999px;
  background: #050505;
}

.app-screen {
  height: calc(100% - 35px);
  padding: 24px;
  overflow: hidden;
  border-radius: 34px;
  background:
    linear-gradient(140deg, rgba(28, 107, 99, 0.14), transparent 34%),
    #f8f5ec;
}

.app-top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  margin-bottom: 24px;
  color: var(--ink);
}

.app-top span {
  font-size: 17px;
  font-weight: 760;
}

.app-top strong {
  color: var(--accent);
  font-size: 38px;
}

.room-plan {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  grid-template-rows: 1fr 0.8fr 0.9fr;
  gap: 8px;
  height: 45%;
  padding: 10px;
  border: 2px solid rgba(51, 76, 138, 0.5);
  background: rgba(255, 255, 255, 0.66);
}

.room-plan::before,
.room-plan::after {
  content: "";
  position: absolute;
  border: 1px dashed rgba(198, 95, 53, 0.5);
}

.room-plan::before {
  inset: 18% 20% 18% 18%;
}

.room-plan::after {
  width: 70px;
  height: 70px;
  right: 18px;
  bottom: 24px;
  border-radius: 50%;
}

.room-plan span {
  min-height: 52px;
  background: rgba(51, 76, 138, 0.11);
  border: 1px solid rgba(51, 76, 138, 0.2);
}

.room-plan span:first-child {
  grid-row: span 2;
}

.swatches {
  display: flex;
  gap: 10px;
  margin: 22px 0;
}

.swatches i {
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 3px solid #fff;
  box-shadow: 0 8px 24px rgba(22, 22, 20, 0.1);
}

.swatches i:nth-child(1) { background: #ded6c8; }
.swatches i:nth-child(2) { background: #6f8a84; }
.swatches i:nth-child(3) { background: #334c8a; }
.swatches i:nth-child(4) { background: #c65f35; }

.task-list {
  display: grid;
  gap: 10px;
}

.task-list p {
  display: flex;
  align-items: center;
  gap: 10px;
  min-height: 46px;
  margin: 0;
  padding: 0 14px;
  border: 1px solid rgba(25, 24, 22, 0.08);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.76);
  color: var(--ink);
  font-size: 15px;
  line-height: 1.2;
}

.task-list b {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: var(--accent);
}

.feature-list {
  display: grid;
  gap: 20px;
}

.feature-list article {
  padding: 30px;
  border-top: 1px solid var(--line);
}

.feature-icon {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  margin-bottom: 20px;
  border-radius: 50%;
  color: #fff;
  background: var(--ink);
  font-size: 20px;
}

.feature-list p,
.steps p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.75;
}

.ui-showcase {
  background:
    radial-gradient(circle at 50% 0%, rgba(51, 76, 138, 0.11), transparent 34%),
    var(--paper);
}

.ui-overview {
  width: min(1180px, 100%);
  margin: 0 auto clamp(24px, 4vw, 42px);
  display: grid;
  grid-template-columns: minmax(0, 1.28fr) minmax(300px, 0.72fr);
  gap: clamp(24px, 5vw, 58px);
  align-items: center;
  padding: clamp(18px, 3vw, 30px);
  border: 1px solid var(--line);
  border-radius: 36px;
  background: #f8f3ea;
  box-shadow: var(--shadow-soft);
}

.ui-overview img {
  width: 100%;
  border-radius: 28px;
  box-shadow: 0 22px 54px rgba(25, 24, 22, 0.13);
}

.ui-overview span {
  display: block;
  margin-bottom: 14px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ui-overview p {
  margin-bottom: 0;
}

.ui-stage {
  width: min(1240px, 100%);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
}

.ui-card {
  position: relative;
  min-height: 520px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: #f7f3ec;
  box-shadow: var(--shadow-soft);
}

.ui-card-large {
  grid-column: span 2;
}

.ui-card-dark {
  color: #fff;
  background: #161614;
}

.ui-card img {
  width: min(82%, 315px);
  max-height: 430px;
  margin: 28px auto 0;
  object-fit: contain;
  border-radius: 26px;
  box-shadow: 0 24px 58px rgba(25, 24, 22, 0.2);
}

.ui-card-large img {
  width: min(56%, 330px);
}

.ui-card div {
  padding: 28px;
}

.ui-card span {
  display: block;
  margin-bottom: 12px;
  color: var(--accent);
  font-size: 12px;
  font-weight: 850;
  text-transform: uppercase;
}

.ui-card-dark span {
  color: rgba(255, 255, 255, 0.68);
}

.ui-card h3 {
  margin-bottom: 10px;
}

.ui-card p {
  margin-bottom: 0;
  font-size: 16px;
  line-height: 1.72;
}

.ui-card-dark p {
  color: rgba(255, 255, 255, 0.72);
}

.feature-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.feature-grid article {
  min-height: 250px;
  display: flex;
  flex-direction: column;
}

.feature-grid article p {
  margin-top: auto;
}

.workflow {
  padding: clamp(76px, 12vw, 145px) clamp(20px, 5vw, 72px);
}

.steps {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding: 0;
  list-style: none;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid var(--line);
  border-left: 1px solid var(--line);
}

.steps li {
  min-height: 292px;
  padding: 28px;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background: rgba(255, 253, 248, 0.42);
}

.steps span {
  display: block;
  margin-bottom: 82px;
  color: var(--accent-2);
  font-size: 14px;
  font-weight: 850;
}

.solution-grid {
  width: min(1180px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(4, minmax(0, 1fr));
}

.solution-grid article {
  min-height: 315px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  overflow: hidden;
  background:
    radial-gradient(circle at 20% 0%, rgba(28, 107, 99, 0.13), transparent 38%),
    #faf8f2;
}

.solution-grid article::before {
  content: "";
  position: absolute;
  inset: 0;
  opacity: 0;
  background: linear-gradient(180deg, transparent, rgba(28, 107, 99, 0.08));
  transition: opacity 180ms ease;
}

.solution-grid article:hover::before {
  opacity: 1;
}

.solution-grid article > * {
  position: relative;
}

.solution-grid .link-more {
  margin-top: 20px;
}

.roadmap {
  display: grid;
  grid-template-columns: minmax(0, 0.82fr) minmax(360px, 1.18fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding: clamp(76px, 12vw, 145px) clamp(20px, 5vw, 72px);
}

.roadmap-copy {
  max-width: 620px;
  justify-self: end;
}

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

.roadmap-grid article {
  background: var(--paper);
}

.resources {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(360px, 1.1fr);
  gap: clamp(36px, 6vw, 80px);
  align-items: center;
  padding: clamp(76px, 12vw, 145px) clamp(20px, 5vw, 72px);
}

.resources-copy {
  max-width: 640px;
  justify-self: end;
}

.resource-panel {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  border: 1px solid var(--line);
  background: var(--line);
  border-radius: 30px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.resource-panel a {
  min-height: 188px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
  transition: background 180ms ease;
}

.resource-panel a:hover {
  background: #f7f2e9;
}

.resource-panel span {
  color: var(--accent);
  font-size: 13px;
  font-weight: 850;
}

.resource-panel strong {
  display: block;
  margin: 26px 0 8px;
  font-size: clamp(21px, 2vw, 28px);
}

.resource-panel small {
  color: var(--muted);
  font-size: 14px;
  line-height: 1.6;
}

.support-grid {
  width: min(1120px, 100%);
  margin: 0 auto;
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.support-grid article {
  min-height: 290px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--paper);
}

.support-grid .button,
.support-grid .link-more {
  align-self: flex-start;
  margin-top: 24px;
}

.contact {
  background:
    linear-gradient(135deg, rgba(51, 76, 138, 0.1), transparent 30%),
    var(--paper);
}

.contact-card {
  width: min(980px, 100%);
  margin: 0 auto;
  padding: clamp(34px, 6vw, 74px);
  border: 1px solid var(--line);
  border-radius: 34px;
  background: rgba(255, 253, 248, 0.78);
  box-shadow: var(--shadow);
}

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

.contact-lines {
  display: grid;
  gap: 1px;
  margin-top: 34px;
  border: 1px solid var(--line);
  border-radius: 22px;
  overflow: hidden;
  background: var(--line);
}

.contact-lines p {
  display: grid;
  grid-template-columns: 90px 1fr;
  gap: 18px;
  margin: 0;
  padding: 16px 18px;
  background: #fffaf1;
  color: var(--ink);
  font-size: 16px;
  line-height: 1.45;
}

.contact-lines span {
  color: var(--muted);
  font-weight: 760;
}

.site-footer {
  padding: 44px clamp(20px, 5vw, 72px) 24px;
  border-top: 1px solid var(--line);
  background: #f1eee7;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.35fr repeat(4, minmax(120px, 1fr));
  gap: clamp(24px, 4vw, 56px);
  width: min(1180px, 100%);
  margin: 0 auto 34px;
}

.footer-grid h2,
.footer-grid h3,
.footer-grid p {
  margin: 0;
}

.footer-grid h2 {
  margin-bottom: 10px;
  font-size: 22px;
  letter-spacing: -0.02em;
}

.footer-grid h3 {
  margin-bottom: 12px;
  color: var(--ink);
  font-size: 14px;
}

.footer-grid p,
.footer-grid a,
.footer-bottom p {
  color: var(--muted);
  font-size: 13px;
  line-height: 1.6;
}

.footer-grid nav {
  display: grid;
  align-content: start;
  gap: 8px;
}

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

.footer-bottom {
  width: min(1180px, 100%);
  margin: 0 auto;
  padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex;
  justify-content: space-between;
  gap: 18px;
}

.footer-bottom p {
  margin: 0;
}

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

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

@media (max-width: 1100px) {
  .solution-grid,
  .feature-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ui-stage {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .ui-card,
  .ui-card-large {
    grid-column: span 1;
  }

  .footer-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

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

  .nav {
    display: none;
  }

  .header-action {
    justify-self: end;
  }

  .hero {
    min-height: 88vh;
  }

  .hero-content {
    padding-bottom: 46px;
  }

  .product-stage,
  .resources,
  .roadmap,
  .pain-layout,
  .ui-overview {
    grid-template-columns: 1fr;
  }

  .resources-copy,
  .roadmap-copy {
    justify-self: start;
  }

  .steps,
  .support-grid {
    grid-template-columns: 1fr;
  }

  .steps span {
    margin-bottom: 42px;
  }
}

@media (max-width: 680px) {
  .pain-grid,
  .feature-grid,
  .solution-grid,
  .ui-stage,
  .resource-panel,
  .footer-grid {
    grid-template-columns: 1fr;
  }

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

  .ui-card img,
  .ui-card-large img {
    width: min(78%, 290px);
    max-height: 390px;
  }

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

@media (max-width: 560px) {
  .site-header {
    min-height: 58px;
    padding: 0 16px;
  }

  .brand-text {
    font-size: 14px;
  }

  .header-action {
    min-height: 34px;
    padding: 0 12px;
    font-size: 13px;
  }

  h1 {
    font-size: 48px;
  }

  h2 {
    font-size: 34px;
  }

  p,
  .hero-copy {
    font-size: 17px;
  }

  .hero-actions {
    align-items: stretch;
  }

  .button {
    width: 100%;
  }

  .link-more {
    justify-content: center;
    width: 100%;
    min-height: 44px;
  }

  .product-section,
  .features,
  .ui-showcase,
  .pain-section,
  .solutions,
  .contact,
  .support,
  .workflow,
  .resources,
  .roadmap,
  .intro {
    padding-left: 16px;
    padding-right: 16px;
  }

  .phone-shell {
    border-radius: 38px;
  }

  .app-screen {
    padding: 18px;
    border-radius: 28px;
  }

  .feature-list article,
  .pain-grid article,
  .feature-grid article,
  .solution-grid article,
  .support-grid article,
  .roadmap-grid article,
  .steps li,
  .contact-card {
    padding: 22px;
  }

  .contact-lines p {
    grid-template-columns: 1fr;
    gap: 4px;
  }
}

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

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