:root {
  --ink: #171c24;
  --mist: #f0f2ed;
  --sand: #e3dbcc;
  --pine: #2e6b5c;
  --pine-deep: #245649;
  --ember: #db6b47;
  --slate: #6b727a;
  --white: #ffffff;
  --line: rgba(23, 28, 36, 0.12);
  --shell: min(1080px, calc(100% - 2.5rem));
  --font-display: "Fraunces", Georgia, "Times New Roman", serif;
  --font-body: "Source Sans 3", "Noto Sans Arabic", "Noto Sans SC", "Noto Sans JP", "Segoe UI", sans-serif;
  --radius: 18px;
  --shadow: 0 24px 60px rgba(23, 28, 36, 0.12);
}

* { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  scroll-padding-top: 88px;
}

body {
  margin: 0;
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 17px;
  line-height: 1.6;
  background:
    radial-gradient(900px 480px at 8% -8%, #ffffff 0%, transparent 55%),
    radial-gradient(700px 420px at 92% 4%, rgba(46, 107, 92, 0.12) 0%, transparent 50%),
    radial-gradient(640px 380px at 70% 30%, rgba(219, 107, 71, 0.08) 0%, transparent 45%),
    linear-gradient(165deg, var(--mist) 0%, #f7f4ef 42%, var(--sand) 100%);
  background-attachment: fixed;
  min-height: 100vh;
  -webkit-font-smoothing: antialiased;
}

a { color: var(--pine); text-decoration-thickness: 1px; text-underline-offset: 3px; }
a:hover { color: var(--ember); }
button { font: inherit; }
.shell { width: var(--shell); margin-inline: auto; }
.sr-only { 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 {
  position: fixed; z-index: 100; top: 12px; left: 12px;
  transform: translateY(-160%);
  padding: 10px 16px;
  border-radius: 12px;
  background: var(--pine);
  color: white;
  font-weight: 700;
  text-decoration: none;
}
.skip-link:focus { transform: translateY(0); }

/* Header */
.site-header {
  position: sticky;
  z-index: 50;
  top: 0;
  border-bottom: 1px solid rgba(23, 28, 36, 0.08);
  background: rgba(240, 242, 237, 0.82);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: var(--ink);
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 650;
  letter-spacing: -0.03em;
  text-decoration: none;
}

.brand-mark {
  display: grid;
  place-items: center;
  width: 34px;
  height: 34px;
  border-radius: 10px;
  background: linear-gradient(145deg, var(--pine), var(--pine-deep));
  color: white;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 650;
  box-shadow: 0 8px 18px rgba(46, 107, 92, 0.28);
}

.nav-links { display: flex; align-items: center; gap: 1.4rem; }
.nav-links a {
  color: var(--slate);
  font-size: 0.95rem;
  font-weight: 600;
  text-decoration: none;
  transition: color 0.2s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--pine); }
.menu-toggle { display: none; }

.lang-switch {
  display: inline-flex;
  align-items: center;
}
.lang-switch select {
  min-height: 36px;
  padding: 0.35rem 0.65rem;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.85);
  color: var(--ink);
  font: inherit;
  font-size: 0.85rem;
  font-weight: 600;
  cursor: pointer;
}
.lang-switch select:focus {
  outline: 2px solid rgba(46, 107, 92, 0.35);
  border-color: var(--pine);
}

.legal-lang-note {
  margin: 1.25rem auto 0;
  color: var(--slate);
  font-size: 0.92rem;
  font-weight: 600;
}

html[dir="rtl"] .format-item:hover { transform: translateX(-4px); }
html[dir="rtl"] .hero-actions,
html[dir="rtl"] .trust-row { justify-content: flex-start; }
html[lang="ar"] body,
html[lang="ar"] .button,
html[lang="zh"] body,
html[lang="ja"] body {
  font-family: var(--font-body);
}
html[lang="ar"] .hero-brand,
html[lang="ar"] h1,
html[lang="ar"] h2,
html[lang="ar"] h3,
html[lang="zh"] .hero-brand,
html[lang="zh"] h1,
html[lang="zh"] h2,
html[lang="zh"] h3,
html[lang="ja"] .hero-brand,
html[lang="ja"] h1,
html[lang="ja"] h2,
html[lang="ja"] h3 {
  letter-spacing: -0.02em;
}

/* Hero */
.hero {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 3rem;
  align-items: center;
  padding: 4.5rem 0 5rem;
  min-height: calc(100vh - 72px);
}

.hero-brand {
  margin: 0 0 1rem;
  font-family: var(--font-display);
  font-size: clamp(3.4rem, 8vw, 5.8rem);
  font-weight: 650;
  letter-spacing: -0.04em;
  line-height: 0.95;
  color: var(--ink);
  animation: rise 0.8s ease both;
}

.hero h1 {
  margin: 0 0 1.1rem;
  max-width: 16ch;
  font-family: var(--font-display);
  font-size: clamp(1.85rem, 3.6vw, 2.55rem);
  font-weight: 560;
  letter-spacing: -0.03em;
  line-height: 1.15;
  color: var(--ink);
  animation: rise 0.8s ease 0.08s both;
}

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

.hero-lede {
  margin: 0 0 1.75rem;
  max-width: 34rem;
  color: var(--slate);
  font-size: 1.12rem;
  line-height: 1.65;
  animation: rise 0.8s ease 0.14s both;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
  animation: rise 0.8s ease 0.2s both;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.5rem;
  min-height: 52px;
  padding: 0 1.35rem;
  border: 0;
  border-radius: 14px;
  font-weight: 700;
  text-decoration: none;
  transition: transform 0.2s ease, background 0.2s ease, opacity 0.2s ease;
}
.button:hover { transform: translateY(-2px); }
.button-primary { background: var(--pine); color: white; }
.button-primary:hover { background: var(--pine-deep); color: white; }
.button-secondary { background: rgba(23, 28, 36, 0.06); color: var(--ink); }
.button-secondary:hover { color: var(--ink); background: rgba(23, 28, 36, 0.1); }
.button-light { background: var(--white); color: var(--ink); }
.button-light:hover { color: var(--ink); opacity: 0.95; }

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.25rem;
  color: var(--slate);
  font-size: 0.88rem;
  font-weight: 600;
  animation: rise 0.8s ease 0.26s both;
}
.trust-row span::before {
  content: "✓";
  margin-right: 0.4rem;
  color: var(--pine);
}

