:root {
  --dark: #050813;
  --dark-2: #090f1f;
  --surface: #f2f5fa;
  --surface-2: #e9eef7;
  --white: #ffffff;
  --ink: #101522;
  --muted: rgba(16, 21, 34, 0.62);
  --muted-dark: rgba(255, 255, 255, 0.68);
  --line: rgba(16, 21, 34, 0.1);
  --line-dark: rgba(255, 255, 255, 0.14);
  --primary: #8b5cf6;
  --primary-2: #6d5dfc;
  --cyan: #70e7ff;
  --lime: #c8ff6e;
  --pink: #ff9cc8;
  --orange: #ffb067;
  --radius: 22px;
  --radius-lg: 34px;
  --shadow: 0 30px 90px rgba(15, 23, 42, 0.14);
  --container: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

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

body.nav-open {
  overflow: hidden;
}

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

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

.sr-only,
.skip-link:not(:focus) {
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  overflow: hidden;
  clip: rect(0, 0, 0, 0);
  white-space: nowrap;
  border: 0;
}

.skip-link:focus {
  position: fixed;
  top: 14px;
  left: 14px;
  z-index: 999;
  padding: 12px 16px;
  color: var(--dark);
  background: var(--lime);
  border-radius: 999px;
  font-weight: 900;
}

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

.section {
  padding: 130px 0 0;
}

.light-section {
  background: var(--surface);
}

.site-header {
  position: fixed;
  top: 18px;
  left: 0;
  right: 0;
  z-index: 50;
  transition: top 220ms ease, transform 220ms ease;
}

.site-header.is-scrolled {
  top: 10px;
}

.nav {
  width: min(calc(100% - 32px), 1180px);
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 14px;
  padding: 10px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(5, 8, 19, 0.62);
  backdrop-filter: blur(24px);
  box-shadow: 0 20px 80px rgba(0, 0, 0, 0.22);
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  min-width: max-content;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  color: var(--dark);
  border-radius: 15px;
  background: linear-gradient(135deg, var(--lime), var(--cyan));
  font-weight: 950;
  letter-spacing: -0.08em;
}

.brand-text {
  display: grid;
  color: var(--white);
  line-height: 1.05;
}

.brand-text strong {
  font-size: 1.02rem;
  letter-spacing: -0.04em;
}

.brand-text small {
  color: var(--muted-dark);
  font-size: 0.72rem;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
}

.nav-links a {
  padding: 10px 14px;
  color: rgba(255, 255, 255, 0.72);
  border-radius: 999px;
  font-size: 0.94rem;
  font-weight: 650;
  transition: color 180ms ease, background 180ms ease;
}

.nav-links a:hover,
.nav-links a:focus-visible {
  color: var(--white);
  background: rgba(255, 255, 255, 0.1);
}

.nav-action,
.btn-primary {
  color: var(--white);
  background: linear-gradient(135deg, var(--primary), var(--primary-2));
  box-shadow: 0 16px 40px rgba(109, 93, 252, 0.32);
}

.nav-action {
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 850;
}

.nav-toggle {
  display: none;
  width: 46px;
  height: 46px;
  border: 1px solid var(--line-dark);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.08);
  cursor: pointer;
}

.nav-toggle span:not(.sr-only) {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--white);
  border-radius: 999px;
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: 100vh;
  overflow: hidden;
  padding: 178px 0 110px;
  color: var(--white);
  background:
    radial-gradient(circle at 20% 10%, rgba(139, 92, 246, 0.4), transparent 32rem),
    radial-gradient(circle at 80% 15%, rgba(112, 231, 255, 0.24), transparent 30rem),
    var(--dark);
}

.hero-video {
  position: absolute;
  inset: 0;
  z-index: -3;
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.55;
}

.hero-noise {
  position: absolute;
  inset: 0;
  z-index: -2;
  background:
    linear-gradient(180deg, rgba(5, 8, 19, 0.68), rgba(5, 8, 19, 0.28) 45%, rgba(5, 8, 19, 0.96)),
    radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.12), transparent 24rem);
}

