/* =====================================================================
   Studio Myo — Variant 05 "Studio Brand"
   Studio-first identity site. The studio is the hero; the game is proof.
   Light, warm, editorial — rooted in studiomyo.com. Uses window.MyoData.
   ===================================================================== */

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper: #ffffff;
  --paper-soft: #faf8f4;
  --paper-warm: #f5f1e9;
  --ink: #1b1b20;
  --ink-soft: #5c5c66;
  --ink-faint: #8b8b94;
  --line: #ececec;
  --line-soft: #f1efe9;

  --brand: #e0a32e;
  --brand-deep: #c4801a;
  --brand-tint: #fbf3e1;

  --radius: 24px;
  --radius-sm: 16px;
  --shadow: 0 14px 38px rgba(24, 24, 34, .08);
  --shadow-lg: 0 28px 66px rgba(24, 24, 34, .13);
  --shadow-soft: 0 6px 18px rgba(24, 24, 34, .05);

  --maxw: 1140px;
  --gutter: clamp(20px, 5vw, 56px);
  --header-h: 70px;
  --ease: cubic-bezier(.22, .61, .36, 1);

  --font-display: 'Plus Jakarta Sans', 'Pretendard', sans-serif;
  --font: 'Pretendard', system-ui, -apple-system, 'Segoe UI', sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--header-h) + 14px); }
body {
  font-family: var(--font); color: var(--ink); background: var(--paper);
  line-height: 1.7; -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility;
  overflow-x: hidden;
}
img { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; cursor: pointer; border: none; background: none; color: inherit; }

.skip-link {
  position: fixed; top: 10px; left: 50%; transform: translateX(-50%) translateY(-160%);
  z-index: 200; background: var(--ink); color: #fff; padding: 10px 18px; border-radius: 999px;
  font-size: 14px; transition: transform .2s var(--ease);
}
.skip-link:focus { transform: translateX(-50%) translateY(0); }

