:root {
  --ink: #171717;
  --muted: #69645f;
  --paper: #f7f3eb;
  --white: #fffdfa;
  --orange: #ff6337;
  --orange-dark: #e94a22;
  --yellow: #ffd936;
  --line: rgba(23, 23, 23, 0.16);
  --radius: 22px;
  --max: 1400px;
  --font-display: "Manrope", "PingFang SC", "Microsoft YaHei", sans-serif;
  --font-body: "DM Sans", "PingFang SC", "Microsoft YaHei", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: var(--font-body);
  -webkit-font-smoothing: antialiased;
}

body:not(.is-zh) .lang-zh,
body.is-zh .lang-en {
  display: none !important;
}

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

a {
  color: inherit;
}

button,
input,
select,
textarea {
  color: inherit;
  font: inherit;
}

button,
a {
  -webkit-tap-highlight-color: transparent;
}

.site-header {
  position: fixed;
  z-index: 50;
  top: 14px;
  right: 18px;
  left: 18px;
  max-width: calc(var(--max) - 36px);
  min-height: 70px;
  margin: 0 auto;
  padding: 10px 12px 10px 18px;
  display: flex;
  align-items: center;
  gap: 30px;
  border: 1px solid rgba(23, 23, 23, 0.1);
  border-radius: 18px;
  background: rgba(255, 253, 250, 0.89);
  box-shadow: 0 12px 40px rgba(50, 35, 24, 0.08);
  backdrop-filter: blur(18px);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.site-header.scrolled {
  box-shadow: 0 16px 50px rgba(50, 35, 24, 0.14);
}

.brand {
  flex: 0 0 auto;
  width: 168px;
  text-decoration: none;
}

.brand img {
  width: 100%;
}

.desktop-nav {
  margin-left: auto;
  display: flex;
  align-items: center;
  gap: 28px;
}

.desktop-nav a {
  position: relative;
  color: #3f3b37;
  font-size: 13px;
  font-weight: 600;
  text-decoration: none;
}

.desktop-nav a::after {
  position: absolute;
  right: 0;
  bottom: -6px;
  left: 0;
  height: 2px;
  content: "";
  background: var(--orange);
  transform: scaleX(0);
  transform-origin: right;
  transition: transform 0.25s ease;
}

.desktop-nav a:hover::after {
  transform: scaleX(1);
  transform-origin: left;
}

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

.lang-switch {
  padding: 3px;
  display: flex;
  border: 1px solid var(--line);
  border-radius: 999px;
}

.lang-switch button {
  width: 34px;
  height: 30px;
  padding: 0;
  border: 0;
  border-radius: 999px;
  background: transparent;
  cursor: pointer;
  font-size: 11px;
  font-weight: 700;
}

.lang-switch button.active {
  color: var(--white);
  background: var(--ink);
}

.button {
  min-height: 54px;
  padding: 0 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: var(--ink);
  color: var(--white);
  cursor: pointer;
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.18);
}

.button-small {
  min-height: 44px;
  padding: 0 20px;
  gap: 14px;
}

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

.button-primary:hover {
  background: var(--orange-dark);
}

.button-ghost {
  border-color: var(--line);
  background: transparent;
  color: var(--ink);
}

.hero {
  position: relative;
  min-height: 870px;
  max-width: var(--max);
  margin: 0 auto;
  padding: 150px 56px 80px;
  display: grid;
  grid-template-columns: minmax(0, 0.88fr) minmax(520px, 1.12fr);
  align-items: center;
  gap: 62px;
  overflow: hidden;
}

.hero::before {
  position: absolute;
  z-index: -1;
  top: 160px;
  left: -80px;
  width: 360px;
  height: 360px;
  border: 1px solid rgba(255, 99, 55, 0.16);
  border-radius: 50%;
  content: "";
}

.eyebrow {
  margin: 0 0 28px;
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.15em;
  text-transform: uppercase;
}

.eyebrow i {
  width: 9px;
  height: 9px;
  display: inline-block;
  border-radius: 50%;
  background: var(--orange);
  box-shadow: 0 0 0 6px rgba(255, 99, 55, 0.12);
}

