:root {
  --bg: #ffffff;
  --soft: #f5f5f7;
  --ink: #1d1d1f;
  --muted: #6e6e73;
  --blue: #0071e3;
  --indigo: #5856d6;
  --lavender: #eef0ff;
  --line: color-mix(in srgb, var(--ink) 9%, transparent);
  --glass: color-mix(in srgb, var(--bg) 82%, transparent);
  --blue-soft: color-mix(in srgb, var(--blue) 10%, var(--bg));
  --indigo-soft: color-mix(in srgb, var(--indigo) 12%, var(--bg));
  --gradient: linear-gradient(135deg, var(--blue), var(--indigo));
  --shadow: 0 24px 70px color-mix(in srgb, var(--indigo) 14%, transparent);
  --max: 1180px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  background: var(--bg);
}

body {
  margin: 0;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--bg);
  font-family: -apple-system, BlinkMacSystemFont, "PingFang SC", "Helvetica Neue", sans-serif;
  -webkit-font-smoothing: antialiased;
}

body,
button,
a {
  font-size: 16px;
}

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

a:focus-visible {
  outline: 3px solid color-mix(in srgb, var(--blue) 42%, transparent);
  outline-offset: 4px;
  border-radius: 10px;
}

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

h1,
h2,
h3 {
  text-wrap: balance;
}

.site-header {
  position: fixed;
  z-index: 20;
  top: 0;
  left: 0;
  right: 0;
  height: 58px;
  padding: 0 max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  border-bottom: 1px solid transparent;
  background: color-mix(in srgb, var(--bg) 74%, transparent);
  backdrop-filter: saturate(180%) blur(22px);
  transition: border-color 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  border-bottom-color: var(--line);
  background: var(--glass);
}

.brand {
  justify-self: start;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-weight: 700;
  letter-spacing: -0.02em;
}

.brand img {
  width: 30px;
  height: 30px;
}

.main-nav {
  display: flex;
  align-items: center;
  gap: 30px;
  color: var(--muted);
  font-size: 13px;
}

.main-nav a,
.text-link {
  transition: color 160ms ease;
}

.main-nav a:hover,
.text-link:hover {
  color: var(--blue);
}

.nav-action {
  justify-self: end;
  color: var(--blue);
  font-size: 13px;
  font-weight: 650;
}

.section {
  width: min(var(--max), calc(100% - 48px));
  margin: 0 auto;
  padding: 142px 0;
}

.kicker,
.feature-label,
.pain-index,
.ui-label {
  color: var(--blue);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.01em;
}

.section h2 {
  max-width: 900px;
  font-size: clamp(48px, 5.6vw, 72px);
  line-height: 1.02;
  letter-spacing: -0.065em;
}

.section-lede {
  max-width: 720px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.6;
  letter-spacing: -0.02em;
}

.icon-chip {
  width: 72px;
  height: 72px;
  display: grid;
  place-items: center;
  border-radius: 22px;
  color: var(--indigo);
  background: linear-gradient(145deg, var(--lavender), var(--bg));
  box-shadow: var(--shadow);
}

.section-icon {
  width: 42px;
  height: 42px;
}

.hero {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 100svh;
  overflow: hidden;
  margin: 0;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  padding-top: 132px;
  padding-bottom: 84px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  background: linear-gradient(145deg, var(--bg) 0%, var(--soft) 58%, var(--lavender) 100%);
}

.hero-brand {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
}

.hero-brand img {
  width: clamp(82px, 8vw, 112px);
  height: auto;
  filter: drop-shadow(0 24px 42px color-mix(in srgb, var(--blue) 18%, transparent));
}

.hero-brand span {
  font-size: clamp(58px, 7vw, 88px);
  font-weight: 760;
  letter-spacing: -0.075em;
}

.hero-copy {
  position: relative;
  z-index: 2;
  max-width: 880px;
  margin-top: 72px;
}

.hero .kicker {
  max-width: 620px;
  font-size: 16px;
}

.hero h1 {
  max-width: 860px;
  margin-top: 18px;
  font-size: clamp(72px, 7vw, 96px);
  line-height: 0.96;
  letter-spacing: -0.075em;
}

.hero-lede {
  max-width: 620px;
  margin: 26px 0 32px;
  color: var(--muted);
  font-size: clamp(20px, 2.2vw, 30px);
  line-height: 1.45;
  letter-spacing: -0.02em;
}

