:root {
  --ink: #101725;
  --ink-soft: #576477;
  --paper: #ffffff;
  --wash: #f4f6f9;
  --line: #dce2ea;
  --night: #0b111d;
  --night-soft: #141d2c;
  --coral: #ff655d;
  --coral-dark: #dc3f3b;
  --mint: #3ee0b1;
  --mint-dark: #00896a;
  --warm: #ffcf4a;
  --shell: min(1180px, calc(100vw - 48px));
  --header-height: 72px;
  font-family: Inter, "PingFang SC", "Microsoft YaHei", system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  color: var(--ink);
  background: var(--paper);
  font-synthesis: none;
  text-rendering: optimizeLegibility;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-height) + 18px);
}

body {
  margin: 0;
  min-width: 320px;
  overflow-x: hidden;
  color: var(--ink);
  background: var(--paper);
}

body.menu-open {
  overflow: hidden;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

button {
  font: inherit;
}

.shell {
  width: var(--shell);
  margin-inline: auto;
}

.skip-link {
  position: fixed;
  top: -70px;
  left: 16px;
  z-index: 1000;
  padding: 10px 16px;
  color: var(--ink);
  background: var(--paper);
  border: 1px solid var(--ink);
}

.skip-link:focus {
  top: 12px;
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: var(--header-height);
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 28px;
  padding-inline: max(24px, calc((100vw - 1340px) / 2));
  color: #ffffff;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  transition: background-color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
}

.site-header.is-scrolled {
  background: rgba(11, 17, 29, 0.96);
  border-color: rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 24px rgba(4, 8, 18, 0.18);
}

.brand {
  width: max-content;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 18px;
  font-weight: 800;
  white-space: nowrap;
}

.brand img {
  width: 40px;
  height: 40px;
  object-fit: contain;
}

.desktop-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  padding-block: 24px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 700;
}

.desktop-nav a::after {
  content: "";
  position: absolute;
  right: 100%;
  bottom: 15px;
  left: 0;
  height: 2px;
  background: var(--coral);
  transition: right 0.2s ease;
}

.desktop-nav a:hover,
.desktop-nav a:focus-visible {
  color: #ffffff;
}

.desktop-nav a:hover::after,
.desktop-nav a:focus-visible::after {
  right: 0;
}

.header-action {
  justify-self: end;
  padding: 10px 17px;
  border: 1px solid rgba(255, 255, 255, 0.34);
  border-radius: 6px;
  font-size: 14px;
  font-weight: 800;
  transition: background-color 0.2s ease, border-color 0.2s ease;
}

.header-action:hover,
.header-action:focus-visible {
  background: var(--coral);
  border-color: var(--coral);
}

.menu-button,
.mobile-nav {
  display: none;
}

.hero {
  position: relative;
  min-height: min(760px, calc(100svh - 72px));
  display: flex;
  align-items: center;
  overflow: hidden;
  color: #ffffff;
  background-color: var(--night);
  background-image: url("/assets/studio-hero-v2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.hero-overlay {
  position: absolute;
  inset: 0;
  background: rgba(6, 11, 21, 0.82);
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0;
  height: 5px;
  background: var(--coral);
}

.hero-content {
  position: relative;
  z-index: 2;
  width: var(--shell);
  margin-inline: auto;
  padding: 138px 0 90px;
}

.eyebrow,
.section-kicker {
  margin: 0 0 18px;
  font-size: 13px;
  font-weight: 900;
  line-height: 1.4;
  letter-spacing: 0;
}

.eyebrow.warm {
  color: var(--warm);
}

.eyebrow.coral {
  color: var(--coral-dark);
}

.eyebrow.mint {
  color: var(--mint);
}

.hero h1 {
  max-width: 920px;
  margin: 0;
  font-size: 86px;
  line-height: 1.04;
  letter-spacing: 0;
}

.hero-lead {
  max-width: 780px;
  margin: 26px 0 0;
  font-size: 27px;
  font-weight: 700;
  line-height: 1.45;
}

.hero-detail {
  max-width: 690px;
  margin: 18px 0 0;
  color: rgba(255, 255, 255, 0.68);
  font-size: 16px;
  line-height: 1.8;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  min-height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding-inline: 22px;
  border: 1px solid transparent;
  border-radius: 6px;
  font-size: 15px;
  font-weight: 900;
  transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.button:hover,
.button:focus-visible {
  transform: translateY(-2px);
}

.button.primary {
  color: #ffffff;
  background: var(--coral);
  box-shadow: 0 12px 28px rgba(255, 101, 93, 0.26);
}

.button.primary:hover,
.button.primary:focus-visible {
  background: var(--coral-dark);
  box-shadow: 0 16px 32px rgba(255, 101, 93, 0.32);
}

.button.ghost {
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.34);
  background: rgba(11, 17, 29, 0.36);
}

.button.ghost:hover,
.button.ghost:focus-visible {
  border-color: #ffffff;
  background: rgba(11, 17, 29, 0.72);
}

.hero-notes {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 28px;
  margin-top: 42px;
  color: rgba(255, 255, 255, 0.68);
  font-size: 13px;
  font-weight: 800;
}

.hero-notes span::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 9px;
  border-radius: 50%;
  background: var(--mint);
  vertical-align: 1px;
}