.bottom-gradient {
  position: absolute;
  left: 0;
  right: 0;
  bottom: -3px;
  z-index: -1;
  width: 100%;
  height: 520px;
  object-fit: cover;
  opacity: 0.98;
}

.hero-inner {
  position: relative;
  z-index: 2;
  text-align: center;
}

.hero-social-proof {
  display: inline-flex;
  align-items: center;
  gap: 14px;
  max-width: 430px;
  margin-inline: auto;
  margin-bottom: 28px;
}

.avatar-stack {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}

.avatar-stack img,
.avatar-stack span {
  width: 44px;
  height: 44px;
  margin-left: -13px;
  border: 2px solid var(--surface);
  border-radius: 999px;
  object-fit: cover;
  background: var(--white);
}

.avatar-stack img:first-child {
  margin-left: 0;
}

.avatar-stack span {
  display: grid;
  place-items: center;
  color: var(--ink);
  font-size: 0.72rem;
  font-weight: 900;
}

.hero-social-proof p {
  margin: 0;
  color: var(--muted-dark);
  font-size: 0.92rem;
  text-align: left;
}

.hero-social-proof strong {
  color: var(--white);
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: max-content;
  max-width: 100%;
  min-height: 34px;
  padding: 8px 14px;
  color: var(--primary-2);
  border: 1px solid rgba(139, 92, 246, 0.18);
  border-radius: 999px;
  background: rgba(139, 92, 246, 0.08);
  font-size: 0.78rem;
  font-weight: 900;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.badge-dark {
  color: var(--lime);
  border-color: rgba(255, 255, 255, 0.16);
  background: rgba(255, 255, 255, 0.08);
}

.badge-dark-text {
  color: var(--ink);
  background: rgba(255, 255, 255, 0.68);
}

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

h1 {
  max-width: 1010px;
  margin: 22px auto 18px;
  font-size: clamp(3.3rem, 8.2vw, 7.4rem);
  line-height: 0.9;
  letter-spacing: -0.083em;
}

h2 {
  margin: 0;
  color: var(--ink);
  font-size: clamp(2.3rem, 5.1vw, 5.15rem);
  line-height: 0.94;
  letter-spacing: -0.074em;
}

h3 {
  color: var(--ink);
  font-size: 1.28rem;
  line-height: 1.1;
  letter-spacing: -0.045em;
}

.hero-copy p {
  max-width: 650px;
  margin: 0 auto;
  color: var(--muted-dark);
  font-size: clamp(1rem, 1.65vw, 1.2rem);
}

.hero-actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 34px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 54px;
  padding: 15px 24px;
  border-radius: 999px;
  font-weight: 900;
  transition: transform 180ms ease, box-shadow 180ms ease, background 180ms ease;
}

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

.btn-glass {
  color: var(--white);
  border: 1px solid var(--line-dark);
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(20px);
}

.btn-white {
  color: var(--ink);
  background: var(--white);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.09);
}

.hero-showcase {
  position: relative;
  width: min(100%, 1120px);
  margin: 72px auto 0;
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 28px;
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(22px);
  box-shadow: 0 45px 140px rgba(0, 0, 0, 0.42);
  overflow: visible;
}

.showcase-toolbar {
  display: flex;
  align-items: center;
  gap: 9px;
  padding: 14px 18px;
  color: rgba(255, 255, 255, 0.7);
  border-bottom: 1px solid rgba(255, 255, 255, 0.12);
}

.showcase-toolbar span {
  width: 10px;
  height: 10px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.34);
}

.showcase-toolbar span:first-child {
  background: #ff7468;
}

.showcase-toolbar span:nth-child(2) {
  background: #ffd166;
}

.showcase-toolbar span:nth-child(3) {
  background: #6ef49d;
}

.showcase-toolbar strong {
  margin-left: 10px;
  font-size: 0.92rem;
}

.showcase-toolbar em {
  margin-left: auto;
  padding: 5px 10px;
  color: var(--dark);
  border-radius: 999px;
  background: var(--lime);
  font-size: 0.72rem;
  font-style: normal;
  font-weight: 950;
}

