@font-face {
  font-family: "Nanum Square Round";
  src: url("/assets/NanumSquareRoundB.ttf") format("truetype");
  font-display: swap;
  font-weight: 700;
}

:root {
  --paper: #fbf7f0;
  --paper-deep: #f2e4d5;
  --surface: #fffdf9;
  --ink: #38291f;
  --ink-soft: #756456;
  --brown: #8a674f;
  --brown-deep: #5c3c2b;
  --copper: #b56431;
  --coral: #ef8f76;
  --sky: #86b9df;
  --sage: #92a88b;
  --line: rgba(99, 70, 49, 0.18);
  --shadow: 0 32px 80px rgba(71, 45, 27, 0.14);
  --content: 1180px;
}

* {
  box-sizing: border-box;
}

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

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: "Apple SD Gothic Neo", "Noto Sans KR", "Malgun Gothic", sans-serif;
  line-height: 1.65;
  word-break: keep-all;
  -webkit-font-smoothing: antialiased;
}

body::before {
  position: fixed;
  inset: 0;
  z-index: -2;
  content: "";
  pointer-events: none;
  background:
    radial-gradient(circle at 8% 14%, rgba(255, 255, 255, 0.9) 0 10%, transparent 30%),
    radial-gradient(circle at 92% 8%, rgba(239, 143, 118, 0.13), transparent 26%),
    linear-gradient(135deg, #fbf7f0 0%, #f8efe4 48%, #f5e5d2 100%);
}

a {
  color: inherit;
}

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

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

.skip-link {
  position: fixed;
  top: 8px;
  left: 8px;
  z-index: 200;
  padding: 10px 16px;
  color: #fff;
  background: var(--brown-deep);
  border-radius: 8px;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid transparent;
  background: rgba(251, 247, 240, 0.82);
  backdrop-filter: blur(20px);
}

.header-inner {
  width: min(calc(100% - 40px), var(--content));
  height: 78px;
  margin: 0 auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  font-family: "Nanum Square Round", sans-serif;
  font-size: 21px;
  letter-spacing: -0.04em;
}

.brand img {
  width: 42px;
  height: 42px;
  border: 1px solid rgba(91, 60, 43, 0.12);
  border-radius: 13px;
  box-shadow: 0 8px 18px rgba(69, 43, 27, 0.1);
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 34px;
}

.desktop-nav a {
  color: var(--ink-soft);
  font-size: 14px;
  font-weight: 700;
  text-decoration: none;
}

.desktop-nav a:hover,
.desktop-nav a[aria-current="page"] {
  color: var(--brown-deep);
}

.desktop-nav a.nav-download,
.desktop-nav a.nav-download[aria-current="page"] {
  padding: 10px 17px;
  color: #fff;
  background: var(--brown-deep);
  border-radius: 999px;
}

.menu-button {
  display: none;
  width: 44px;
  height: 44px;
  padding: 10px;
  border: 0;
  background: transparent;
}

.menu-button span {
  display: block;
  height: 2px;
  margin: 6px 0;
  background: var(--ink);
  border-radius: 999px;
}

.mobile-nav {
  padding: 8px 20px 22px;
  border-bottom: 1px solid var(--line);
  background: var(--paper);
}

.mobile-nav a {
  display: block;
  padding: 13px 4px;
  font-weight: 700;
  text-decoration: none;
}

.container {
  width: min(calc(100% - 40px), var(--content));
  margin: 0 auto;
}

.eyebrow {
  margin: 0 0 18px;
  color: var(--copper);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.17em;
  text-transform: uppercase;
}

.button {
  min-height: 52px;
  padding: 13px 22px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  border: 1px solid transparent;
  border-radius: 999px;
  font-size: 15px;
  font-weight: 800;
  text-decoration: none;
  transition: transform 180ms ease, background-color 180ms ease, box-shadow 180ms ease;
}

.button:hover {
  transform: translateY(-2px);
}

.button-primary {
  color: #fff;
  background: var(--brown-deep);
  box-shadow: 0 12px 30px rgba(86, 55, 38, 0.2);
}

.button-secondary {
  color: var(--ink);
  border-color: var(--line);
  background: rgba(255, 255, 255, 0.48);
}

.hero {
  min-height: calc(100svh - 78px);
  padding: 70px 0 90px;
  position: relative;
  overflow: hidden;
}

.hero::before,
.hero::after {
  position: absolute;
  content: "";
  border-radius: 50%;
  pointer-events: none;
}

.hero::before {
  width: 440px;
  height: 440px;
  top: -170px;
  right: -150px;
  border: 1px solid rgba(181, 100, 49, 0.13);
}

.hero::after {
  width: 210px;
  height: 210px;
  bottom: 50px;
  left: -100px;
  background: rgba(134, 185, 223, 0.12);
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.94fr) minmax(420px, 0.76fr);
  gap: 78px;
  align-items: center;
}

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