.hero-orbit {
  position: absolute;
  right: -170px;
  top: 4%;
  width: min(54vw, 720px);
  aspect-ratio: 1;
  border: clamp(58px, 6vw, 86px) solid color-mix(in srgb, var(--blue) 13%, transparent);
  border-radius: 50%;
}

.hero-orbit::before,
.hero-orbit::after,
.hero-orbit i {
  position: absolute;
  border-radius: 50%;
  content: "";
}

.hero-orbit::before {
  inset: clamp(42px, 4vw, 62px);
  background: var(--gradient);
  box-shadow: 0 48px 140px color-mix(in srgb, var(--indigo) 28%, transparent);
}

.hero-orbit::after {
  width: 25%;
  aspect-ratio: 1;
  left: -4%;
  bottom: -2%;
  border: 1px solid color-mix(in srgb, var(--bg) 82%, transparent);
  background: color-mix(in srgb, var(--bg) 62%, transparent);
  box-shadow: 0 24px 70px color-mix(in srgb, var(--indigo) 20%, transparent);
  backdrop-filter: blur(16px);
}

.hero-orbit i {
  z-index: 2;
  width: 11%;
  aspect-ratio: 1;
  right: 15%;
  top: 13%;
  border: clamp(10px, 1.3vw, 18px) solid color-mix(in srgb, var(--bg) 76%, transparent);
  box-shadow: 0 20px 48px color-mix(in srgb, var(--blue) 22%, transparent);
}

.primary {
  min-height: 48px;
  padding: 0 23px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  border-radius: 999px;
  color: var(--bg);
  background: var(--blue);
  font-weight: 650;
  transition: background 160ms ease, transform 160ms ease;
}

.primary:hover {
  background: var(--indigo);
  transform: scale(1.015);
}

.text-link {
  color: var(--blue);
  font-weight: 650;
}

.product-ui {
  margin-top: 68px;
  padding: 12px;
  border: 1px solid var(--line);
  border-radius: 34px;
  background: color-mix(in srgb, var(--bg) 88%, var(--lavender));
  box-shadow: 0 38px 100px color-mix(in srgb, var(--indigo) 18%, transparent);
}

.product-bar {
  height: 48px;
  padding: 0 14px;
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  color: var(--muted);
  font-size: 11px;
}

.product-bar strong {
  color: var(--ink);
  font-size: 12px;
}

.product-bar > span:last-child {
  justify-self: end;
}

.window-dots {
  display: flex;
  gap: 6px;
}

.window-dots i {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--muted);
}

.window-dots i:nth-child(2) {
  background: var(--blue);
}

.window-dots i:nth-child(3) {
  background: var(--indigo);
}

.product-body {
  min-height: 500px;
  display: grid;
  grid-template-columns: 132px 1fr;
  overflow: hidden;
  border-radius: 24px;
  background: var(--bg);
}

.product-body aside {
  padding: 34px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border-right: 1px solid var(--line);
  background: var(--soft);
}

.product-body aside span {
  padding: 10px 12px;
  border-radius: 10px;
  color: var(--muted);
  font-size: 12px;
}

.product-body aside .active {
  color: var(--blue);
  background: var(--blue-soft);
  font-weight: 700;
}

.product-main {
  padding: 48px 38px 36px;
}