.dashboard-img {
  width: 100%;
  border-radius: 0 0 27px 27px;
}

.float-element {
  position: absolute;
  z-index: 3;
  width: 112px;
  filter: drop-shadow(0 24px 35px rgba(0, 0, 0, 0.28));
}

.float-element.left {
  left: -48px;
  top: 38%;
}

.float-element.right {
  right: -46px;
  top: 25%;
}

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

.about-grid {
  display: grid;
  grid-template-columns: 0.31fr 0.69fr;
  gap: 54px;
  align-items: center;
}

.about-photo {
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
}

.about-photo img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.about-photo.tall {
  height: 525px;
}

.split-copy {
  display: grid;
  grid-template-columns: 1fr 0.84fr;
  gap: 54px;
  align-items: start;
}

.split-copy h2,
.section-heading h2,
.integration-copy h2 {
  margin-top: 18px;
}

.split-copy p,
.section-heading p,
.integration-copy p,
.ecosystem-card p,
.feature-card p,
.process-steps p,
.proof-summary p,
.testimonial-card p,
.cta-card p,
.footer p {
  color: var(--muted);
  font-size: 1.04rem;
}

.about-bottom {
  display: grid;
  grid-template-columns: 0.9fr 1fr;
  gap: 42px;
  align-items: end;
  margin-top: 54px;
}

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

.metric-row div {
  padding: 20px;
  border-radius: 18px;
  background: var(--white);
  box-shadow: var(--shadow);
}

.metric-row strong {
  display: block;
  color: var(--ink);
  font-size: 2rem;
  line-height: 1;
  letter-spacing: -0.07em;
}

.metric-row span {
  display: block;
  margin-top: 8px;
  color: var(--muted);
  font-size: 0.9rem;
}

.about-photo.wide {
  height: 290px;
}

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

.section-heading.center {
  max-width: 780px;
  margin-inline: auto;
  text-align: center;
}

.section-heading.split {
  display: grid;
  grid-template-columns: 1fr 0.72fr;
  gap: 52px;
  align-items: end;
}

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

.ecosystem-card,
.feature-card,
.process-board,
.proof-summary,
.testimonial-card,
.score-grid div,
.cta-card {
  border-radius: var(--radius);
  background: var(--white);
  box-shadow: var(--shadow);
}

.ecosystem-card {
  min-height: 270px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 26px;
  transition: transform 200ms ease, box-shadow 200ms ease;
}

.ecosystem-card:hover,
.ecosystem-card:focus-visible,
.feature-card:hover,
.orbit-item:hover {
  transform: translateY(-5px);
}

.large-card {
  grid-column: span 2;
  background:
    radial-gradient(circle at 80% 15%, rgba(112, 231, 255, 0.28), transparent 17rem),
    linear-gradient(135deg, #111827, #1b1242);
}

.large-card h3,
.large-card p,
.large-card em {
  color: var(--white);
}

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

.card-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  color: var(--white);
  border-radius: 17px;
  background: var(--ink);
  font-weight: 950;
  letter-spacing: -0.06em;
}

.gradient-icon {
  color: var(--dark);
  background: linear-gradient(135deg, var(--lime), var(--cyan));
}

.ecosystem-card h3 {
  margin: 28px 0 8px;
}

.ecosystem-card em {
  color: var(--primary-2);
  font-style: normal;
  font-weight: 900;
}

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

.feature-card {
  min-height: 430px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  padding: 30px;
  overflow: hidden;
  transition: transform 200ms ease;
}

.feature-card.tall-card {
  min-height: 520px;
}

.feature-card img {
  width: 100%;
  max-height: 330px;
  object-fit: contain;
}

.process-section {
  padding-bottom: 0;
  color: var(--white);
  background:
    radial-gradient(circle at 70% 20%, rgba(112, 231, 255, 0.22), transparent 34rem),
    radial-gradient(circle at 20% 10%, rgba(139, 92, 246, 0.2), transparent 30rem),
    #07101f;
}

.process-section h2,
.process-section h3 {
  color: var(--white);
}

.process-section .section-heading p {
  color: rgba(255, 255, 255, 0.64);
}