.hero-visual {
  position: relative;
  animation: float-in 1s ease 0.15s both;
}

.studio-panel {
  position: relative;
  padding: 1.4rem;
  border: 1px solid rgba(46, 107, 92, 0.18);
  border-radius: 28px;
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.92), rgba(240, 242, 237, 0.88));
  box-shadow: var(--shadow);
  overflow: hidden;
}

.studio-panel::before {
  content: "";
  position: absolute;
  inset: auto -20% -35% 35%;
  height: 70%;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(46, 107, 92, 0.18), transparent 65%);
  pointer-events: none;
}

.studio-kicker {
  margin: 0 0 0.35rem;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.studio-title {
  margin: 0 0 1.15rem;
  font-family: var(--font-display);
  font-size: 1.55rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.format-list { display: grid; gap: 0.7rem; }

.format-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.9rem;
  align-items: center;
  padding: 0.9rem 1rem;
  border: 1px solid transparent;
  border-radius: var(--radius);
  background: rgba(255, 255, 255, 0.78);
  transition: transform 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}
.format-item:hover {
  transform: translateX(4px);
  border-color: rgba(46, 107, 92, 0.25);
  box-shadow: 0 10px 24px rgba(23, 28, 36, 0.06);
}

.format-icon {
  display: grid;
  place-items: center;
  width: 52px;
  height: 66px;
  border-radius: 12px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.04em;
}
.format-item.reel .format-icon { background: rgba(46, 107, 92, 0.18); color: var(--pine); }
.format-item.story .format-icon { background: rgba(219, 107, 71, 0.16); color: var(--ember); }
.format-item.post .format-icon { background: rgba(61, 90, 128, 0.16); color: #3d5a80; }

.format-item strong {
  display: block;
  margin-bottom: 0.15rem;
  font-size: 1.02rem;
}
.format-item span {
  color: var(--slate);
  font-size: 0.9rem;
  line-height: 1.35;
}

.look-row {
  display: flex;
  gap: 0.55rem;
  margin-top: 1.15rem;
}
.look-chip {
  flex: 1;
  padding: 0.55rem 0.4rem;
  border-radius: 12px;
  text-align: center;
  font-size: 0.72rem;
  font-weight: 700;
  color: var(--ink);
  background: rgba(23, 28, 36, 0.05);
}
.look-chip.active {
  color: white;
  background: var(--pine);
}
.look-chip.warm { background: linear-gradient(135deg, #f0d2b4, #d9a07a); }
.look-chip.cinema { background: linear-gradient(135deg, #3d5a80, #171c24); color: white; }
.look-chip.soft { background: linear-gradient(135deg, #e8efe8, #b7cfc4); }

/* Sections */
.section { padding: 5.5rem 0; }
.section-heading { max-width: 36rem; margin-bottom: 2.4rem; }
.section-heading .eyebrow,
.eyebrow {
  display: inline-block;
  margin: 0 0 0.85rem;
  color: var(--pine);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}
.section-heading h2,
h2 {
  margin: 0 0 0.85rem;
  font-family: var(--font-display);
  font-size: clamp(2rem, 4.5vw, 3.2rem);
  font-weight: 600;
  letter-spacing: -0.035em;
  line-height: 1.1;
}
.section-heading p,
.sub {
  margin: 0;
  color: var(--slate);
  font-size: 1.05rem;
}

.formats-strip {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
  margin-bottom: 1.5rem;
}
.format-tile {
  padding: 1.4rem 1.25rem;
  border-radius: 22px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.72);
}
.format-tile h3 {
  margin: 0 0 0.45rem;
  font-family: var(--font-display);
  font-size: 1.45rem;
  font-weight: 600;
}
.format-tile p { margin: 0; color: var(--slate); font-size: 0.95rem; }
.format-tile.reel { border-color: rgba(46, 107, 92, 0.28); background: rgba(46, 107, 92, 0.08); }
.format-tile.story { border-color: rgba(219, 107, 71, 0.28); background: rgba(219, 107, 71, 0.08); }
.format-tile.post { border-color: rgba(61, 90, 128, 0.28); background: rgba(61, 90, 128, 0.08); }

.steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}
.step {
  padding: 1.5rem 1.35rem;
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.7);
  border: 1px solid var(--line);
}
.step-number {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 1rem;
  border-radius: 999px;
  background: var(--pine);
  color: white;
  font-size: 0.85rem;
  font-weight: 800;
}
.step h3 {
  margin: 0 0 0.5rem;
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
}
.step p { margin: 0; color: var(--slate); font-size: 0.98rem; }

.process-band {
  margin: 1rem 0 0;
  padding: 4.5rem 0;
  background:
    linear-gradient(135deg, rgba(46, 107, 92, 0.94), rgba(23, 28, 36, 0.95));
  color: white;
}
.process-band .eyebrow { color: rgba(255, 255, 255, 0.65); }
.process-band h2 { color: white; }
.process-band .step {
  background: rgba(255, 255, 255, 0.08);
  border-color: rgba(255, 255, 255, 0.12);
}
.process-band .step h3 { color: white; }
.process-band .step p { color: rgba(255, 255, 255, 0.7); }
.process-band .step-number { background: var(--ember); }

.privacy-callout {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 2rem;
  align-items: end;
  padding: 4.5rem 0;
}
.privacy-callout h2 { max-width: 14ch; }
.privacy-callout > p { max-width: 38rem; color: var(--slate); }
.legal-links { display: grid; gap: 0.75rem; }
.text-link {
  display: inline-flex;
  gap: 0.45rem;
  color: var(--ink);
  font-weight: 750;
  text-decoration: none;
  border-bottom: 1px solid var(--ink);
}
.text-link:hover { color: var(--pine); border-color: var(--pine); }

.contact-section { padding-top: 2rem; }
.contact-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: 1.5rem;
  align-items: start;
}
.contact-panel {
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}
.contact-label {
  margin: 0 0 0.75rem;
  color: var(--slate);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.contact-note {
  margin: 1rem 0 0;
  color: var(--slate);
  font-size: 0.9rem;
}
.contact-form {
  display: grid;
  gap: 0.9rem;
  padding: 1.6rem;
  border: 1px solid var(--line);
  border-radius: 22px;
  background: rgba(255, 255, 255, 0.72);
}
.contact-form label {
  display: grid;
  gap: 0.4rem;
  color: var(--ink);
  font-size: 0.92rem;
  font-weight: 700;
}
.contact-form input,
.contact-form textarea {
  width: 100%;
  padding: 0.85rem 0.95rem;
  border: 1px solid var(--line);
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.9);
  color: var(--ink);
  font: inherit;
  font-weight: 400;
}
.contact-form input:focus,
.contact-form textarea:focus {
  outline: 2px solid rgba(46, 107, 92, 0.35);
  border-color: var(--pine);
}
.contact-form textarea { resize: vertical; min-height: 120px; }
.contact-form .button { justify-self: start; margin-top: 0.25rem; }

.download { padding-bottom: 5rem; }
.download-card {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: 2rem;
  align-items: center;
  padding: 3rem;
  border-radius: 28px;
  color: white;
  background:
    radial-gradient(500px 280px at 85% 20%, rgba(219, 107, 71, 0.35), transparent 60%),
    linear-gradient(135deg, #1d3f37, #171c24 70%);
  box-shadow: var(--shadow);
}
.download-card h2 {
  color: white;
  font-size: clamp(2.1rem, 4.5vw, 3.4rem);
}
.download-card p:not(.eyebrow) {
  margin: 0 0 1.4rem;
  color: rgba(255, 255, 255, 0.72);
}
.download-card .eyebrow { color: rgba(255, 255, 255, 0.6); }
.download-aside {
  justify-self: end;
  width: min(100%, 220px);
  aspect-ratio: 9 / 14;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.18);
  background:
    linear-gradient(160deg, rgba(255, 255, 255, 0.12), rgba(46, 107, 92, 0.25)),
    linear-gradient(145deg, #c97b63, #2e6b5c 55%, #171c24);
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.28);
  display: grid;
  align-content: end;
  padding: 1.1rem;
}
.download-aside span {
  font-family: var(--font-display);
  font-size: 1.35rem;
  font-weight: 600;
  letter-spacing: -0.03em;
}

.footer {
  padding: 3.5rem 0 1.5rem;
  color: rgba(255, 255, 255, 0.72);
  background: var(--ink);
}
.footer .brand { color: white; }
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2.5rem;
  padding-bottom: 2.5rem;
}
.footer-grid > div:first-child p {
  margin: 0.75rem 0 0;
  color: rgba(255, 255, 255, 0.5);
  max-width: 28ch;
}
.footer-links { display: flex; flex-direction: column; gap: 0.55rem; }
.footer-links strong {
  margin-bottom: 0.25rem;
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}
.footer-links a {
  color: rgba(255, 255, 255, 0.72);
  text-decoration: none;
  font-size: 0.95rem;
}
.footer-links a:hover { color: white; }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.42);
  font-size: 0.8rem;
}
.footer-bottom a { color: inherit; text-decoration: none; }
.footer-bottom a:hover { color: white; }
.footer.compact { padding-top: 1.25rem; }

/* Policy pages */
.policy-hero {
  padding: 4.5rem 0 3rem;
  border-bottom: 1px solid var(--line);
}
.policy-hero h1 {
  margin: 0 0 1rem;
  max-width: 14ch;
  font-family: var(--font-display);
  font-size: clamp(2.8rem, 7vw, 4.8rem);
  font-weight: 600;
  letter-spacing: -0.04em;
  line-height: 1.02;
}
.policy-hero h1 em {
  font-style: normal;
  color: var(--pine);
}
.policy-hero > p:not(.eyebrow) {
  max-width: 40rem;
  margin: 0;
  color: var(--slate);
  font-size: 1.1rem;
}
.policy-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem 1.5rem;
  margin-top: 1.75rem;
  color: var(--slate);
  font-size: 0.85rem;
  font-weight: 700;
}
.policy-layout {
  display: grid;
  grid-template-columns: 200px minmax(0, 720px);
  justify-content: space-between;
  gap: 3.5rem;
  padding: 3.5rem 0 5rem;
}
.policy-nav {
  position: sticky;
  top: 100px;
  align-self: start;
  display: flex;
  flex-direction: column;
  gap: 0.55rem;
  padding-left: 1rem;
  border-left: 2px solid rgba(46, 107, 92, 0.25);
  font-size: 0.9rem;
}
.policy-nav strong {
  margin-bottom: 0.35rem;
  font-size: 0.72rem;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--slate);
}
.policy-nav a {
  color: var(--slate);
  text-decoration: none;
}
.policy-nav a:hover { color: var(--pine); }
.policy-content section {
  padding-bottom: 2.75rem;
  margin-bottom: 2.75rem;
  border-bottom: 1px solid var(--line);
}
.policy-content section:last-child {
  border-bottom: 0;
  margin-bottom: 0;
  padding-bottom: 0;
}
.policy-index {
  display: block;
  margin-bottom: 0.75rem;
  color: var(--ember);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.12em;
}
.policy-content h2 {
  font-size: clamp(1.7rem, 3.5vw, 2.4rem);
}
.policy-content p,
.policy-content li { color: #586067; }
.policy-content li { margin-bottom: 0.55rem; }
.policy-highlight {
  margin-top: 1.25rem;
  padding: 1.25rem 1.35rem;
  border-left: 4px solid var(--pine);
  border-radius: 0 14px 14px 0;
  background: rgba(46, 107, 92, 0.08);
}
.policy-highlight p { margin: 0.4rem 0 0; }
.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  margin-top: 1rem;
  padding: 1.2rem 3.5rem 1.2rem 1.2rem;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: rgba(255, 255, 255, 0.75);
  text-decoration: none;
  color: inherit;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.contact-card:hover {
  border-color: var(--pine);
  transform: translateY(-2px);
  color: inherit;
}
.contact-card span { color: var(--slate); font-size: 0.8rem; }
.contact-card strong { font-size: 1.1rem; }
.contact-card i {
  position: absolute;
  right: 1.2rem;
  top: 50%;
  transform: translateY(-50%);
  color: var(--pine);
  font-style: normal;
  font-size: 1.25rem;
}

@keyframes rise {
  from { opacity: 0; transform: translateY(18px); }
  to { opacity: 1; transform: translateY(0); }
}

@keyframes float-in {
  from { opacity: 0; transform: translateY(28px) scale(0.98); }
  to { opacity: 1; transform: translateY(0) scale(1); }
}

@media (max-width: 900px) {
  .hero {
    grid-template-columns: 1fr;
    min-height: auto;
    padding-top: 3rem;
  }
  .formats-strip,
  .steps,
  .contact-grid { grid-template-columns: 1fr; }
  .privacy-callout { grid-template-columns: 1fr; }
  .download-card { grid-template-columns: 1fr; }
  .download-aside { justify-self: start; }
  .policy-layout { grid-template-columns: 1fr; }
  .policy-nav { display: none; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > div:first-child { grid-column: 1 / -1; }
}

@media (max-width: 680px) {
  :root { --shell: calc(100% - 1.5rem); }
  .nav { min-height: 64px; }
  .menu-toggle {
    display: grid;
    place-content: center;
    gap: 6px;
    width: 44px;
    height: 44px;
    padding: 0;
    border: 0;
    background: transparent;
    color: var(--ink);
  }
  .menu-toggle span:not(.sr-only) {
    display: block;
    width: 22px;
    height: 2px;
    background: currentColor;
    transition: transform 0.2s ease;
  }
  .menu-toggle[aria-expanded="true"] span:nth-last-child(2) {
    transform: translateY(4px) rotate(45deg);
  }
  .menu-toggle[aria-expanded="true"] span:last-child {
    transform: translateY(-4px) rotate(-45deg);
  }
  .nav-links {
    position: fixed;
    inset: 64px 0 auto;
    display: grid;
    gap: 0;
    padding: 0.5rem 1.1rem 1.2rem;
    border-bottom: 1px solid var(--line);
    background: rgba(240, 242, 237, 0.98);
    transform: translateY(-130%);
    transition: transform 0.25s ease;
  }
  .nav-links.open { transform: translateY(0); }
  .nav-links a {
    padding: 0.85rem 0.4rem;
    border-bottom: 1px solid rgba(23, 28, 36, 0.06);
  }
  .hero-actions .button { width: 100%; }
  .download-card { padding: 1.75rem; }
  .footer-bottom { flex-direction: column; }
}

@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;
  }
}