.product-main h2 {
  max-width: 390px;
  margin-top: 14px;
  font-size: 32px;
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.ui-focus {
  margin-top: 54px;
  padding: 24px;
  border-radius: 20px;
  background: linear-gradient(135deg, var(--blue-soft), var(--indigo-soft));
}

.ui-focus span,
.ui-focus strong {
  display: block;
}

.ui-focus span {
  color: var(--indigo);
  font-size: 12px;
  font-weight: 700;
}

.ui-focus strong {
  margin-top: 10px;
  font-size: 16px;
  line-height: 1.45;
}

.ui-cards {
  margin-top: 16px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}

.ui-cards span {
  padding: 16px 8px;
  border: 1px solid var(--line);
  border-radius: 14px;
  color: var(--muted);
  background: var(--bg);
  text-align: center;
  font-size: 12px;
}

.pain-intro {
  min-height: 720px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.pain-intro h2 {
  margin-top: 22px;
}

.pain-panel {
  width: 100%;
  min-height: 680px;
  margin: 0;
  padding: 84px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: .65fr 1.35fr;
  align-items: center;
  gap: 64px;
  overflow: hidden;
  border: 0;
  border-radius: 0;
  background: var(--soft);
}

.pain-panel[data-pain="team"] {
  background: var(--bg);
}

.pain-panel[data-pain="time"] {
  color: var(--ink);
  background: var(--soft);
  box-shadow: none;
}

.pain-panel[data-pain="shield-lock"] {
  background: linear-gradient(145deg, var(--lavender), var(--bg));
}

.pain-mark {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}

.pain-mark .icon-chip {
  width: 118px;
  height: 118px;
  border-radius: 34px;
}

.pain-mark .section-icon {
  width: 62px;
  height: 62px;
}

.pain-copy h2 {
  max-width: 690px;
  font-size: clamp(46px, 3.8vw, 54px);
  line-height: 1.04;
  letter-spacing: -0.065em;
}

.pain-copy p {
  max-width: 650px;
  margin-top: 30px;
  color: var(--muted);
  font-size: 20px;
  line-height: 1.62;
  letter-spacing: -0.02em;
}

.definition {
  width: 100%;
  max-width: none;
  margin-top: 150px;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  background: var(--soft);
}

.definition-copy .icon-chip,
.section-head .icon-chip {
  margin-bottom: 34px;
}

.definition-copy .kicker,
.section-head .kicker {
  margin-bottom: 18px;
}

.research-path {
  margin-top: 76px;
  padding: 42px;
  display: flex;
  align-items: center;
  gap: 16px;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--bg);
  box-shadow: var(--shadow);
}

.research-path span,
.research-path strong {
  width: 92px;
  height: 92px;
  flex: 0 0 auto;
  display: grid;
  place-items: center;
  border: 1px solid var(--line);
  border-radius: 50%;
  font-size: 14px;
}

.research-path strong {
  color: var(--bg);
  border-color: var(--blue);
  background: var(--blue);
}

.research-path i {
  height: 1px;
  flex: 1;
  background: linear-gradient(90deg, var(--blue), var(--indigo));
}

.capabilities {
  padding: 126px 0;
}

.feature-stage {
  width: 100%;
  min-height: 700px;
  margin: 0;
  padding: 76px max(24px, calc((100vw - var(--max)) / 2));
  display: grid;
  grid-template-columns: 1.05fr .95fr;
  gap: 72px;
  align-items: center;
  border: 0;
  border-radius: 0;
  background: var(--bg);
}

.feature-stage:nth-child(odd) {
  background: var(--soft);
}

.feature-stage[data-feature="easy"] {
  background: linear-gradient(145deg, var(--lavender), var(--bg));
}

.feature-copy .icon-chip {
  margin-bottom: 42px;
}

.feature-label {
  color: var(--indigo);
}

.feature-copy h2 {
  max-width: 600px;
  margin-top: 18px;
  font-size: clamp(44px, 3.7vw, 52px);
  line-height: 1.04;
  letter-spacing: -0.062em;
}

.feature-copy > p:last-child {
  max-width: 570px;
  margin-top: 28px;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.62;
}

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

.feature-list li {
  min-height: 96px;
  padding: 0 28px;
  display: flex;
  align-items: center;
  gap: 18px;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: color-mix(in srgb, var(--bg) 86%, transparent);
  box-shadow: 0 14px 44px color-mix(in srgb, var(--indigo) 8%, transparent);
  font-size: 17px;
  font-weight: 650;
}

.feature-list li::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 auto;
  border: 4px solid var(--lavender);
  border-radius: 50%;
  background: var(--indigo);
}

.compare {
  padding-top: 170px;
}