.process-board {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(380px, 1fr);
  gap: 34px;
  padding: 22px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  box-shadow: 0 40px 120px rgba(0, 0, 0, 0.22);
}

.process-visual {
  display: grid;
  place-items: center;
  min-height: 560px;
  padding: 28px;
  border-radius: 20px;
  background: var(--white);
}

.process-visual img {
  width: 100%;
  max-height: 500px;
  object-fit: contain;
}

.process-steps {
  display: grid;
  gap: 12px;
}

.process-steps article {
  padding: 24px;
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.07);
}

.process-steps span {
  color: var(--lime);
  font-size: 0.78rem;
  font-weight: 950;
  letter-spacing: 0.14em;
}

.process-steps p {
  color: rgba(255, 255, 255, 0.64);
}

.integration-grid {
  display: grid;
  grid-template-columns: 0.76fr 1fr;
  gap: 62px;
  align-items: center;
}

.orbit-card {
  position: relative;
  min-height: 620px;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(circle at center, rgba(139, 92, 246, 0.2), transparent 17rem),
    var(--white);
  box-shadow: var(--shadow);
  overflow: hidden;
}

.orbit-ring {
  position: absolute;
  inset: 50%;
  transform: translate(-50%, -50%);
  border: 1px solid rgba(16, 21, 34, 0.1);
  border-radius: 999px;
}

.ring-one {
  width: 410px;
  height: 410px;
}

.ring-two {
  width: 570px;
  height: 570px;
}

.orbit-hub {
  position: absolute;
  left: 50%;
  top: 50%;
  display: grid;
  place-items: center;
  width: 120px;
  height: 120px;
  transform: translate(-50%, -50%);
  color: var(--white);
  border-radius: 34px;
  background: linear-gradient(135deg, var(--primary), var(--cyan));
  box-shadow: 0 24px 70px rgba(109, 93, 252, 0.28);
  font-weight: 950;
}

.orbit-item {
  position: absolute;
  display: grid;
  place-items: center;
  min-width: 112px;
  min-height: 54px;
  padding: 12px 16px;
  color: var(--ink);
  border: 1px solid var(--line);
  border-radius: 18px;
  background: rgba(255, 255, 255, 0.9);
  box-shadow: 0 18px 42px rgba(15, 23, 42, 0.11);
  font-weight: 900;
  transition: transform 180ms ease;
}

.item-1 { left: 10%; top: 17%; }
.item-2 { right: 12%; top: 16%; }
.item-3 { left: 6%; top: 50%; }
.item-4 { right: 6%; top: 52%; }
.item-5 { left: 22%; bottom: 15%; }
.item-6 { right: 20%; bottom: 15%; }

.proof-layout {
  display: grid;
  grid-template-columns: 0.9fr 1.15fr 0.72fr;
  gap: 18px;
  align-items: stretch;
}

.proof-summary,
.testimonial-card,
.score-grid div {
  padding: 30px;
}

.proof-summary {
  display: flex;
  min-height: 370px;
  flex-direction: column;
  justify-content: space-between;
}

.proof-avatars span {
  margin-left: -13px;
}

.stars {
  color: #ffb800;
  letter-spacing: 0.1em;
}

.testimonial-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  min-height: 370px;
  background:
    radial-gradient(circle at 85% 15%, rgba(201, 255, 110, 0.26), transparent 18rem),
    var(--white);
}

.testimonial-card p {
  color: var(--ink);
  font-size: clamp(1.25rem, 2.1vw, 1.8rem);
  line-height: 1.25;
  letter-spacing: -0.04em;
}

.testimonial-card span {
  display: block;
  color: var(--muted);
}

.score-grid {
  display: grid;
  gap: 18px;
}

.score-grid div {
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}

.score-grid strong {
  color: var(--primary-2);
  font-size: 2.4rem;
  line-height: 1;
  letter-spacing: -0.07em;
}

.score-grid span {
  margin-top: 10px;
  color: var(--muted);
}

.cta-section {
  padding-bottom: 130px;
}