.scroll-cue {
  position: absolute;
  right: max(24px, calc((100vw - 1180px) / 2));
  bottom: 30px;
  z-index: 3;
  display: flex;
  align-items: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.7);
  font-size: 13px;
  font-weight: 800;
}

.scroll-cue i {
  width: 34px;
  height: 34px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.32);
  border-radius: 50%;
  font-style: normal;
}

.direction-strip {
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.direction-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
}

.direction-grid div {
  min-height: 110px;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 14px;
  border-right: 1px solid var(--line);
}

.direction-grid div:first-child {
  border-left: 1px solid var(--line);
}

.direction-grid strong {
  color: var(--coral);
  font-size: 14px;
}

.direction-grid span {
  font-size: 16px;
  font-weight: 800;
}

.section {
  padding-block: 112px;
}

.manifesto {
  background: var(--paper);
}

.manifesto-layout {
  display: grid;
  grid-template-columns: 0.48fr 1.52fr;
  gap: 80px;
}

.section-kicker {
  color: var(--coral-dark);
  padding-top: 12px;
}

.manifesto-copy h2,
.section-heading h2,
.contact-copy h2,
.studio-copy h2 {
  margin: 0;
  font-size: 56px;
  line-height: 1.14;
  letter-spacing: 0;
}

.manifesto-copy p {
  max-width: 760px;
  margin: 28px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
  line-height: 1.9;
}

.products {
  background: var(--wash);
}

.section-heading {
  max-width: 760px;
  margin-bottom: 52px;
}

.section-heading > p:last-child,
.contact-copy > p,
.studio-copy > p {
  margin: 22px 0 0;
  color: var(--ink-soft);
  font-size: 17px;
  line-height: 1.8;
}

.featured-product {
  display: grid;
  grid-template-columns: minmax(0, 1.25fr) minmax(360px, 0.75fr);
  min-height: 620px;
  overflow: hidden;
  color: #ffffff;
  background: var(--night);
  border-radius: 8px;
  box-shadow: 0 34px 76px rgba(25, 35, 55, 0.18);
}

.product-visual {
  position: relative;
  min-height: 100%;
  overflow: hidden;
}

.product-visual::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(11, 17, 29, 0.3);
}

.product-visual img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.product-status {
  position: absolute;
  top: 22px;
  left: 22px;
  z-index: 2;
  padding: 8px 12px;
  color: var(--night);
  background: var(--mint);
  border-radius: 5px;
  font-size: 12px;
  font-weight: 900;
}

.product-copy {
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 52px 42px;
}