.hero h1,
.section-heading h2,
.intro-heading h2,
.factory-copy h2,
.experience h2,
.inquiry-copy h2 {
  margin: 0;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.055em;
  line-height: 0.99;
}

.hero h1 {
  max-width: 700px;
  font-size: clamp(58px, 6vw, 92px);
}

.hero h1 em,
.intro-heading h2 em {
  color: var(--orange);
  font-style: normal;
}

.hero-lead {
  max-width: 620px;
  margin: 30px 0 0;
  color: var(--muted);
  font-size: 18px;
  line-height: 1.7;
}

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

.trust-row {
  margin-top: 48px;
  padding-top: 26px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  border-top: 1px solid var(--line);
}

.trust-row span {
  display: flex;
  flex-direction: column;
}

.trust-row strong {
  font-family: var(--font-display);
  font-size: 28px;
  letter-spacing: -0.04em;
}

.trust-row small {
  margin-top: 2px;
  color: var(--muted);
  font-size: 11px;
  letter-spacing: 0.04em;
}

.hero-visual {
  position: relative;
  min-height: 650px;
}

.sun-disc {
  position: absolute;
  top: 38px;
  right: 32px;
  width: 430px;
  height: 430px;
  border-radius: 50%;
  background: var(--yellow);
}

.sun-disc::before,
.sun-disc::after {
  position: absolute;
  border: 1px solid rgba(23, 23, 23, 0.15);
  border-radius: 50%;
  content: "";
}

.sun-disc::before {
  inset: 22px;
}

.sun-disc::after {
  inset: 48px;
}

.hero-product {
  position: absolute;
  margin: 0;
  overflow: hidden;
  border: 7px solid var(--white);
  box-shadow: 0 30px 70px rgba(56, 42, 30, 0.18);
}

.hero-product img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-product-main {
  z-index: 2;
  top: 90px;
  right: 90px;
  width: 390px;
  height: 510px;
  border-radius: 220px 220px 34px 34px;
}

.hero-product-small {
  z-index: 3;
  right: 0;
  bottom: 8px;
  width: 210px;
  height: 240px;
  border-radius: 30px;
  transform: rotate(5deg);
}

.hero-note {
  position: absolute;
  z-index: 5;
  bottom: 58px;
  left: 6px;
  min-width: 310px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 14px;
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 16px 40px rgba(23, 23, 23, 0.22);
}

.hero-note > span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border-radius: 50%;
  background: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.hero-note div {
  display: flex;
  flex-direction: column;
}

.hero-note strong {
  font-size: 13px;
}

.hero-note small {
  margin-top: 3px;
  color: #aaa49f;
  font-size: 10px;
  letter-spacing: 0.04em;
}

.ticker {
  width: 100%;
  padding: 17px 0;
  overflow: hidden;
  border-top: 1px solid var(--ink);
  border-bottom: 1px solid var(--ink);
  background: var(--yellow);
}

.ticker > div {
  width: max-content;
  display: flex;
  align-items: center;
  gap: 34px;
  animation: ticker 25s linear infinite;
}

.ticker span {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  letter-spacing: 0.07em;
}

.ticker i {
  font-style: normal;
}

@keyframes ticker {
  to {
    transform: translateX(-50%);
  }
}

.section-pad {
  max-width: var(--max);
  margin: 0 auto;
  padding: 130px 56px;
}

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

.section-label span {
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  flex: 0 0 auto;
  border: 1px solid var(--ink);
  border-radius: 50%;
  font-size: 11px;
  font-weight: 700;
}

.section-label p {
  margin: 0;
  color: var(--muted);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.section-label.light span {
  border-color: rgba(255,255,255,0.5);
}

.section-label.light p {
  color: rgba(255,255,255,0.65);
}

.intro {
  display: grid;
  grid-template-columns: 0.45fr 1.55fr;
  column-gap: 70px;
}

.intro-heading {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: end;
  gap: 70px;
}

.intro-heading h2,
.section-heading h2,
.experience h2 {
  font-size: clamp(45px, 5vw, 72px);
}

.intro-heading > p,
.section-heading > p {
  margin: 0 0 7px;
  color: var(--muted);
  font-size: 16px;
  line-height: 1.75;
}

.capability-grid {
  grid-column: 1 / -1;
  margin-top: 80px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}

.capability-card {
  position: relative;
  padding: 16px 16px 30px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--white);
}

