:root {
  color-scheme: light;
  --paper: #eee9dc;
  --paper-light: #f6f2e8;
  --paper-deep: #e2dccd;
  --ink: #21342f;
  --ink-soft: #53645f;
  --muted: #6d7773;
  --jade: #2e7569;
  --jade-dark: #245e55;
  --jade-pale: #bdd1ca;
  --line: rgba(46, 82, 74, 0.24);
  --line-strong: rgba(46, 82, 74, 0.46);
  --paper-texture: url("assets/brand/backgrounds/xuan-paper-seamless.webp");
  --serif: "Noto Serif SC", "Songti SC", STSong, SimSun, serif;
  --sans: Inter, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", system-ui,
    -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  min-width: 320px;
  margin: 0;
  background-color: var(--paper);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: 512px 512px;
  color: var(--ink);
  font-family: var(--sans);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::before {
  position: fixed;
  z-index: -1;
  inset: 0;
  background: rgba(255, 255, 255, 0.08);
  content: "";
  pointer-events: none;
}

::selection {
  background: var(--jade);
  color: var(--paper-light);
}

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

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

button {
  color: inherit;
  font: inherit;
}

a:focus-visible,
button:focus-visible {
  outline: 2px solid var(--jade);
  outline-offset: 5px;
}

.page-shell {
  width: min(1240px, calc(100% - 64px));
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  z-index: 200;
  top: 12px;
  left: 12px;
  padding: 10px 14px;
  background: var(--ink);
  color: var(--paper-light);
  transform: translateY(-160%);
}

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

.site-header {
  position: fixed;
  z-index: 100;
  top: 0;
  right: 0;
  left: 0;
  height: 82px;
  transition:
    background-color 220ms ease,
    box-shadow 220ms ease;
}

.site-header::after {
  position: absolute;
  right: 0;
  bottom: 0;
  left: 0;
  height: 1px;
  background: transparent;
  content: "";
  transition: background-color 220ms ease;
}

.site-header.is-scrolled {
  background-color: rgba(238, 233, 220, 0.9);
  box-shadow: 0 10px 34px rgba(33, 52, 47, 0.08);
  backdrop-filter: blur(18px);
}

.site-header.is-scrolled::after {
  background: var(--line);
}

.header-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 100%;
}

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

.brand-mark {
  width: 52px;
  height: 52px;
  object-fit: contain;
}

.brand-lockup {
  display: grid;
  gap: 3px;
  line-height: 1;
}