/* ============================ HEADER ============================ */
.site-header {
  position: sticky; top: 0; z-index: 100; height: var(--header-h);
  background: rgba(255, 255, 255, .8);
  backdrop-filter: saturate(180%) blur(16px); -webkit-backdrop-filter: saturate(180%) blur(16px);
  border-bottom: 1px solid var(--line-soft);
}
.header-inner {
  max-width: var(--maxw); height: 100%; margin: 0 auto; padding: 0 var(--gutter);
  display: flex; align-items: center; justify-content: space-between; gap: 20px;
}
.brand { display: flex; align-items: center; gap: 11px; font-family: var(--font-display); }
.brand-logo {
  display: grid; place-items: center; width: 36px; height: 36px;
  background: var(--ink); color: #fff; border-radius: 11px; font-weight: 800; font-size: 18px;
}
.brand-text { font-weight: 600; font-size: 17px; }
.brand-text b { font-weight: 800; }
.site-nav { display: flex; gap: 4px; }
.nav-link {
  padding: 8px 13px; border-radius: 999px; font-size: 15px; font-weight: 600; color: var(--ink-soft);
  transition: color .2s var(--ease), background .2s var(--ease);
}
.nav-link:hover { color: var(--ink); background: var(--paper-warm); }
.header-right { display: flex; align-items: center; gap: 12px; }
.lang-switch { display: flex; align-items: center; gap: 4px; background: var(--paper-warm); border-radius: 999px; padding: 4px; }
.lang-btn {
  padding: 5px 11px; border-radius: 999px; font-size: 13px; font-weight: 700; color: var(--ink-faint);
  letter-spacing: .04em; transition: all .2s var(--ease);
}
.lang-btn.is-active { background: var(--paper); color: var(--ink); box-shadow: var(--shadow-soft); }
.nav-toggle { display: none; flex-direction: column; gap: 5px; padding: 8px; }
.nav-toggle span { width: 22px; height: 2px; background: var(--ink); border-radius: 2px; transition: transform .25s var(--ease), opacity .2s var(--ease); }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* shared */
.eyebrow {
  display: inline-flex; align-items: center; gap: 9px; font-family: var(--font-display);
  font-size: 12.5px; font-weight: 700; letter-spacing: .15em; text-transform: uppercase; color: var(--ink-faint);
}
.eyebrow.center { justify-content: center; }
.eyebrow-dot { width: 7px; height: 7px; border-radius: 50%; background: var(--brand); }
.btn {
  display: inline-flex; align-items: center; gap: 8px; padding: 14px 26px; border-radius: 999px;
  font-weight: 700; font-size: 15px; transition: transform .2s var(--ease), box-shadow .2s var(--ease), border-color .2s var(--ease);
}
.btn-primary { background: var(--ink); color: #fff; box-shadow: var(--shadow); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: var(--shadow-lg); }
.btn-ghost { background: var(--paper); color: var(--ink); border: 1px solid var(--line); }
.btn-ghost:hover { transform: translateY(-3px); border-color: var(--ink); }

/* ============================ HERO ============================ */
.hero { position: relative; padding: clamp(70px, 12vw, 140px) var(--gutter) clamp(50px, 8vw, 90px); overflow: hidden; }
.hero-wash {
  position: absolute; inset: 0; z-index: -1;
  background:
    radial-gradient(56% 60% at 50% -2%, rgba(224, 163, 46, .14), transparent 70%),
    radial-gradient(42% 50% at 88% 16%, rgba(176, 107, 214, .08), transparent 70%);
}
.hero-inner { max-width: var(--maxw); margin: 0 auto; text-align: center; }
.hero-title {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.03em; line-height: 1.02;
  font-size: clamp(40px, 8vw, 92px); margin: 22px 0 0;
  display: flex; flex-direction: column; align-items: center; gap: .04em;
}
.hero-line { display: block; }
.hero-accent { color: var(--brand-deep); }
.hero-tagline { margin: 24px auto 0; max-width: 560px; font-size: clamp(17px, 2.2vw, 22px); color: var(--ink-soft); font-weight: 500; }
.hero-actions { margin-top: 32px; display: flex; gap: 12px; justify-content: center; flex-wrap: wrap; }
.hero-proof {
  list-style: none; margin: clamp(44px, 6vw, 68px) auto 0; max-width: 760px;
  display: grid; grid-template-columns: repeat(4, 1fr); gap: 18px;
}
.hero-proof li {
  display: flex; flex-direction: column; align-items: center; gap: 4px;
  padding: 22px 12px; background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  box-shadow: var(--shadow-soft);
}
.hero-proof strong { font-family: var(--font-display); font-weight: 800; font-size: clamp(26px, 4vw, 38px); letter-spacing: -.02em; }
.hero-proof span { font-size: 12.5px; color: var(--ink-faint); font-weight: 600; letter-spacing: .02em; text-align: center; }

/* ============================ SECTIONS ============================ */
.section { padding: clamp(70px, 11vw, 128px) var(--gutter); }
.section-soft { background: var(--paper-soft); }
.section-inner { max-width: var(--maxw); margin: 0 auto; }
.section-head { max-width: 680px; margin: 0 auto clamp(40px, 6vw, 62px); text-align: center; }
.section-title { font-family: var(--font-display); font-weight: 800; letter-spacing: -.02em; font-size: clamp(27px, 4.4vw, 44px); line-height: 1.14; }
.section-sub { margin-top: 14px; color: var(--ink-soft); font-size: clamp(15px, 1.8vw, 18px); }

/* ABOUT */
.about-grid { display: grid; grid-template-columns: 1.25fr .75fr; gap: clamp(32px, 5vw, 72px); align-items: center; }
.about-copy .eyebrow { margin-bottom: 14px; }
.about-copy .section-title { text-align: left; }
.about-body { margin-top: 22px; color: var(--ink-soft); font-size: clamp(15px, 1.8vw, 18px); }
.about-quote {
  margin-top: 26px; padding-left: 20px; border-left: 3px solid var(--brand);
  font-family: var(--font-display); font-weight: 700; font-size: clamp(18px, 2.4vw, 24px); color: var(--ink); letter-spacing: -.01em;
}
.about-mark {
  display: grid; place-items: center; gap: 18px; aspect-ratio: 1 / 1; padding: clamp(26px, 5vw, 52px);
  background: radial-gradient(70% 70% at 50% 40%, var(--brand-tint), var(--paper-soft));
  border-radius: var(--radius); border: 1px solid var(--line); box-shadow: var(--shadow);
}
.mark-ci { width: min(84%, 320px); height: auto; object-fit: contain; }
.mark-glyph { font-family: var(--font-display); font-weight: 800; font-size: clamp(90px, 18vw, 160px); color: var(--ink); line-height: 1; }
.mark-en { font-family: var(--font-display); font-weight: 700; font-size: 14px; letter-spacing: .02em; color: var(--brand-deep); }

/* VALUES */
.value-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(16px, 2vw, 24px); }
.value-card {
  position: relative; padding: clamp(28px, 3vw, 38px) clamp(24px, 2.6vw, 32px);
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); overflow: hidden;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.value-card::before { content: ""; position: absolute; left: 0; top: 0; bottom: 0; width: 4px; background: var(--bar, var(--brand)); }
.value-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); }
.value-card.v1 { --bar: #d2452f; } .value-card.v2 { --bar: #2f8fd0; } .value-card.v3 { --bar: #c98a16; }
.value-num { font-family: var(--font-display); font-weight: 800; font-size: 13px; letter-spacing: .2em; color: var(--ink-faint); }
.value-card h3 { font-family: var(--font-display); font-weight: 800; font-size: clamp(20px, 2.4vw, 26px); margin: 16px 0 10px; letter-spacing: -.01em; }
.value-card p { color: var(--ink-soft); font-size: 15px; }

/* GAMES */
.game-feature {
  display: grid; grid-template-columns: 1.1fr .9fr; gap: clamp(28px, 4vw, 56px); align-items: center;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius); padding: clamp(24px, 3.5vw, 44px); box-shadow: var(--shadow);
}
.game-visual { position: relative; border-radius: var(--radius-sm); overflow: hidden; box-shadow: var(--shadow); aspect-ratio: 16 / 11; background: var(--paper-warm); }
.game-keyvisual { width: 100%; height: 100%; object-fit: cover; }
/* Localized scrim so the white title stays legible over bright parts of the key visual. */
.game-visual::after {
  content: ""; position: absolute; inset: 0; z-index: 1; pointer-events: none;
  background: radial-gradient(ellipse 62% 52% at 50% 46%, rgba(22, 17, 11, .62) 0%, rgba(22, 17, 11, .36) 34%, rgba(22, 17, 11, 0) 72%);
}
.game-title-overlay {
  position: absolute; z-index: 2; left: 50%; top: 46%; transform: translate(-50%, -50%);
  width: min(68%, 360px); max-height: 40%; object-fit: contain;
  filter: drop-shadow(0 6px 16px rgba(0, 0, 0, .45));
}
.game-mascot {
  position: absolute; z-index: 3; right: clamp(8px, 4%, 22px); bottom: -4px; height: clamp(78px, 13vw, 118px); width: auto;
  filter: drop-shadow(0 12px 18px rgba(224, 163, 46, .3));
}
.game-logo { width: min(72%, 300px); height: auto; margin-bottom: 18px; }
.game-name {
  font-family: var(--font-display); font-weight: 800; letter-spacing: -.01em; line-height: 1.05;
  font-size: clamp(26px, 3.6vw, 38px); color: var(--ink); margin-bottom: 16px;
}
.game-name-mark { color: var(--brand-deep); }
.release-badge {
  display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border-radius: 999px;
  background: var(--brand-tint); color: var(--brand-deep); font-size: 12.5px; font-weight: 800; letter-spacing: .06em;
}
.release-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); box-shadow: 0 0 0 4px rgba(224, 163, 46, .2); }
.game-desc { margin: 16px 0 24px; color: var(--ink-soft); font-size: 15.5px; }
.game-actions { display: flex; gap: 12px; flex-wrap: wrap; }