.hero h1 {
  max-width: 680px;
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: clamp(54px, 6.4vw, 94px);
  line-height: 1.04;
  letter-spacing: -0.065em;
}

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

.hero-description {
  max-width: 520px;
  margin: 30px 0 0;
  color: var(--ink-soft);
  font-size: clamp(17px, 1.6vw, 21px);
  line-height: 1.75;
}

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

.privacy-note {
  margin-top: 28px;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  color: var(--ink-soft);
  font-size: 13px;
  font-weight: 700;
}

.privacy-note::before {
  width: 8px;
  height: 8px;
  content: "";
  background: var(--sage);
  border-radius: 50%;
  box-shadow: 0 0 0 5px rgba(146, 168, 139, 0.16);
}

.hero-visual {
  min-height: 650px;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.phone {
  position: relative;
  width: min(100%, 340px);
  padding: 9px;
  overflow: hidden;
  border: 4px solid #2f251f;
  background: #2f251f;
  border-radius: 46px;
  box-shadow: var(--shadow);
}

.phone::before {
  position: absolute;
  z-index: 3;
  top: 17px;
  left: 50%;
  width: 88px;
  height: 24px;
  content: "";
  background: #201915;
  border-radius: 999px;
  transform: translateX(-50%);
}

.phone img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 34px;
}

.hero-phone {
  transform: rotate(2.2deg);
  animation: phone-enter 850ms cubic-bezier(.2,.8,.2,1) both;
}

.floating-note {
  position: absolute;
  z-index: 5;
  padding: 14px 18px;
  color: var(--ink);
  background: rgba(255, 253, 249, 0.94);
  border: 1px solid rgba(102, 71, 51, 0.1);
  border-radius: 18px;
  box-shadow: 0 15px 35px rgba(72, 47, 31, 0.13);
  font-size: 13px;
  font-weight: 800;
  backdrop-filter: blur(14px);
  animation: note-enter 850ms 180ms cubic-bezier(.2,.8,.2,1) both;
}

.note-one {
  top: 15%;
  left: -2%;
}

.note-two {
  right: -2%;
  bottom: 18%;
}

.note-one::before,
.note-two::before {
  margin-right: 8px;
  color: var(--coral);
  content: "✦";
}

@keyframes phone-enter {
  from { opacity: 0; transform: translateY(40px) rotate(5deg); }
  to { opacity: 1; transform: translateY(0) rotate(2.2deg); }
}

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

.story-intro {
  padding: 120px 0 40px;
  border-top: 1px solid var(--line);
}

.story-intro-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 80px;
  align-items: start;
}

.section-title {
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: clamp(38px, 4.5vw, 64px);
  line-height: 1.16;
  letter-spacing: -0.055em;
}

.section-title strong {
  color: var(--copper);
}