.brand-lockup strong {
  font-family: var(--serif);
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.brand-lockup small {
  color: var(--muted);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.19em;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(24px, 3vw, 44px);
}

.site-nav a {
  position: relative;
  padding: 29px 0 25px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 650;
  letter-spacing: 0.08em;
}

.site-nav a::after {
  position: absolute;
  right: 0;
  bottom: 20px;
  left: 0;
  height: 1px;
  background: var(--jade);
  content: "";
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after {
  transform: scaleX(1);
  transform-origin: left;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--line);
  background: rgba(238, 233, 220, 0.7);
  cursor: pointer;
  place-items: center;
}

.nav-toggle span {
  position: absolute;
  width: 19px;
  height: 1px;
  background: currentColor;
  transition: transform 180ms ease;
}

.nav-toggle span:first-child {
  transform: translateY(-4px);
}

.nav-toggle span:last-child {
  transform: translateY(4px);
}

.nav-toggle[aria-expanded="true"] span:first-child {
  transform: rotate(45deg);
}

.nav-toggle[aria-expanded="true"] span:last-child {
  transform: rotate(-45deg);
}

.hero {
  position: relative;
  min-height: max(900px, 100svh);
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}

.hero::before {
  position: absolute;
  top: 82px;
  bottom: 0;
  left: 50%;
  width: 1px;
  background: linear-gradient(transparent, var(--line) 12%, var(--line) 88%, transparent);
  content: "";
  pointer-events: none;
}

.hero::after {
  position: absolute;
  top: 17%;
  left: -12vw;
  width: 42vw;
  height: 42vw;
  border: 1px solid rgba(46, 117, 105, 0.12);
  border-radius: 50%;
  content: "";
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(390px, 0.82fr);
  align-items: center;
  gap: clamp(56px, 8vw, 126px);
  min-height: max(900px, 100svh);
  padding-top: 116px;
  padding-bottom: 92px;
}

.hero-copy {
  position: relative;
  z-index: 2;
}

.kicker,
.section-index {
  margin: 0;
  color: var(--jade);
  font-size: 11px;
  font-weight: 750;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.kicker {
  display: flex;
  align-items: center;
  gap: 14px;
}

.kicker span {
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.2em;
}

.kicker::before {
  width: 36px;
  height: 1px;
  background: var(--jade);
  content: "";
}

.hero h1 {
  max-width: 780px;
  margin: 38px 0 0;
  font-family: var(--serif);
  font-size: clamp(58px, 7.4vw, 108px);
  font-weight: 600;
  letter-spacing: 0.025em;
  line-height: 1.08;
}

.hero h1 em {
  color: var(--jade);
  font-style: normal;
}

.hero-intro {
  max-width: 620px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: clamp(16px, 1.55vw, 19px);
  line-height: 1.95;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 28px;
  margin-top: 42px;
}

.button {
  display: inline-flex;
  min-height: 50px;
  align-items: center;
  justify-content: center;
  padding: 0 26px;
  border: 1px solid transparent;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 0.06em;
  transition:
    background-color 180ms ease,
    border-color 180ms ease,
    color 180ms ease,
    transform 180ms ease;
}

.button-primary {
  background: var(--jade);
  color: var(--paper-light);
}

.button-primary:hover {
  background: var(--jade-dark);
  transform: translateY(-2px);
}

.text-link {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  padding: 10px 0 8px;
  border-bottom: 1px solid var(--line-strong);
  color: var(--ink);
  font-size: 14px;
  font-weight: 700;
}

.text-link span {
  color: var(--jade);
  transition: transform 180ms ease;
}

.text-link:hover span {
  transform: translate(3px, -3px);
}

.hero-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0;
  padding: 0;
  margin: 62px 0 0;
  list-style: none;
}

.hero-tags li {
  padding: 0 22px;
  border-left: 1px solid var(--line);
  color: var(--muted);
  font-family: var(--serif);
  font-size: 13px;
  letter-spacing: 0.12em;
}

.hero-tags li:first-child {
  padding-left: 0;
  border-left: 0;
}

.hero-art {
  position: relative;
  z-index: 2;
  width: min(100%, 510px);
  margin: 0 auto;
}

.art-frame {
  position: relative;
  padding: clamp(18px, 2.6vw, 32px);
  border: 1px solid var(--line-strong);
}

.art-frame::before {
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(46, 117, 105, 0.16);
  content: "";
  pointer-events: none;
}

.art-frame img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 9 / 16;
  object-fit: cover;
  mix-blend-mode: multiply;
}

.art-corner {
  position: absolute;
  width: 34px;
  height: 34px;
  border-color: var(--jade);
  pointer-events: none;
}

.art-corner-top {
  top: -1px;
  left: -1px;
  border-top: 3px solid var(--jade);
  border-left: 3px solid var(--jade);
}

.art-corner-bottom {
  right: -1px;
  bottom: -1px;
  border-right: 3px solid var(--jade);
  border-bottom: 3px solid var(--jade);
}

.hero-art figcaption {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  margin-top: 18px;
  color: var(--muted);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
}

.hero-art figcaption span:first-child {
  color: var(--jade);
  font-family: var(--serif);
  font-size: 15px;
}

.hero-register {
  position: absolute;
  right: 24px;
  bottom: 30px;
  margin: 0;
  color: rgba(33, 52, 47, 0.46);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.26em;
  writing-mode: vertical-rl;
}

.manifesto {
  display: grid;
  grid-template-columns: 160px minmax(0, 1fr) 250px;
  gap: clamp(28px, 5vw, 76px);
  padding-top: clamp(88px, 11vw, 150px);
  padding-bottom: clamp(88px, 11vw, 150px);
}

.manifesto-copy h2,
.section-header h2,
.capability-intro h2,
.contact h2 {
  margin: 0;
  font-family: var(--serif);
  font-weight: 600;
  letter-spacing: 0.025em;
}

.manifesto-copy h2 {
  font-size: clamp(42px, 5.8vw, 76px);
  line-height: 1.24;
}

.manifesto-copy > p {
  max-width: 680px;
  margin: 34px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 2;
}