/* JOURNEY */
.timeline { list-style: none; max-width: 760px; margin: 0 auto; position: relative; }
.timeline::before { content: ""; position: absolute; left: 13px; top: 8px; bottom: 8px; width: 2px; background: linear-gradient(var(--brand), var(--line)); border-radius: 2px; }
.tl-item { position: relative; padding: 0 0 36px 50px; }
.tl-item:last-child { padding-bottom: 0; }
.tl-item::before { content: ""; position: absolute; left: 6px; top: 4px; width: 16px; height: 16px; border-radius: 50%; background: var(--paper); border: 3px solid var(--brand); box-shadow: 0 0 0 4px var(--paper); }
.tl-year { font-family: var(--font-display); font-weight: 800; font-size: 22px; margin-bottom: 12px; }
.tl-list { list-style: none; display: flex; flex-direction: column; gap: 9px; }
.tl-list li { position: relative; padding-left: 18px; color: var(--ink-soft); font-size: 15.5px; }
.tl-list li::before { content: "—"; position: absolute; left: 0; color: var(--brand); }
.journey-note {
  max-width: 680px; margin: clamp(34px, 5vw, 48px) auto 0; text-align: center; padding: 22px 26px;
  background: var(--brand-tint); border-radius: var(--radius-sm); color: var(--brand-deep); font-size: 14.5px; font-weight: 600; line-height: 1.7;
}