.compare-grid {
  margin-top: 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.compare-grid article {
  min-height: 360px;
  padding: 48px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  border: 1px solid var(--line);
  border-radius: 30px;
  background: var(--soft);
}

.compare-grid article.medih {
  color: var(--bg);
  border-color: transparent;
  background: var(--gradient);
  box-shadow: var(--shadow);
}

.compare-grid article > span {
  margin-bottom: auto;
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.compare-grid .medih > span,
.compare-grid .medih p {
  color: color-mix(in srgb, var(--bg) 78%, transparent);
}

.compare-grid h3 {
  font-size: 34px;
  letter-spacing: -0.05em;
}

.compare-grid p {
  margin-top: 18px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.6;
}

.boundary {
  padding-top: 170px;
}

.boundary-list {
  margin-top: 68px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}

.boundary-list article {
  min-height: 210px;
  padding: 36px 42px 36px 0;
  border-bottom: 1px solid var(--line);
}

.boundary-list article:nth-child(odd) {
  border-right: 1px solid var(--line);
}

.boundary-list article:nth-child(even) {
  padding-left: 42px;
}

.boundary-list span {
  color: var(--blue);
  font-size: 13px;
  font-weight: 700;
}

.boundary-list h3 {
  margin-top: 22px;
  font-size: 28px;
  letter-spacing: -0.045em;
}

.boundary-list p {
  max-width: 430px;
  margin-top: 12px;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}

.closing {
  position: relative;
  width: 100%;
  max-width: none;
  min-height: 92svh;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(145deg, var(--soft), var(--lavender));
}

.closing-logo {
  width: 132px;
  height: 132px;
  margin-bottom: 32px;
}

.closing .kicker {
  font-size: 22px;
}

.closing h2 {
  margin-top: 16px;
  font-size: clamp(64px, 8vw, 106px);
}

.closing-line {
  max-width: 800px;
  margin: 30px auto 34px;
  color: var(--muted);
  font-size: 22px;
  line-height: 1.58;
  letter-spacing: -0.025em;
}

.closing footer {
  position: absolute;
  left: max(24px, calc((100vw - var(--max)) / 2));
  right: max(24px, calc((100vw - var(--max)) / 2));
  bottom: 24px;
  padding-top: 18px;
  display: flex;
  justify-content: space-between;
  gap: 20px;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 11px;
}

.contact {
  width: 100%;
  max-width: none;
  min-height: 76svh;
  padding-left: max(24px, calc((100vw - var(--max)) / 2));
  padding-right: max(24px, calc((100vw - var(--max)) / 2));
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  text-align: center;
  background: linear-gradient(145deg, var(--bg), var(--soft) 56%, var(--lavender));
}

.contact-brand {
  display: inline-flex;
  align-items: center;
  gap: 16px;
  font-size: clamp(32px, 4vw, 52px);
  font-weight: 750;
  letter-spacing: -0.06em;
}

.contact-brand img {
  width: 84px;
  height: 84px;
}

.contact .contact-list {
  width: min(100%, 620px);
  margin-top: 40px;
  display: grid;
  gap: 14px;
}

.contact .contact-list a {
  padding: 20px 32px;
  border: 1px solid var(--line);
  border-radius: 20px;
  color: var(--ink);
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  box-shadow: 0 18px 48px color-mix(in srgb, var(--indigo) 10%, transparent);
  font-size: clamp(20px, 2.2vw, 28px);
  font-weight: 700;
  letter-spacing: -0.035em;
  text-decoration: none;
  transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
}

.contact .contact-list a:hover,
.contact .contact-list a:focus-visible {
  border-color: color-mix(in srgb, var(--blue) 34%, var(--line));
  box-shadow: 0 24px 56px color-mix(in srgb, var(--blue) 16%, transparent);
  transform: translateY(-2px);
}

.reveal,
.icon-chip {
  opacity: 1;
  transform: none;
}

.motion-active .reveal {
  opacity: 0;
  transform: translateY(16px);
}

.motion-active .icon-chip {
  opacity: 0;
  transform: scale(0.96);
}

.motion-ready .reveal,
.motion-ready .icon-chip {
  will-change: opacity, transform;
}

@media (max-width: 1040px) {
  .hero-orbit {
    right: -250px;
    width: 680px;
  }

  .product-body {
    grid-template-columns: 108px 1fr;
  }

  .product-main {
    padding: 42px 28px 30px;
  }

  .pain-panel,
  .feature-stage {
    padding: 64px;
    gap: 56px;
  }
}

@media (max-width: 820px) {
  .site-header {
    padding: 0 18px;
    grid-template-columns: 1fr auto;
  }

  .main-nav {
    display: none;
  }

  .section {
    width: min(100% - 32px, var(--max));
    padding: 104px 0;
  }

  .hero {
    width: 100%;
    min-height: 820px;
    padding: 132px 16px 104px;
    justify-content: flex-start;
  }

  .pain-panel,
  .feature-stage,
  .compare-grid {
    grid-template-columns: 1fr;
  }

  .hero-brand {
    gap: 14px;
  }

  .hero-brand img {
    width: 72px;
  }

  .hero-brand span {
    font-size: 50px;
  }

  .hero-copy {
    margin-top: 52px;
  }

  .hero .kicker {
    max-width: 310px;
    font-size: 13px;
    line-height: 1.55;
  }

  .hero h1 {
    max-width: 360px;
    margin-top: 16px;
    font-size: 58px;
    line-height: 0.98;
    letter-spacing: -0.07em;
  }

  .hero-lede {
    max-width: 320px;
    margin: 22px 0 28px;
    font-size: 19px;
  }

  .hero-orbit {
    top: auto;
    right: -38%;
    bottom: -15%;
    width: 92vw;
    border-width: 44px;
  }

  .primary {
    min-height: 44px;
    padding: 0 18px;
    font-size: 14px;
  }

  .text-link {
    padding-top: 11px;
    font-size: 14px;
  }

  .product-ui {
    margin-top: 48px;
    padding: 8px;
    border-radius: 25px;
  }

  .product-body {
    min-height: 390px;
    grid-template-columns: 1fr;
    border-radius: 19px;
  }

  .product-body aside {
    display: none;
  }

  .product-main {
    padding: 34px 24px 26px;
  }

  .product-main h2 {
    max-width: 300px;
    font-size: 27px;
  }

  .ui-focus {
    margin-top: 40px;
    padding: 20px;
  }

  .ui-cards {
    grid-template-columns: 1fr;
  }

  .section h2 {
    max-width: 350px;
    font-size: 34px;
    letter-spacing: -0.055em;
  }

  .section-lede {
    margin-top: 22px;
    font-size: 17px;
  }

  .pain-intro {
    min-height: 620px;
  }

  .pain-panel,
  .feature-stage {
    width: 100%;
    min-height: 0;
    padding: 48px 24px;
    gap: 36px;
    border-radius: 0;
  }

  .pain-panel {
    min-height: 540px;
  }

  .pain-mark {
    min-height: 104px;
    flex-direction: row;
    align-items: flex-start;
  }

  .pain-mark .icon-chip {
    width: 76px;
    height: 76px;
    border-radius: 24px;
  }

  .pain-mark .section-icon {
    width: 42px;
    height: 42px;
  }

  .pain-copy h2,
  .feature-copy h2 {
    max-width: 350px;
    font-size: 27px;
    line-height: 1.1;
    letter-spacing: -0.05em;
  }

  .pain-copy p,
  .feature-copy > p:last-child {
    margin-top: 22px;
    font-size: 16px;
  }

  .definition {
    width: 100%;
    margin-top: 104px;
    padding-left: 16px;
    padding-right: 16px;
  }

  .definition .section-lede {
    max-width: 350px;
  }

  .definition h2 {
    font-size: 29px;
  }

  .research-path {
    margin-top: 48px;
    padding: 24px 16px;
    gap: 7px;
  }

  .research-path span,
  .research-path strong {
    width: 54px;
    height: 54px;
    font-size: 11px;
  }

  .capabilities {
    padding: 90px 0;
  }

  .feature-copy .icon-chip {
    margin-bottom: 30px;
  }

  .feature-list li {
    min-height: 74px;
    padding: 0 20px;
    border-radius: 18px;
    font-size: 15px;
  }

  .compare,
  .boundary {
    padding-top: 120px;
  }

  .compare-grid {
    margin-top: 44px;
  }

  .compare-grid article {
    min-height: 300px;
    padding: 34px 26px;
    border-radius: 26px;
  }

  .compare-grid h3 {
    font-size: 28px;
  }

  .boundary-list {
    margin-top: 48px;
    grid-template-columns: 1fr;
  }

  .boundary-list article,
  .boundary-list article:nth-child(odd),
  .boundary-list article:nth-child(even) {
    min-height: 0;
    padding: 28px 0;
    border-right: 0;
  }

  .closing {
    width: 100%;
    min-height: 760px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .closing h2 {
    font-size: 52px;
  }

  .closing-line {
    max-width: 350px;
    font-size: 18px;
  }

  .closing footer {
    left: 18px;
    right: 18px;
    flex-direction: column;
    align-items: center;
    gap: 5px;
  }

  .contact {
    min-height: 680px;
    padding-left: 18px;
    padding-right: 18px;
  }

  .contact-brand img {
    width: 62px;
    height: 62px;
  }

  .contact .contact-list {
    margin-top: 30px;
  }

  .contact .contact-list a {
    padding: 17px 20px;
  }

  .icon-chip {
    width: 60px;
    height: 60px;
    border-radius: 18px;
  }

  .section-icon {
    width: 34px;
    height: 34px;
  }
}

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

  .reveal,
  .icon-chip,
  .motion-active .reveal,
  .motion-active .icon-chip {
    opacity: 1;
    transform: none;
  }

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