.manifesto-note {
  align-self: end;
  padding: 24px 0 4px 24px;
  margin: 0;
  border-left: 1px solid var(--jade);
  color: var(--jade);
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.1em;
  line-height: 2;
}

.product-section {
  padding: clamp(92px, 10vw, 142px) 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  background-color: rgba(246, 242, 232, 0.46);
}

.section-header {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.55fr);
  align-items: end;
  gap: clamp(40px, 8vw, 120px);
  margin-bottom: 72px;
}

.section-header h2,
.capability-intro h2,
.contact h2 {
  margin-top: 22px;
  font-size: clamp(38px, 5vw, 66px);
  line-height: 1.2;
}

.section-header > p,
.capability-intro > p,
.contact-copy > p:last-child {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.95;
}

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

.product-item {
  position: relative;
  display: grid;
  grid-template-columns: 72px minmax(240px, 0.85fr) minmax(320px, 1.15fr);
  gap: clamp(24px, 5vw, 72px);
  padding: 54px 0 58px;
  border-bottom: 1px solid var(--line);
}

.product-item::before {
  position: absolute;
  top: -1px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--jade);
  content: "";
  transition: width 360ms ease;
}

.product-item:hover::before {
  width: 100%;
}

.product-number {
  color: var(--jade);
  font-family: var(--serif);
  font-size: 30px;
  line-height: 1;
}

.product-heading p {
  margin: 1px 0 17px;
  color: var(--muted);
  font-size: 9px;
  font-weight: 750;
  letter-spacing: 0.18em;
}

.product-heading h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: clamp(27px, 3vw, 40px);
  font-weight: 600;
  line-height: 1.32;
}

.product-detail > p {
  margin: 0;
  color: var(--ink-soft);
  font-size: 15px;
  line-height: 1.9;
}

.product-detail ul {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 14px;
  padding: 25px 0 0;
  margin: 26px 0 0;
  border-top: 1px solid var(--line);
  list-style: none;
}

.product-detail li {
  position: relative;
  padding-left: 13px;
  color: var(--muted);
  font-size: 12px;
  line-height: 1.7;
}

.product-detail li::before {
  position: absolute;
  top: 0.72em;
  left: 0;
  width: 4px;
  height: 4px;
  background: var(--jade);
  content: "";
}

.capabilities {
  padding: clamp(92px, 11vw, 154px) 0;
  background-color: rgba(36, 94, 85, 0.96);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: 512px 512px;
  background-blend-mode: multiply;
  color: var(--paper-light);
}

.capability-layout {
  display: grid;
  grid-template-columns: minmax(300px, 0.8fr) minmax(440px, 1.2fr);
  gap: clamp(64px, 10vw, 150px);
}

.capabilities .section-index {
  color: rgba(246, 242, 232, 0.62);
}

.capability-intro h2 {
  color: var(--paper-light);
}

.capability-intro > p {
  max-width: 520px;
  margin-top: 34px;
  color: rgba(246, 242, 232, 0.74);
}

.capability-list {
  padding: 0;
  margin: 0;
  border-top: 1px solid rgba(246, 242, 232, 0.34);
  list-style: none;
}

.capability-list li {
  display: grid;
  grid-template-columns: 52px 1fr;
  gap: 24px;
  padding: 29px 0;
  border-bottom: 1px solid rgba(246, 242, 232, 0.24);
}

.capability-list li > span {
  padding-top: 5px;
  color: rgba(246, 242, 232, 0.52);
  font-family: var(--serif);
  font-size: 13px;
}

.capability-list h3 {
  margin: 0;
  font-family: var(--serif);
  font-size: 25px;
  font-weight: 600;
  letter-spacing: 0.08em;
}

.capability-list p {
  margin: 10px 0 0;
  color: rgba(246, 242, 232, 0.7);
  font-size: 13px;
  line-height: 1.8;
}

.closing-statement {
  padding: clamp(70px, 9vw, 118px) 0;
  border-bottom: 1px solid var(--line);
}