/* CONTACT */
.contact-inner { text-align: center; max-width: 720px; margin: 0 auto; }
.contact-email {
  display: inline-block; margin-top: 26px; font-family: var(--font-display); font-weight: 800;
  font-size: clamp(20px, 3.4vw, 34px); color: var(--ink); letter-spacing: -.01em;
  border-bottom: 3px solid var(--brand-tint); padding-bottom: 4px; transition: border-color .2s var(--ease);
}
.contact-email:hover { border-color: var(--brand); }
.contact-addresses { margin-top: 30px; display: grid; gap: 12px; }
.contact-addresses .addr {
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 16px 20px; font-size: 13.5px; color: var(--ink-soft); line-height: 1.6;
}

/* TEAM */
.team-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: clamp(14px, 1.8vw, 22px); }
.team-card {
  display: flex; flex-direction: column; align-items: center; text-align: center; gap: 12px;
  padding: clamp(26px, 3vw, 34px) 20px;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius);
  box-shadow: var(--shadow-soft); transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.team-card:hover { transform: translateY(-5px); box-shadow: var(--shadow-lg); }
.team-avatar {
  display: grid; place-items: center; width: 64px; height: 64px; border-radius: 20px;
  font-family: var(--font-display); font-weight: 800; font-size: 26px; color: #fff;
  background: var(--g, var(--brand)); box-shadow: 0 8px 18px rgba(0, 0, 0, .10);
}
.team-name { font-family: var(--font-display); font-weight: 700; font-size: 18px; letter-spacing: -.01em; }
.team-role {
  font-size: 12.5px; font-weight: 700; letter-spacing: .02em; padding: 4px 12px; border-radius: 999px;
  color: var(--g-ink, var(--brand-deep)); background: var(--g-tint, var(--brand-tint));
}
.team-card.g-art  { --g: #d98a1f; --g-ink: #9a5e0f; --g-tint: #fbf0db; }
.team-card.g-eng  { --g: #3f8fce; --g-ink: #27608d; --g-tint: #e7f1fa; }
.team-card.g-anim { --g: #9d6bd0; --g-ink: #6b3f9c; --g-tint: #f1e9fa; }

/* ACTIVITIES */
.activity-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: clamp(12px, 1.6vw, 18px); }
.activity-item {
  position: relative; grid-column: span 2; margin: 0; overflow: hidden; border-radius: var(--radius-sm);
  background: var(--paper-warm); box-shadow: var(--shadow-soft); aspect-ratio: 4 / 3;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease);
}
.activity-item.feature { grid-column: span 3; aspect-ratio: 16 / 10; }
.activity-item:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.activity-item img { width: 100%; height: 100%; object-fit: cover; object-position: center; transition: transform .45s var(--ease); }
.activity-item:hover img { transform: scale(1.045); }
.activity-item figcaption {
  position: absolute; inset: auto 0 0 0; padding: 32px 16px 13px;
  display: flex; align-items: center; gap: 8px; flex-wrap: wrap;
  font-size: 13px; font-weight: 600; color: #fff; line-height: 1.35;
  background: linear-gradient(to top, rgba(15, 12, 9, .84), rgba(15, 12, 9, .12) 70%, rgba(15, 12, 9, 0));
}
.activity-year {
  font-family: var(--font-display); font-weight: 800; font-size: 11px; letter-spacing: .04em;
  padding: 2px 8px; border-radius: 999px; background: rgba(255, 255, 255, .22); color: #fff;
}

/* NOTICES */
.notices-list { margin-top: clamp(28px, 4vw, 44px); display: grid; gap: 14px; }
.notice-card {
  display: flex; flex-direction: column; gap: 8px; width: 100%; text-align: left; cursor: pointer;
  background: var(--paper); border: 1px solid var(--line); border-radius: var(--radius-sm);
  padding: 20px 22px; font: inherit; color: var(--ink);
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), border-color .25s var(--ease);
}
.notice-card:hover { transform: translateY(-3px); box-shadow: var(--shadow); border-color: var(--brand); }
.notice-meta { display: flex; align-items: center; gap: 9px; flex-wrap: wrap; font-size: 12.5px; color: var(--ink-faint); }
.notice-cat {
  font-weight: 700; letter-spacing: .02em; padding: 2px 9px; border-radius: 999px;
  background: var(--brand-tint); color: var(--brand-deep);
}
.notice-pin {
  font-weight: 700; padding: 2px 9px; border-radius: 999px;
  background: var(--ink); color: #fff; letter-spacing: .02em;
}
.notice-date { margin-left: auto; font-weight: 600; }
.notice-title { font-family: var(--font-display); font-weight: 700; font-size: clamp(16px, 1.9vw, 19px); color: var(--ink); letter-spacing: -.01em; }
.notice-summary { color: var(--ink-soft); font-size: 14.5px; line-height: 1.6; }