.section-lead {
  max-width: 560px;
  margin: 18px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.steps {
  border-top: 1px solid var(--line);
}

.step {
  padding: 24px 0;
  display: grid;
  grid-template-columns: 56px 150px 1fr;
  gap: 18px;
  border-bottom: 1px solid var(--line);
  align-items: baseline;
}

.step-number {
  color: var(--coral);
  font-size: 12px;
  font-weight: 900;
  letter-spacing: 0.12em;
}

.step h3 {
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: 20px;
}

.step p {
  margin: 0;
  color: var(--ink-soft);
}

.feature-section {
  padding: 130px 0;
}

.feature-section.alt {
  background: rgba(255, 253, 249, 0.65);
  border-top: 1px solid rgba(104, 75, 55, 0.09);
  border-bottom: 1px solid rgba(104, 75, 55, 0.09);
}

.feature-grid {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 100px;
  align-items: center;
}

.feature-grid.reverse {
  grid-template-columns: 1.14fr 0.86fr;
}

.feature-grid.reverse .feature-copy {
  order: 2;
}

.feature-grid.reverse .feature-visual {
  order: 1;
}

.feature-copy h2 {
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: clamp(38px, 4vw, 60px);
  line-height: 1.15;
  letter-spacing: -0.055em;
}

.feature-copy > p:not(.eyebrow) {
  margin: 25px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.feature-list {
  margin: 32px 0 0;
  padding: 0;
  list-style: none;
  border-top: 1px solid var(--line);
}

.feature-list li {
  padding: 15px 2px;
  display: flex;
  gap: 12px;
  border-bottom: 1px solid var(--line);
  font-weight: 700;
}

.feature-list li::before {
  color: var(--coral);
  content: "✦";
}

.feature-visual {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
}

.feature-visual::before {
  position: absolute;
  width: min(90%, 500px);
  aspect-ratio: 1;
  content: "";
  background: var(--paper-deep);
  border-radius: 50%;
}

.feature-visual .phone {
  width: 300px;
  transform: rotate(-1.5deg);
}

.feature-visual .phone.phone-small {
  width: 285px;
  transform: rotate(1.5deg);
}

.template-stage {
  padding: 130px 0;
  overflow: hidden;
  color: #fff8ef;
  background: var(--brown-deep);
}

.template-stage .eyebrow {
  color: #efb58c;
}

.template-grid {
  display: grid;
  grid-template-columns: 0.8fr 1.2fr;
  gap: 90px;
  align-items: center;
}

.template-grid h2 {
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: clamp(40px, 4.5vw, 68px);
  line-height: 1.12;
  letter-spacing: -0.055em;
}

.template-grid p:not(.eyebrow) {
  color: rgba(255, 248, 239, 0.72);
  font-size: 18px;
}

.template-tags {
  margin-top: 28px;
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
}

.template-tags span {
  padding: 8px 13px;
  border: 1px solid rgba(255, 248, 239, 0.2);
  border-radius: 999px;
  color: rgba(255, 248, 239, 0.88);
  font-size: 13px;
}

.template-phone-wrap {
  min-height: 600px;
  position: relative;
  display: grid;
  place-items: center;
}

.template-phone-wrap::before,
.template-phone-wrap::after {
  position: absolute;
  content: "";
  border: 1px solid rgba(255, 248, 239, 0.16);
  border-radius: 40px;
}

.template-phone-wrap::before {
  width: 310px;
  height: 500px;
  transform: translate(-150px, 35px) rotate(-11deg);
}

.template-phone-wrap::after {
  width: 300px;
  height: 480px;
  transform: translate(150px, -20px) rotate(11deg);
}

.template-phone-wrap .phone {
  z-index: 2;
  width: 300px;
  transform: rotate(1.5deg);
}

.privacy-banner {
  padding: 135px 0;
  position: relative;
  overflow: hidden;
}

.privacy-banner::after {
  position: absolute;
  right: -100px;
  bottom: -180px;
  width: 460px;
  height: 460px;
  content: "";
  border: 80px solid rgba(134, 185, 223, 0.15);
  border-radius: 50%;
}

.privacy-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 100px;
  align-items: center;
}

.privacy-grid h2 {
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: clamp(42px, 5.2vw, 76px);
  line-height: 1.1;
  letter-spacing: -0.06em;
}

.privacy-grid h2 strong {
  color: var(--copper);
}

.privacy-grid p {
  color: var(--ink-soft);
  font-size: 18px;
}

.privacy-points {
  padding: 18px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.privacy-point {
  padding: 12px 0;
  display: grid;
  grid-template-columns: 48px 1fr;
  gap: 14px;
  align-items: center;
}

.privacy-point span {
  width: 42px;
  height: 42px;
  display: grid;
  place-items: center;
  color: var(--brown-deep);
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 50%;
  font-weight: 900;
}

.privacy-point strong {
  display: block;
}

.privacy-point small {
  color: var(--ink-soft);
}

.closing {
  padding: 120px 0;
  text-align: center;
  border-top: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.3);
}

.closing-icon {
  width: 86px;
  height: 86px;
  margin: 0 auto 25px;
  border-radius: 24px;
  box-shadow: 0 16px 35px rgba(70, 46, 30, 0.13);
}

.closing h2 {
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: clamp(40px, 5vw, 68px);
  line-height: 1.14;
  letter-spacing: -0.055em;
}

.closing p {
  margin: 20px auto 30px;
  color: var(--ink-soft);
  font-size: 18px;
}

.site-footer {
  padding: 44px 0;
  color: rgba(255, 248, 239, 0.72);
  background: #30241d;
}

.footer-inner {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 30px;
  align-items: end;
}

.footer-brand {
  color: #fff8ef;
  font-family: "Nanum Square Round", sans-serif;
  font-size: 20px;
}

.footer-copy {
  margin: 9px 0 0;
  font-size: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 20px;
}

.footer-links a {
  font-size: 13px;
  text-decoration: none;
}

/* Content pages */
.page-hero {
  padding: 90px 0 70px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 {
  max-width: 760px;
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: clamp(46px, 6vw, 76px);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.page-hero p:not(.eyebrow) {
  max-width: 680px;
  margin: 20px 0 0;
  color: var(--ink-soft);
  font-size: 18px;
}

.document-layout {
  padding: 74px 0 120px;
  display: grid;
  grid-template-columns: 230px minmax(0, 760px);
  gap: 72px;
  align-items: start;
}

.document-nav {
  position: sticky;
  top: 110px;
}

.document-nav p {
  margin: 0 0 13px;
  color: var(--ink-soft);
  font-size: 12px;
  font-weight: 800;
  letter-spacing: 0.1em;
}

.document-nav a {
  display: block;
  padding: 7px 0;
  color: var(--ink-soft);
  font-size: 13px;
  text-decoration: none;
}

.document-nav a:hover {
  color: var(--copper);
}

.document {
  min-width: 0;
}

.document .lead-box {
  margin: 0 0 50px;
  padding: 25px 28px;
  color: var(--brown-deep);
  background: var(--paper-deep);
  border-left: 4px solid var(--coral);
  border-radius: 0 18px 18px 0;
  font-weight: 700;
}

.document section {
  padding: 42px 0;
  border-bottom: 1px solid var(--line);
}

.document section:first-of-type {
  padding-top: 0;
}

.document h2 {
  margin: 0 0 18px;
  font-family: "Nanum Square Round", sans-serif;
  font-size: 27px;
  letter-spacing: -0.04em;
}

.document h3 {
  margin: 28px 0 10px;
  font-size: 18px;
}

.document p,
.document li {
  color: #5f5146;
}

.document ul {
  padding-left: 22px;
}

.document strong {
  color: var(--ink);
}

.document a {
  color: var(--copper);
  font-weight: 700;
}

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

.faq-list details {
  border-bottom: 1px solid var(--line);
}

.faq-list summary {
  padding: 22px 42px 22px 2px;
  position: relative;
  cursor: pointer;
  font-family: "Nanum Square Round", sans-serif;
  font-size: 19px;
  list-style: none;
}

.faq-list summary::-webkit-details-marker {
  display: none;
}

.faq-list summary::after {
  position: absolute;
  top: 50%;
  right: 8px;
  content: "+";
  color: var(--copper);
  font-size: 25px;
  transform: translateY(-50%);
}

.faq-list details[open] summary::after {
  content: "−";
}

.faq-answer {
  padding: 0 4px 24px;
}

.faq-answer p,
.faq-answer li {
  color: var(--ink-soft);
}

.contact-panel {
  margin-top: 50px;
  padding: 35px;
  color: #fff8ef;
  background: var(--brown-deep);
  border-radius: 28px;
}

.contact-panel h2 {
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: 30px;
}

.contact-panel p {
  color: rgba(255, 248, 239, 0.72);
}

.contact-panel .button {
  color: var(--brown-deep);
  background: #fff8ef;
}

.download-page {
  min-height: calc(100svh - 78px);
  padding: 70px 0 110px;
  display: grid;
  place-items: center;
}

.download-layout {
  width: min(calc(100% - 40px), 960px);
  display: grid;
  grid-template-columns: 320px 1fr;
  gap: 80px;
  align-items: center;
}

.download-art {
  position: relative;
}

.download-art::before {
  position: absolute;
  inset: -40px;
  z-index: -1;
  content: "";
  background: radial-gradient(circle, rgba(239, 143, 118, 0.24), transparent 68%);
}

.download-art img {
  display: block;
  width: 100%;
  height: auto;
  aspect-ratio: 1;
  object-fit: cover;
  border-radius: 72px;
  box-shadow: var(--shadow);
}

.download-copy h1 {
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: clamp(46px, 6vw, 72px);
  line-height: 1.12;
  letter-spacing: -0.06em;
}

.download-copy > p:not(.eyebrow) {
  color: var(--ink-soft);
  font-size: 18px;
}

.release-status {
  margin: 30px 0;
  padding: 18px 20px;
  display: flex;
  align-items: center;
  gap: 12px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.48);
  border-radius: 16px;
}

.release-status::before {
  width: 10px;
  height: 10px;
  flex: 0 0 auto;
  content: "";
  background: #df9e52;
  border-radius: 50%;
  box-shadow: 0 0 0 6px rgba(223, 158, 82, 0.15);
}

.simple-page {
  min-height: 100svh;
  display: grid;
  place-items: center;
}

.simple-message {
  width: min(calc(100% - 40px), 620px);
  text-align: center;
}

.simple-message img {
  margin: 0 auto 24px;
  border-radius: 22px;
}

.simple-message h1 {
  margin: 0;
  font-family: "Nanum Square Round", sans-serif;
  font-size: clamp(42px, 7vw, 68px);
  line-height: 1.14;
}

.simple-message p:not(.eyebrow) {
  margin-bottom: 30px;
  color: var(--ink-soft);
}

@media (max-width: 920px) {
  .desktop-nav { display: none; }
  .menu-button { display: block; }
  .hero { padding-top: 48px; }
  .hero-grid,
  .story-intro-grid,
  .feature-grid,
  .feature-grid.reverse,
  .template-grid,
  .privacy-grid,
  .download-layout {
    grid-template-columns: 1fr;
  }
  .hero-grid { gap: 38px; }
  .hero-copy { text-align: center; }
  .hero-description { margin-left: auto; margin-right: auto; }
  .hero-actions { justify-content: center; }
  .privacy-note { justify-content: center; }
  .hero-visual { min-height: 610px; }
  .story-intro-grid { gap: 44px; }
  .feature-grid,
  .feature-grid.reverse { gap: 50px; }
  .feature-grid.reverse .feature-copy,
  .feature-grid.reverse .feature-visual { order: initial; }
  .feature-visual { min-height: 620px; }
  .template-grid { gap: 45px; }
  .privacy-grid { gap: 50px; }
  .document-layout { grid-template-columns: 1fr; }
  .document-nav { display: none; }
  .download-layout { max-width: 620px; text-align: center; }
  .download-art { width: 250px; margin: 0 auto; }
  .release-status { justify-content: center; text-align: left; }
}

@media (max-width: 620px) {
  .header-inner { width: min(calc(100% - 30px), var(--content)); height: 68px; }
  .brand { font-size: 18px; }
  .brand img { width: 37px; height: 37px; border-radius: 11px; }
  .container { width: min(calc(100% - 32px), var(--content)); }
  .hero { min-height: auto; padding: 45px 0 70px; }
  .hero h1 { font-size: clamp(48px, 15vw, 66px); }
  .hero-description { font-size: 16px; }
  .hero-actions { display: grid; }
  .button { width: 100%; }
  .hero-visual { min-height: 540px; }
  .hero-phone { width: 310px; border-radius: 45px; }
  .phone img { border-radius: 32px; }
  .note-one { top: 12%; left: 0; }
  .note-two { right: 0; bottom: 14%; }
  .floating-note { padding: 11px 13px; font-size: 11px; }
  .story-intro { padding-top: 80px; }
  .step { grid-template-columns: 42px 1fr; gap: 10px; }
  .step p { grid-column: 2; }
  .feature-section,
  .template-stage,
  .privacy-banner { padding: 90px 0; }
  .feature-visual { min-height: 560px; }
  .feature-visual .phone,
  .feature-visual .phone.phone-small,
  .template-phone-wrap .phone { width: 300px; }
  .template-phone-wrap { min-height: 560px; }
  .template-phone-wrap::before { transform: translate(-75px, 35px) rotate(-8deg); }
  .template-phone-wrap::after { transform: translate(75px, -10px) rotate(8deg); }
  .closing { padding: 88px 0; }
  .footer-inner { grid-template-columns: 1fr; }
  .footer-links { justify-content: flex-start; }
  .page-hero { padding: 64px 0 52px; }
  .document-layout { padding-top: 50px; }
  .document .lead-box { padding: 20px; }
  .contact-panel { padding: 26px 22px; }
  .download-page { padding: 56px 0 90px; }
  .download-layout { gap: 50px; }
  .download-art { width: 190px; }
  .download-art img { border-radius: 44px; }
}

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