.closing-statement .page-shell {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.closing-statement p {
  margin: 0;
  color: var(--jade);
  font-family: var(--serif);
  font-size: clamp(26px, 4.2vw, 58px);
  font-weight: 600;
  letter-spacing: 0.12em;
}

.closing-statement span {
  color: var(--line-strong);
}

.contact {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(360px, 0.9fr);
  align-items: end;
  gap: clamp(56px, 10vw, 150px);
  padding-top: clamp(100px, 12vw, 170px);
  padding-bottom: clamp(100px, 12vw, 170px);
}

.contact h2 {
  max-width: 760px;
}

.contact-copy > p:last-child {
  max-width: 680px;
  margin-top: 34px;
}

.contact-action {
  min-width: 0;
  padding: 30px 0 8px;
  border-top: 1px solid var(--line-strong);
  border-bottom: 1px solid var(--line-strong);
}

.contact-action > span {
  display: block;
  margin-bottom: 24px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
}

.contact-action a {
  display: flex;
  min-width: 0;
  align-items: center;
  justify-content: space-between;
  gap: clamp(8px, 1vw, 14px);
  padding-bottom: 28px;
  color: var(--jade);
  font-family: var(--serif);
  font-size: clamp(14px, 1.45vw, 19px);
  line-height: 1.35;
  letter-spacing: -0.015em;
  white-space: nowrap;
  overflow-wrap: normal;
  word-break: keep-all;
}

.contact-action a span {
  flex: 0 0 auto;
  transition: transform 180ms ease;
}

.contact-action a:hover span {
  transform: translate(4px, -4px);
}

.site-footer {
  padding: 60px 0 32px;
  border-top: 1px solid var(--line);
  background-color: rgba(238, 233, 220, 0.78);
  background-image: var(--paper-texture);
  background-repeat: repeat;
  background-size: 512px 512px;
  color: var(--ink);
}

.footer-inner {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  align-items: start;
  gap: 50px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 18px;
}

.footer-brand img {
  width: 68px;
  height: 68px;
  object-fit: contain;
}

.footer-brand div {
  display: grid;
  gap: 7px;
}

.footer-brand strong {
  font-family: var(--serif);
  font-size: 16px;
  letter-spacing: 0.08em;
}

.footer-brand span {
  color: var(--muted);
  font-size: 10px;
  letter-spacing: 0.08em;
}

.footer-nav {
  display: flex;
  gap: 28px;
  color: var(--ink-soft);
  font-size: 12px;
}

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

.copyright {
  display: flex;
  grid-column: 1 / -1;
  align-items: center;
  justify-content: space-between;
  gap: 12px 32px;
  flex-wrap: wrap;
  padding-top: 30px;
  margin: 12px 0 0;
  border-top: 1px solid var(--line);
  color: var(--muted);
  font-size: 9px;
  letter-spacing: 0.15em;
}

.copyright a {
  letter-spacing: 0.08em;
  transition: color 180ms ease;
}

.copyright a:hover {
  color: var(--jade);
}

.reveal-enabled [data-reveal] {
  opacity: 0;
  transform: translateY(22px);
  transition:
    opacity 620ms ease,
    transform 620ms ease;
}

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

@media (max-width: 1040px) {
  .page-shell {
    width: min(100% - 48px, 980px);
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1fr) minmax(350px, 0.72fr);
    gap: 48px;
  }

  .hero h1 {
    font-size: clamp(54px, 8vw, 82px);
  }

  .manifesto {
    grid-template-columns: 120px 1fr;
  }

  .manifesto-note {
    grid-column: 2;
    width: fit-content;
  }

  .product-item {
    grid-template-columns: 52px minmax(210px, 0.72fr) minmax(300px, 1.28fr);
  }

  .product-detail ul {
    grid-template-columns: 1fr;
    gap: 8px;
  }

  .capability-layout,
  .contact {
    gap: 64px;
  }
}