/* NOTICE MODAL */
.notice-modal { position: fixed; inset: 0; z-index: 300; display: none; }
.notice-modal.is-open { display: block; }
.notice-modal-backdrop { position: absolute; inset: 0; background: rgba(20, 18, 14, .5); backdrop-filter: blur(2px); }
.notice-modal-panel {
  position: relative; max-width: 720px; width: calc(100% - 40px); max-height: 86vh; overflow-y: auto;
  margin: clamp(40px, 8vh, 90px) auto; background: var(--paper); border-radius: var(--radius);
  box-shadow: var(--shadow-lg); padding: clamp(28px, 4vw, 44px);
}
.notice-modal-close {
  position: absolute; top: 16px; right: 18px; width: 36px; height: 36px; border: 0; cursor: pointer;
  background: var(--paper-soft); border-radius: 999px; font-size: 22px; line-height: 1; color: var(--ink-soft);
}
.notice-modal-close:hover { background: var(--paper-warm); color: var(--ink); }
.notice-modal-meta { font-size: 13px; color: var(--ink-faint); font-weight: 600; }
.notice-modal-title { font-family: var(--font-display); font-weight: 800; font-size: clamp(21px, 3vw, 28px); color: var(--ink); margin: 8px 0 20px; letter-spacing: -.01em; }
.notice-modal-body { color: var(--ink-soft); font-size: 15.5px; line-height: 1.75; }
.notice-modal-body h2, .notice-modal-body h3, .notice-modal-body h4 { font-family: var(--font-display); color: var(--ink); margin: 22px 0 10px; line-height: 1.35; }
.notice-modal-body p { margin: 0 0 14px; }
.notice-modal-body a { color: var(--brand-deep); text-decoration: underline; }
.notice-modal-body ul, .notice-modal-body ol { margin: 0 0 14px 20px; }
.notice-modal-body img { max-width: 100%; height: auto; border-radius: var(--radius-sm); margin: 10px 0; }
.notice-modal-body blockquote { margin: 14px 0; padding: 12px 18px; background: var(--brand-tint); border-radius: var(--radius-sm); color: var(--brand-deep); }
.notice-modal-body table { border-collapse: collapse; width: 100%; margin: 14px 0; }
.notice-modal-body th, .notice-modal-body td { border: 1px solid var(--line); padding: 8px 12px; }