.cta-card {
  position: relative;
  min-height: 650px;
  display: grid;
  place-items: center;
  padding: 72px 32px;
  overflow: hidden;
  text-align: center;
}

.cta-globe {
  position: absolute;
  top: 50px;
  left: 50%;
  width: min(650px, 110vw);
  transform: translateX(-50%);
  opacity: 0.72;
}

.cta-card::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 52%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0), var(--white) 65%);
}

.cta-content {
  position: relative;
  z-index: 2;
  max-width: 780px;
}

.cta-content h2 {
  margin-top: 18px;
}

.center-actions {
  margin-top: 30px;
}

.footer {
  padding: 84px 0 36px;
  color: rgba(255, 255, 255, 0.68);
  background: var(--dark);
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.28fr repeat(3, 0.65fr);
  gap: 42px;
}

.footer-brand .brand-text {
  color: var(--white);
}

.footer h3 {
  margin-top: 0;
  color: var(--white);
  font-size: 1rem;
}

.footer a:not(.brand) {
  display: block;
  margin-top: 10px;
  color: rgba(255, 255, 255, 0.68);
}

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

.footer p {
  max-width: 390px;
  margin-top: 20px;
  color: rgba(255, 255, 255, 0.62);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 20px;
  margin-top: 58px;
  padding-top: 24px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  font-size: 0.94rem;
}

[data-reveal] {
  transform: translateY(22px);
  opacity: 0;
  transition: transform 700ms cubic-bezier(0.16, 1, 0.3, 1), opacity 700ms ease;
}

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

@media (max-width: 1050px) {
  .nav-toggle {
    display: inline-block;
  }

  .nav-links {
    position: fixed;
    top: 78px;
    left: 16px;
    right: 16px;
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid var(--line-dark);
    border-radius: 24px;
    background: rgba(5, 8, 19, 0.96);
    box-shadow: 0 35px 90px rgba(0, 0, 0, 0.34);
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
  }

  .nav-links.is-open {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }

  .nav-links a {
    padding: 14px 16px;
  }

  .nav-action {
    display: none;
  }

  .about-grid,
  .split-copy,
  .about-bottom,
  .section-heading.split,
  .process-board,
  .integration-grid,
  .proof-layout {
    grid-template-columns: 1fr;
  }

  .about-photo.tall {
    height: 380px;
  }

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

  .process-section {
    background: #07101f;
  }

  .process-visual {
    min-height: auto;
  }

  .orbit-card {
    min-height: 560px;
  }

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

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

  .section {
    padding-top: 92px;
  }

  .hero {
    padding-top: 136px;
  }

  h1 {
    font-size: clamp(3rem, 15vw, 4.7rem);
  }

  .hero-social-proof {
    align-items: flex-start;
  }

  .hero-actions,
  .center-actions {
    display: grid;
  }

  .btn {
    width: 100%;
  }

  .hero-showcase {
    margin-top: 52px;
    border-radius: 20px;
  }

  .showcase-toolbar strong {
    display: none;
  }

  .float-element {
    display: none;
  }

  .metric-row,
  .ecosystem-grid,
  .feature-grid,
  .footer-grid {
    grid-template-columns: 1fr;
  }

  .large-card {
    grid-column: auto;
  }

  .feature-card,
  .feature-card.tall-card {
    min-height: 390px;
  }

  .orbit-card {
    min-height: 520px;
  }

  .ring-two {
    width: 440px;
    height: 440px;
  }

  .ring-one {
    width: 300px;
    height: 300px;
  }

  .orbit-item {
    min-width: 94px;
    min-height: 48px;
    font-size: 0.8rem;
  }

  .item-1 { left: 7%; top: 16%; }
  .item-2 { right: 7%; top: 17%; }
  .item-3 { left: 3%; top: 52%; }
  .item-4 { right: 3%; top: 53%; }
  .item-5 { left: 13%; bottom: 14%; }
  .item-6 { right: 12%; bottom: 14%; }

  .cta-card {
    min-height: 560px;
  }

  .footer-bottom {
    display: grid;
  }
}

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

  [data-reveal] {
    transform: none;
    opacity: 1;
  }
}