.product-number {
  margin: 0 0 18px;
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.product-copy h3 {
  margin: 0;
  font-size: 38px;
  line-height: 1.2;
}

.product-copy > p:not(.product-number) {
  margin: 22px 0 0;
  color: rgba(255, 255, 255, 0.7);
  font-size: 15px;
  line-height: 1.8;
}

.product-copy ul {
  margin: 26px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.product-copy li {
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  color: rgba(255, 255, 255, 0.78);
  font-size: 13px;
}

.product-copy li::before {
  content: "";
  display: inline-block;
  width: 6px;
  height: 6px;
  margin-right: 10px;
  border-radius: 50%;
  background: var(--coral);
  vertical-align: 1px;
}

.product-actions {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 22px;
  margin-top: 30px;
}

.text-link {
  color: rgba(255, 255, 255, 0.76);
  font-size: 14px;
  font-weight: 800;
}

.text-link:hover,
.text-link:focus-visible {
  color: var(--mint);
}

.product-future {
  min-height: 150px;
  display: grid;
  grid-template-columns: 160px 1fr;
  align-items: center;
  gap: 30px;
  margin-top: 18px;
  padding: 30px 36px;
  border: 1px dashed #bdc6d4;
  border-radius: 8px;
  background: var(--paper);
}

.product-future > span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.product-future h3 {
  margin: 0;
  font-size: 23px;
}

.product-future p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.services,
.contact {
  color: #ffffff;
  background: var(--night);
}

.section-heading.light > p:last-child {
  color: rgba(255, 255, 255, 0.68);
}

.service-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-top: 1px solid rgba(255, 255, 255, 0.16);
  border-bottom: 1px solid rgba(255, 255, 255, 0.16);
}

.service-item {
  min-height: 370px;
  display: flex;
  flex-direction: column;
  padding: 30px 26px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.service-item:first-child {
  border-left: 1px solid rgba(255, 255, 255, 0.16);
}

.service-item > span {
  color: var(--mint);
  font-size: 12px;
  font-weight: 900;
}

.service-item h3 {
  margin: 80px 0 16px;
  font-size: 24px;
}

.service-item p {
  margin: 0;
  color: rgba(255, 255, 255, 0.66);
  font-size: 14px;
  line-height: 1.8;
}

.service-item small {
  margin-top: auto;
  padding-top: 30px;
  color: var(--warm);
  font-size: 11px;
  font-weight: 800;
}

.service-item:hover {
  background: var(--night-soft);
}

.method {
  background: var(--paper);
}

.outcomes {
  background: var(--wash);
}

.outcomes-layout {
  display: grid;
  grid-template-columns: minmax(320px, 0.76fr) minmax(0, 1.24fr);
  gap: 90px;
}

.outcomes .section-heading {
  margin-bottom: 0;
}

.outcome-list {
  border-top: 1px solid var(--line);
}

.outcome-item {
  min-height: 142px;
  display: grid;
  grid-template-columns: 42px minmax(0, 1fr) auto;
  align-items: center;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.outcome-item > span {
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.outcome-item h3 {
  margin: 0;
  font-size: 21px;
}

.outcome-item p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.outcome-item > strong {
  min-width: 84px;
  padding: 9px 12px;
  color: var(--night);
  border: 1px solid var(--night);
  border-radius: 5px;
  font-size: 12px;
  text-align: center;
}

.method-layout {
  display: grid;
  grid-template-columns: 0.82fr 1.18fr;
  gap: 90px;
}

.method-list {
  margin: 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.method-list li {
  display: grid;
  grid-template-columns: 54px 1fr;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid var(--line);
}

.method-list > li > span {
  color: var(--coral);
  font-size: 13px;
  font-weight: 900;
}

.method-list h3 {
  margin: 0;
  font-size: 22px;
}

.method-list p {
  margin: 8px 0 0;
  color: var(--ink-soft);
  font-size: 14px;
  line-height: 1.7;
}

.studio {
  position: relative;
  overflow: hidden;
  color: #ffffff;
  background: #151d2a;
}

.studio-backdrop {
  position: absolute;
  inset: 0;
  opacity: 0.2;
  background-image: url("/assets/studio-workshop-v2.jpg");
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}

.studio-layout {
  position: relative;
  display: grid;
  grid-template-columns: 0.58fr 1.42fr;
  align-items: center;
  gap: 80px;
}

.studio-mark {
  display: grid;
  min-height: 390px;
  place-items: center;
  border: 1px solid rgba(255, 255, 255, 0.16);
  background: rgba(11, 17, 29, 0.66);
}

.studio-mark img {
  width: 220px;
  height: 220px;
  object-fit: contain;
}

.studio-copy > p {
  color: rgba(255, 255, 255, 0.68);
}

.studio-values {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  margin-top: 38px;
  background: rgba(255, 255, 255, 0.16);
}

.studio-values span {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  color: rgba(255, 255, 255, 0.58);
  background: var(--night-soft);
  font-size: 12px;
}

.studio-values strong {
  color: var(--mint);
  font-size: 18px;
}

.contact {
  background-color: var(--night);
  border-top: 5px solid var(--coral);
}

.contact-layout {
  display: grid;
  grid-template-columns: 1fr 360px;
  align-items: center;
  gap: 100px;
}

.contact-copy > p {
  max-width: 680px;
  color: rgba(255, 255, 255, 0.68);
}

.light-button {
  margin-top: 30px;
  color: var(--night);
  background: #ffffff;
}

.wechat-contact-card {
  padding: 30px;
  color: var(--ink);
  background: #ffffff;
  border-radius: 8px;
}

.wechat-contact-label {
  margin: 0;
  color: var(--coral-dark);
  font-size: 12px;
  font-weight: 900;
}

.wechat-account {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  margin-top: 18px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line);
}

.wechat-account strong {
  font-size: 32px;
  line-height: 1.2;
}

.wechat-account button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0 16px;
  color: #ffffff;
  border: 0;
  border-radius: 5px;
  background: var(--coral-dark);
  cursor: pointer;
  font-size: 13px;
  font-weight: 900;
}

.wechat-account button:hover,
.wechat-account button:focus-visible {
  background: var(--night);
}

.copy-status {
  min-height: 20px;
  margin: 16px 0 0;
  color: var(--ink-soft);
  font-size: 13px;
  line-height: 1.5;
}

.site-footer {
  color: rgba(255, 255, 255, 0.66);
  background: #070b13;
}

.footer-layout {
  min-height: 190px;
  display: grid;
  grid-template-columns: 1.2fr 1fr auto;
  align-items: center;
  gap: 40px;
}

.footer-brand {
  color: #ffffff;
}

.footer-layout > div > p,
.copyright {
  margin: 12px 0 0;
  font-size: 12px;
}

.footer-layout nav {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 24px;
  font-size: 13px;
}

.footer-layout nav a:hover,
.footer-layout nav a:focus-visible {
  color: #ffffff;
}

.copyright {
  margin: 0;
  white-space: nowrap;
}

.reveal {
  opacity: 1;
  transform: none;
}

.has-js .reveal {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.65s ease, transform 0.65s ease;
}

.has-js .reveal.is-visible {
  opacity: 1;
  transform: translateY(0);
}

:focus-visible {
  outline: 3px solid rgba(62, 224, 177, 0.72);
  outline-offset: 3px;
}

@media (max-width: 1050px) {
  .desktop-nav {
    gap: 18px;
  }

  .hero h1 {
    font-size: 72px;
  }

  .manifesto-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .studio-copy h2 {
    font-size: 48px;
  }

  .featured-product {
    grid-template-columns: 1fr;
  }

  .product-visual {
    min-height: 500px;
  }

  .service-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .service-item {
    min-height: 320px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .method-layout {
    gap: 54px;
  }

  .outcomes-layout {
    gap: 54px;
  }

  .studio-layout {
    grid-template-columns: 0.72fr 1.28fr;
    gap: 50px;
  }
}

@media (max-width: 820px) {
  :root {
    --shell: min(100% - 32px, 680px);
    --header-height: 64px;
  }

  .site-header {
    grid-template-columns: 1fr auto;
    padding-inline: 16px;
  }

  .site-header .brand span {
    font-size: 16px;
  }

  .desktop-nav,
  .header-action {
    display: none;
  }

  .menu-button {
    justify-self: end;
    width: 42px;
    height: 42px;
    display: grid;
    place-content: center;
    gap: 5px;
    padding: 0;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 50%;
    background: transparent;
  }

  .menu-button span {
    width: 18px;
    height: 2px;
    background: #ffffff;
    transition: transform 0.2s ease, opacity 0.2s ease;
  }

  .menu-button[aria-expanded="true"] span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
  }

  .menu-button[aria-expanded="true"] span:nth-child(2) {
    opacity: 0;
  }

  .menu-button[aria-expanded="true"] span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
  }

  .mobile-nav {
    position: fixed;
    inset: var(--header-height) 0 0;
    display: flex;
    flex-direction: column;
    padding: 34px 24px;
    color: #ffffff;
    background: rgba(11, 17, 29, 0.98);
  }

  .mobile-nav[hidden] {
    display: none;
  }

  .mobile-nav a {
    padding: 18px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 21px;
    font-weight: 800;
  }

  .hero {
    min-height: calc(100svh - 44px);
    background-position: 44% center;
  }

  .hero-content {
    padding: 124px 0 96px;
  }

  .hero h1 {
    font-size: 54px;
  }

  .hero-lead {
    font-size: 22px;
  }

  .hero-detail {
    font-size: 15px;
  }

  .scroll-cue {
    right: 16px;
    bottom: 22px;
  }

  .direction-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .direction-grid div {
    min-height: 90px;
    justify-content: flex-start;
    padding-inline: 18px;
    border-bottom: 1px solid var(--line);
  }

  .section {
    padding-block: 82px;
  }

  .manifesto-layout,
  .outcomes-layout,
  .method-layout,
  .studio-layout,
  .contact-layout {
    grid-template-columns: 1fr;
    gap: 44px;
  }

  .manifesto-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .studio-copy h2 {
    font-size: 42px;
  }

  .product-visual {
    min-height: 380px;
  }

  .product-copy {
    padding: 38px 30px;
  }

  .outcome-item {
    grid-template-columns: 42px minmax(0, 1fr);
  }

  .outcome-item > strong {
    grid-column: 2;
    justify-self: start;
  }

  .product-future {
    grid-template-columns: 1fr;
    gap: 12px;
  }

  .studio-mark {
    min-height: 310px;
  }

  .contact-layout {
    grid-template-columns: 1fr 290px;
  }

  .footer-layout {
    grid-template-columns: 1fr 1fr;
    padding-block: 44px;
  }

  .copyright {
    grid-column: 1 / -1;
  }
}

@media (max-width: 590px) {
  .hero h1 {
    font-size: 46px;
  }

  .hero-lead {
    font-size: 20px;
  }

  .hero-actions .button {
    width: 100%;
  }

  .hero-notes {
    display: grid;
  }

  .scroll-cue span {
    display: none;
  }

  .direction-grid div {
    align-items: flex-start;
    flex-direction: column;
    justify-content: center;
    gap: 4px;
  }

  .manifesto-copy h2,
  .section-heading h2,
  .contact-copy h2,
  .studio-copy h2 {
    font-size: 36px;
  }

  .manifesto-copy p {
    font-size: 16px;
  }

  .product-visual {
    min-height: 270px;
  }

  .product-copy h3 {
    font-size: 31px;
  }

  .service-grid {
    grid-template-columns: 1fr;
  }

  .outcome-item {
    grid-template-columns: 32px minmax(0, 1fr);
    gap: 16px;
  }

  .service-item,
  .service-item:first-child {
    min-height: 280px;
    border-left: 1px solid rgba(255, 255, 255, 0.16);
  }

  .service-item h3 {
    margin-top: 48px;
  }

  .studio-values {
    grid-template-columns: 1fr;
  }

  .contact-layout {
    grid-template-columns: 1fr;
  }

  .wechat-contact-card {
    width: min(100%, 360px);
  }

  .wechat-account {
    align-items: flex-start;
    flex-direction: column;
  }

  .footer-layout {
    grid-template-columns: 1fr;
    align-items: start;
  }

  .copyright {
    grid-column: auto;
  }
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .has-js .reveal {
    opacity: 1;
    transform: none;
  }
}