/* FOOTER */
.site-footer { background: var(--paper); border-top: 1px solid var(--line); padding: clamp(46px, 7vw, 72px) var(--gutter) 38px; }
.footer-inner { max-width: var(--maxw); margin: 0 auto; }
.footer-top { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; padding-bottom: 28px; border-bottom: 1px solid var(--line); }
.footer-brand { display: flex; align-items: center; gap: 16px; }
.footer-ci { width: clamp(120px, 22vw, 164px); height: auto; }
.footer-name { font-family: var(--font-display); font-weight: 800; font-size: 19px; }
.footer-slogan { color: var(--ink-soft); font-size: 14.5px; margin-top: 2px; }
.footer-site { font-family: var(--font-display); font-weight: 700; font-size: 14px; color: var(--brand-deep); }
.footer-site:hover { color: var(--ink); }
.footer-bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; margin-top: 22px; font-size: 13px; color: var(--ink-faint); }
.footer-bottom a { font-weight: 600; color: var(--brand-deep); }
.footer-bottom a:hover { color: var(--ink); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(22px); }
.reveal.is-in { opacity: 1; transform: none; transition: opacity .7s var(--ease), transform .7s var(--ease); }

/* RESPONSIVE */
@media (max-width: 900px) {
  .about-grid { grid-template-columns: 1fr; }
  .about-copy .section-title { text-align: left; }
  .about-mark { max-width: 360px; margin: 0 auto; order: -1; }
  .value-grid { grid-template-columns: 1fr; }
  .game-feature { grid-template-columns: 1fr; }
  .hero-proof { grid-template-columns: repeat(2, 1fr); }
  .team-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-grid { grid-template-columns: repeat(2, 1fr); }
  .activity-item { grid-column: span 1; }
  .activity-item.feature { grid-column: span 2; aspect-ratio: 16 / 9; }
}
@media (max-width: 560px) {
  .team-grid { grid-template-columns: 1fr; }
  .activity-grid { grid-template-columns: 1fr; gap: 14px; }
  .activity-item, .activity-item.feature { grid-column: span 1; aspect-ratio: 4 / 3; }
}
@media (max-width: 720px) {
  .site-nav {
    position: absolute; top: calc(100% + 1px); left: 0; right: 0; flex-direction: column; gap: 0;
    background: var(--paper); border-bottom: 1px solid var(--line); box-shadow: var(--shadow);
    padding: 8px var(--gutter) 16px; display: none;
  }
  .site-nav.is-open { display: flex; }
  .nav-link { padding: 12px 8px; border-radius: 10px; }
  .nav-toggle { display: flex; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .001ms !important; transition-duration: .001ms !important; }
  .reveal { opacity: 1 !important; transform: none !important; }
}