.capability-image {
  height: 310px;
  overflow: hidden;
  border-radius: 13px;
  background: #ece8df;
}

.capability-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s cubic-bezier(.2,.7,.2,1);
}

.capability-card:hover img {
  transform: scale(1.04);
}

.capability-card > span {
  position: absolute;
  top: 28px;
  left: 28px;
  width: 38px;
  height: 38px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--orange);
  color: white;
  font-size: 11px;
  font-weight: 700;
}

.capability-card h3 {
  margin: 25px 12px 8px;
  font-family: var(--font-display);
  font-size: 25px;
  letter-spacing: -0.03em;
}

.capability-card p {
  margin: 0 12px;
  color: var(--muted);
  font-size: 14px;
  line-height: 1.65;
}

.work {
  max-width: none;
  padding-right: max(56px, calc((100vw - var(--max)) / 2 + 56px));
  padding-left: max(56px, calc((100vw - var(--max)) / 2 + 56px));
  background: var(--ink);
  color: var(--white);
}

.section-heading {
  display: grid;
  grid-template-columns: 0.45fr 1fr 0.55fr;
  align-items: end;
  gap: 50px;
}

.work .section-label span {
  border-color: rgba(255,255,255,0.5);
}

.work .section-label p,
.work .section-heading > p {
  color: #aaa49f;
}

.work-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  grid-template-rows: repeat(2, 320px);
  gap: 18px;
}

.work-card {
  position: relative;
  margin: 0;
  overflow: hidden;
  border-radius: var(--radius);
  background: #ebe7de;
}

.work-card.work-tall {
  grid-row: 1 / 3;
}

.work-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s cubic-bezier(.2,.7,.2,1);
}

.work-card:hover img {
  transform: scale(1.035);
}

.work-card figcaption {
  position: absolute;
  right: 14px;
  bottom: 14px;
  left: 14px;
  padding: 14px 17px;
  display: flex;
  align-items: center;
  gap: 14px;
  border-radius: 12px;
  background: rgba(23,23,23,0.84);
  backdrop-filter: blur(10px);
}

.work-card figcaption span {
  color: var(--orange);
  font-size: 11px;
  font-weight: 700;
}

.work-card figcaption strong {
  font-size: 13px;
}

.portfolio-note,
.quality-note {
  margin: 22px 0 0;
  color: #8e8883;
  font-size: 11px;
  line-height: 1.6;
}

.section-heading.compact {
  grid-template-columns: 0.45fr 1.55fr;
}

.process-list {
  margin: 70px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--ink);
}

.process-list li {
  padding: 28px 0;
  display: grid;
  grid-template-columns: 0.25fr 1.75fr;
  border-bottom: 1px solid var(--line);
}

.process-list li > span {
  color: var(--orange);
  font-family: var(--font-display);
  font-size: 14px;
  font-weight: 700;
}

.process-list li > div {
  display: grid;
  grid-template-columns: 0.72fr 1.28fr;
  align-items: start;
  gap: 70px;
}

.process-list h3 {
  margin: 0;
  font-family: var(--font-display);
  font-size: 27px;
  letter-spacing: -0.03em;
}

.process-list p {
  max-width: 680px;
  margin: 0;
  color: var(--muted);
  line-height: 1.7;
}

.factory {
  max-width: var(--max);
  min-height: 720px;
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.08fr 0.92fr;
  background: var(--orange);
  color: #fff;
}

.factory-image {
  min-height: 720px;
  overflow: hidden;
}