@media (max-width: 820px) {
  .site-header {
    height: 72px;
  }

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

  .brand-lockup strong {
    font-size: 18px;
  }

  .nav-toggle {
    position: relative;
    z-index: 2;
    display: grid;
  }

  .site-nav {
    position: absolute;
    top: 72px;
    right: 0;
    left: 0;
    display: grid;
    gap: 0;
    padding: 12px 24px 24px;
    border-bottom: 1px solid var(--line);
    background-color: rgba(238, 233, 220, 0.97);
    background-image: var(--paper-texture);
    background-size: 512px 512px;
    box-shadow: 0 24px 44px rgba(33, 52, 47, 0.12);
    opacity: 0;
    pointer-events: none;
    transform: translateY(-12px);
    transition:
      opacity 180ms ease,
      transform 180ms ease;
  }

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

  .site-nav a {
    padding: 18px 0;
    border-bottom: 1px solid var(--line);
  }

  .site-nav a::after {
    display: none;
  }

  .hero::before {
    display: none;
  }

  .hero-grid {
    grid-template-columns: 1fr;
    gap: 76px;
    padding-top: 142px;
    padding-bottom: 92px;
  }

  .hero-copy {
    max-width: 700px;
  }

  .hero-art {
    width: min(86vw, 500px);
  }

  .hero-register {
    display: none;
  }

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

  .manifesto-note {
    grid-column: auto;
  }

  .section-header,
  .capability-layout,
  .contact {
    grid-template-columns: 1fr;
  }

  .section-header {
    align-items: start;
    gap: 30px;
  }

  .section-header > p {
    max-width: 620px;
  }

  .product-item {
    grid-template-columns: 52px 1fr;
  }

  .product-detail {
    grid-column: 2;
  }

  .capability-intro > p {
    max-width: 680px;
  }

  .contact-action {
    max-width: 620px;
  }

  .footer-inner {
    grid-template-columns: 1fr;
  }

  .footer-nav {
    justify-content: flex-start;
  }
}

@media (max-width: 560px) {
  .page-shell {
    width: calc(100% - 36px);
  }

  .brand-lockup small {
    display: none;
  }

  .hero-grid {
    gap: 58px;
    min-height: auto;
    padding-top: 126px;
    padding-bottom: 76px;
  }

  .hero::after {
    top: 22%;
    left: -50vw;
    width: 100vw;
    height: 100vw;
  }

  .kicker {
    align-items: flex-start;
    flex-direction: column;
    gap: 10px;
  }

  .kicker::before {
    display: none;
  }

  .hero h1 {
    margin-top: 28px;
    font-size: clamp(45px, 13vw, 68px);
    line-height: 1.16;
  }

  .hero-intro {
    margin-top: 26px;
    font-size: 15px;
    line-height: 1.86;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
    gap: 14px;
    margin-top: 32px;
  }

  .button,
  .text-link {
    width: 100%;
    justify-content: center;
  }

  .hero-tags {
    margin-top: 42px;
  }

  .hero-tags li {
    padding: 0 12px;
    font-size: 11px;
  }

  .hero-art {
    width: 100%;
  }

  .art-frame {
    padding: 16px;
  }

  .manifesto,
  .product-section,
  .capabilities,
  .contact {
    padding-top: 80px;
    padding-bottom: 80px;
  }

  .manifesto-copy h2,
  .section-header h2,
  .capability-intro h2,
  .contact h2 {
    font-size: clamp(34px, 10vw, 48px);
  }

  .manifesto-copy > p {
    margin-top: 26px;
    font-size: 15px;
  }

  .manifesto-note {
    padding: 16px 0 0 16px;
    font-size: 14px;
  }

  .section-header {
    margin-bottom: 48px;
  }

  .product-item {
    grid-template-columns: 1fr;
    gap: 22px;
    padding: 40px 0;
  }

  .product-detail {
    grid-column: auto;
  }

  .product-detail ul {
    margin-top: 22px;
  }

  .product-number {
    font-size: 22px;
  }

  .capability-layout {
    gap: 48px;
  }

  .capability-list li {
    grid-template-columns: 38px 1fr;
    gap: 14px;
  }

  .closing-statement .page-shell {
    align-items: flex-start;
    flex-direction: column;
  }

  .closing-statement span {
    display: none;
  }

  .closing-statement p {
    font-size: 33px;
  }

  .contact {
    gap: 48px;
  }

  .contact-action a {
    align-items: flex-end;
    gap: 8px;
    font-size: clamp(13px, 3.7vw, 15px);
  }

  .footer-brand {
    align-items: flex-start;
  }

  .footer-brand img {
    width: 56px;
    height: 56px;
  }

  .footer-brand strong {
    font-size: 14px;
  }

  .footer-brand span {
    line-height: 1.6;
  }

  .footer-nav {
    gap: 18px;
    flex-wrap: wrap;
  }
}

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

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