.factory-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.factory-copy {
  padding: 85px 64px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.factory-copy h2,
.inquiry-copy h2 {
  margin-top: 48px;
  font-size: clamp(42px, 4vw, 62px);
}

.factory-copy > p,
.inquiry-copy > p {
  margin: 28px 0 0;
  color: rgba(255,255,255,0.76);
  font-size: 16px;
  line-height: 1.75;
}

.factory-stats {
  margin-top: 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
}

.factory-stats div {
  padding-top: 18px;
  display: flex;
  flex-direction: column;
  border-top: 1px solid rgba(255,255,255,0.38);
}

.factory-stats strong {
  font-family: var(--font-display);
  font-size: 30px;
}

.factory-stats span {
  margin-top: 4px;
  color: rgba(255,255,255,0.68);
  font-size: 10px;
  line-height: 1.4;
}

.quality .section-heading {
  grid-template-columns: 0.45fr 1fr 0.55fr;
}

.quality-grid {
  margin-top: 70px;
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  border-top: 1px solid var(--ink);
  border-left: 1px solid var(--line);
}

.quality-grid div {
  min-height: 170px;
  padding: 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.quality-grid small {
  color: var(--orange);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.quality-grid strong {
  font-family: var(--font-display);
  font-size: clamp(26px, 3vw, 42px);
  letter-spacing: -0.04em;
}

.quality .quality-note {
  color: var(--muted);
}

.experience {
  max-width: none;
  padding-right: max(56px, calc((100vw - var(--max)) / 2 + 56px));
  padding-left: max(56px, calc((100vw - var(--max)) / 2 + 56px));
  overflow: hidden;
  border-top: 1px solid var(--line);
  background: var(--yellow);
}

.experience .eyebrow i {
  background: var(--ink);
  box-shadow: 0 0 0 6px rgba(23,23,23,0.1);
}

.name-cloud {
  margin-top: 65px;
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.name-cloud span {
  padding: 15px 22px;
  border: 1px solid var(--ink);
  border-radius: 999px;
  background: rgba(255,255,255,0.28);
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
}

.experience .quality-note {
  max-width: 760px;
  color: rgba(23,23,23,0.62);
}

.inquiry {
  max-width: none;
  padding-right: max(56px, calc((100vw - var(--max)) / 2 + 56px));
  padding-left: max(56px, calc((100vw - var(--max)) / 2 + 56px));
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 90px;
  background: var(--ink);
  color: #fff;
}

.contact-details {
  margin-top: 46px;
  display: grid;
  gap: 18px;
}

.contact-details a,
.contact-details > div {
  padding-bottom: 18px;
  display: flex;
  flex-direction: column;
  border-bottom: 1px solid rgba(255,255,255,0.17);
  text-decoration: none;
}

.contact-details small {
  color: rgba(255,255,255,0.45);
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.13em;
}

.contact-details strong {
  margin-top: 6px;
  font-size: 15px;
}

.inquiry-form {
  padding: 38px;
  border-radius: var(--radius);
  background: var(--white);
  color: var(--ink);
}

.form-heading {
  margin-bottom: 34px;
  padding-bottom: 18px;
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid var(--ink);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
}

.form-heading b {
  color: var(--orange);
}

.inquiry-form label {
  margin-top: 22px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.inquiry-form input,
.inquiry-form select,
.inquiry-form textarea {
  width: 100%;
  padding: 12px 0;
  border: 0;
  border-bottom: 1px solid var(--line);
  outline: none;
  background: transparent;
  color: var(--ink);
  font-size: 15px;
  font-weight: 500;
  letter-spacing: 0;
  resize: vertical;
  transition: border-color 0.2s ease;
}

.inquiry-form input:focus,
.inquiry-form select:focus,
.inquiry-form textarea:focus {
  border-color: var(--orange);
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 24px;
}

.form-submit {
  width: 100%;
  margin-top: 30px;
  justify-content: space-between;
  border: 0;
}

.form-note,
.form-status {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 10px;
  line-height: 1.55;
}

.form-status {
  color: var(--orange-dark);
  font-weight: 700;
}

footer {
  max-width: var(--max);
  min-height: 150px;
  margin: 0 auto;
  padding: 35px 56px;
  display: grid;
  grid-template-columns: 300px 1fr auto;
  align-items: center;
  gap: 40px;
  background: var(--white);
}

.footer-brand img {
  width: 100%;
}

footer p {
  margin: 3px 0;
  color: var(--muted);
  font-size: 11px;
}

.footer-meta {
  display: flex;
  flex-direction: column;
  align-items: flex-end;
  gap: 4px;
  color: var(--muted);
  font-size: 10px;
}

.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.75s ease, transform 0.75s cubic-bezier(.2,.7,.2,1);
}

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

@media (max-width: 1100px) {
  .site-header {
    gap: 16px;
  }

  .brand {
    width: 148px;
  }

  .desktop-nav {
    display: none;
  }

  .header-actions {
    margin-left: auto;
  }

  .hero {
    grid-template-columns: 1fr 0.9fr;
    gap: 20px;
  }

  .hero-product-main {
    right: 30px;
    width: 350px;
  }

  .sun-disc {
    right: 0;
    width: 380px;
    height: 380px;
  }

  .hero-note {
    display: none;
  }

  .intro-heading,
  .section-heading,
  .quality .section-heading {
    grid-template-columns: 1fr;
    align-items: start;
    gap: 30px;
  }

  .intro-heading > p,
  .section-heading > p {
    max-width: 700px;
  }

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

  .factory-image {
    min-height: 520px;
  }

  .inquiry {
    gap: 50px;
  }
}

@media (max-width: 820px) {
  .site-header {
    top: 8px;
    right: 8px;
    left: 8px;
    min-height: 62px;
    padding: 8px 9px 8px 13px;
  }

  .brand {
    width: 132px;
  }

  .button-small {
    display: none;
  }

  .hero {
    min-height: auto;
    padding: 125px 24px 70px;
    grid-template-columns: 1fr;
  }

  .hero h1 {
    font-size: clamp(52px, 14vw, 76px);
  }

  .hero-lead {
    font-size: 16px;
  }

  .hero-visual {
    min-height: 580px;
    margin-top: 10px;
  }

  .hero-product-main {
    right: 16%;
  }

  .hero-product-small {
    right: 4%;
  }

  .sun-disc {
    right: 9%;
  }

  .section-pad {
    padding: 90px 24px;
  }

  .intro {
    grid-template-columns: 1fr;
    gap: 42px;
  }

  .intro-heading {
    grid-template-columns: 1fr;
  }

  .capability-grid {
    grid-template-columns: 1fr;
    margin-top: 55px;
  }

  .capability-image {
    height: 380px;
  }

  .work {
    padding: 90px 24px;
  }

  .work-grid {
    grid-template-columns: 1fr;
    grid-template-rows: 520px 360px 360px;
  }

  .work-card.work-tall {
    grid-row: auto;
  }

  .section-heading.compact {
    grid-template-columns: 1fr;
  }

  .process-list li {
    grid-template-columns: 55px 1fr;
  }

  .process-list li > div {
    grid-template-columns: 1fr;
    gap: 10px;
  }

  .factory {
    margin: 0;
  }

  .factory-copy {
    padding: 70px 24px;
  }

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

  .experience {
    padding: 90px 24px;
  }

  .inquiry {
    padding: 90px 24px;
    grid-template-columns: 1fr;
  }

  footer {
    padding: 35px 24px;
    grid-template-columns: 1fr;
    gap: 18px;
  }

  .footer-brand {
    max-width: 300px;
  }

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

@media (max-width: 520px) {
  .brand {
    width: 118px;
  }

  .lang-switch button {
    width: 30px;
    height: 28px;
  }

  .hero-actions {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-actions .button {
    width: 100%;
  }

  .trust-row {
    gap: 10px;
  }

  .trust-row strong {
    font-size: 23px;
  }

  .trust-row small {
    font-size: 9px;
  }

  .hero-visual {
    min-height: 470px;
  }

  .hero-product-main {
    top: 55px;
    right: 12%;
    width: 275px;
    height: 380px;
  }

  .hero-product-small {
    right: 0;
    width: 145px;
    height: 170px;
  }

  .sun-disc {
    top: 18px;
    right: 3%;
    width: 320px;
    height: 320px;
  }

  .intro-heading h2,
  .section-heading h2,
  .experience h2 {
    font-size: 43px;
  }

  .capability-image {
    height: 300px;
  }

  .work-grid {
    grid-template-rows: 430px 300px 300px;
  }

  .factory-stats {
    grid-template-columns: 1fr;
  }

  .inquiry-form {
    padding: 26px 20px;
  }

  .form-row {
    grid-template-columns: 1fr;
    gap: 0;
  }
}

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

  .ticker > div {
    animation: none;
  }

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