@charset "UTF-8";

:root {
  color-scheme: light;
  --page: #f4efe6;
  --page-2: #faf7f1;
  --surface: #fffdf9;
  --surface-2: #eee5d7;
  --surface-3: #e3d7c4;
  --text: #17201c;
  --text-2: #48534d;
  --muted: #737b76;
  --brand: #17372f;
  --brand-2: #0f2821;
  --brand-3: #dbe7e1;
  --accent: #b9792d;
  --accent-2: #8e581c;
  --accent-soft: #efd7ae;
  --line: #d8ccba;
  --line-strong: #c6b69f;
  --hero-glow: rgba(185, 121, 45, .15);
  --glass: rgba(255, 253, 249, .84);
  --shadow-sm: 0 10px 30px rgba(23, 55, 47, .08);
  --shadow-md: 0 20px 55px rgba(23, 55, 47, .12);
  --shadow-lg: 0 34px 90px rgba(23, 55, 47, .16);
  --radius-sm: 16px;
  --radius-md: 24px;
  --radius-lg: 38px;
  --content: 1200px;
}

html[data-theme="dark"] {
  color-scheme: dark;
  --page: #0b1210;
  --page-2: #101916;
  --surface: #15211d;
  --surface-2: #1c2a25;
  --surface-3: #26372f;
  --text: #f4f1ea;
  --text-2: #c4cbc6;
  --muted: #929d97;
  --brand: #e9c785;
  --brand-2: #f6dfac;
  --brand-3: #21372f;
  --accent: #e0ae63;
  --accent-2: #f0c782;
  --accent-soft: #513f24;
  --line: #33443c;
  --line-strong: #465a50;
  --hero-glow: rgba(224, 174, 99, .14);
  --glass: rgba(16, 25, 22, .86);
  --shadow-sm: 0 12px 34px rgba(0, 0, 0, .24);
  --shadow-md: 0 24px 60px rgba(0, 0, 0, .34);
  --shadow-lg: 0 38px 100px rgba(0, 0, 0, .42);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  min-width: 320px;
  min-height: 100vh;
  background:
    radial-gradient(circle at 14% 0%, var(--hero-glow), transparent 29rem),
    linear-gradient(180deg, var(--page-2) 0%, var(--page) 100%);
  color: var(--text);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
  -webkit-font-smoothing: antialiased;
  transition: background-color .22s ease, color .22s ease;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, select, textarea { font: inherit; }
button { color: inherit; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}
::selection { background: var(--accent-soft); color: var(--brand-2); }

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--line);
  background: var(--glass);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
}
.nav {
  width: min(calc(100% - 40px), var(--content));
  min-height: 76px;
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  color: var(--text);
  font: 700 1.06rem Georgia, "Times New Roman", serif;
  letter-spacing: -.015em;
  white-space: nowrap;
}
.brand img {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  box-shadow: var(--shadow-sm);
}
.brand strong { color: var(--accent); font-weight: 700; }
.nav-actions { display: flex; align-items: center; gap: 18px; }
.nav-links { display: flex; align-items: center; gap: 24px; }
.nav-links a {
  text-decoration: none;
  color: var(--text-2);
  font-size: .91rem;
  font-weight: 750;
  transition: color .18s ease;
}
.nav-links a:hover,
.nav-links a[aria-current="page"] { color: var(--accent); }

.theme-switch {
  position: relative;
  width: 64px;
  height: 36px;
  flex: 0 0 auto;
  border: 1px solid var(--line-strong);
  border-radius: 999px;
  padding: 0;
  background: var(--surface-2);
  cursor: pointer;
  box-shadow: inset 0 1px 0 rgba(255,255,255,.18), var(--shadow-sm);
  transition: border-color .18s ease, background .18s ease, transform .18s ease;
}
.theme-switch:hover { border-color: var(--accent); transform: translateY(-1px); }
.theme-switch__icon {
  position: absolute;
  top: 50%;
  width: 14px;
  height: 14px;
  transform: translateY(-50%);
  color: var(--muted);
  pointer-events: none;
}
.theme-switch__icon--sun { left: 8px; }
.theme-switch__icon--moon { right: 8px; }
.theme-switch__thumb {
  position: absolute;
  top: 3px;
  left: 3px;
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--surface);
  box-shadow: 0 4px 12px rgba(0,0,0,.18);
  transition: transform .22s cubic-bezier(.2,.75,.25,1), background .22s ease;
}
html[data-theme="dark"] .theme-switch__thumb { transform: translateX(28px); }
html[data-theme="dark"] .theme-switch__icon--moon,
html:not([data-theme="dark"]) .theme-switch__icon--sun { color: var(--accent); }

.home-hero {
  position: relative;
  overflow: hidden;
  padding: 92px 0 78px;
}
.home-hero::before {
  content: "";
  position: absolute;
  width: 480px;
  height: 480px;
  right: -170px;
  top: -210px;
  border: 1px solid var(--line);
  border-radius: 50%;
  opacity: .65;
}
.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(370px, .92fr);
  gap: 72px;
  align-items: center;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin: 0 0 20px;
  color: var(--accent);
  font-size: .76rem;
  font-weight: 900;
  letter-spacing: .17em;
  text-transform: uppercase;
}
.eyebrow::before { content: ""; width: 30px; height: 1px; background: currentColor; }
h1, h2, h3 {
  margin: 0;
  color: var(--brand-2);
  font-family: Georgia, "Times New Roman", serif;
  text-wrap: balance;
}
h1 {
  max-width: 820px;
  font-size: clamp(3.35rem, 6.8vw, 6.85rem);
  line-height: .94;
  letter-spacing: -.058em;
}
h1 em { color: var(--accent); font-weight: 400; }
h2 {
  font-size: clamp(2.15rem, 4.3vw, 4.15rem);
  line-height: 1;
  letter-spacing: -.045em;
}
h3 { font-size: 1.35rem; line-height: 1.22; }
.lead {
  max-width: 730px;
  margin: 26px 0 0;
  color: var(--text-2);
  font-size: clamp(1.08rem, 1.7vw, 1.25rem);
  line-height: 1.75;
}
.hero-actions,
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.button {
  min-height: 50px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  border: 1px solid transparent;
  border-radius: 999px;
  padding: 12px 21px;
  background: var(--brand-2);
  color: var(--surface);
  text-decoration: none;
  font-size: .92rem;
  font-weight: 850;
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, background .18s ease, border-color .18s ease;
}
.button:hover { transform: translateY(-2px); background: var(--accent); }
.button.secondary { border-color: var(--line); background: var(--surface); color: var(--brand-2); box-shadow: none; }
.button.secondary:hover { border-color: var(--accent); background: var(--surface-2); }
.button svg { width: 18px; height: 18px; }

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 22px;
  margin-top: 28px;
  color: var(--muted);
  font-size: .87rem;
  font-weight: 700;
}
.hero-proof span { display: inline-flex; align-items: center; gap: 8px; }
.hero-proof span::before {
  content: "";
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 4px var(--accent-soft);
}

.library-visual {
  position: relative;
  min-height: 520px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  overflow: hidden;
  background:
    radial-gradient(circle at 76% 20%, var(--hero-glow), transparent 33%),
    linear-gradient(145deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow-lg);
}
.library-visual::before {
  content: "";
  position: absolute;
  inset: 28px;
  border: 1px solid var(--line);
  border-radius: 28px;
  pointer-events: none;
}
.library-mark {
  position: absolute;
  left: 36px;
  top: 34px;
  display: flex;
  align-items: center;
  gap: 12px;
  color: var(--text-2);
  font-size: .76rem;
  font-weight: 850;
  letter-spacing: .13em;
  text-transform: uppercase;
}
.library-mark img { width: 42px; height: 42px; border-radius: 12px; }
.library-stack {
  position: absolute;
  inset: 118px 44px 42px;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  align-items: end;
}
.visual-book {
  position: relative;
  min-height: 292px;
  border-radius: 8px 17px 17px 8px;
  padding: 22px 16px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  color: #fff9ed;
  box-shadow: 0 18px 34px rgba(0,0,0,.22);
  overflow: hidden;
}
.visual-book::after {
  content: "";
  position: absolute;
  left: 12px;
  top: 0;
  bottom: 0;
  width: 1px;
  background: rgba(255,255,255,.24);
  box-shadow: 3px 0 8px rgba(0,0,0,.16);
}
.visual-book:nth-child(1) { min-height: 338px; background: linear-gradient(160deg, #1a4b3d, #0e2a22); transform: rotate(-3deg); }
.visual-book:nth-child(2) { background: linear-gradient(160deg, #8d5c27, #4d2d12); transform: translateY(-10px); }
.visual-book:nth-child(3) { min-height: 318px; background: linear-gradient(160deg, #404a67, #20253a); transform: rotate(3deg); }
.visual-book small { color: rgba(255,255,255,.72); font-size: .64rem; font-weight: 850; letter-spacing: .15em; text-transform: uppercase; }
.visual-book strong { font: 700 1.18rem/1.15 Georgia, "Times New Roman", serif; }

.section { padding: 78px 0; }
.section.compact { padding: 58px 0; }
.section-heading { max-width: 780px; }
.section-heading p:last-child { margin: 21px 0 0; color: var(--text-2); font-size: 1.06rem; }

.category-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  margin-top: 34px;
}
.category-card {
  min-height: 235px;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 26px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: transform .18s ease, border-color .18s ease, box-shadow .18s ease;
}
.category-card:hover { transform: translateY(-5px); border-color: var(--accent); box-shadow: var(--shadow-md); }
.category-symbol {
  width: 46px;
  height: 46px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  background: var(--brand-3);
  color: var(--accent);
  font-weight: 900;
  font-size: .93rem;
}
.category-card p { margin: 11px 0 0; color: var(--text-2); }
.category-card > span { color: var(--accent); font-size: .72rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }

.experience-panel {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 54px;
  display: grid;
  grid-template-columns: minmax(0, .95fr) minmax(360px, 1.05fr);
  gap: 60px;
  align-items: center;
  background: var(--brand-2);
  color: #f6f0e4;
  box-shadow: var(--shadow-lg);
}
.experience-panel h2 { color: #fff8e9; }
.experience-panel .eyebrow { color: #e4bd75; }
.experience-panel p { color: #d2dbd6; }
.experience-list { display: grid; gap: 15px; margin-top: 28px; }
.experience-item { display: flex; gap: 13px; align-items: flex-start; }
.experience-item .tick {
  width: 26px;
  height: 26px;
  flex: 0 0 auto;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(228,189,117,.15);
  color: #e4bd75;
  font-weight: 900;
}
.experience-item strong { display: block; color: #fff8e9; }
.experience-item span { display: block; margin-top: 2px; color: #bfc9c3; font-size: .93rem; }
.device-stage {
  position: relative;
  min-height: 390px;
  display: grid;
  place-items: center;
}
.device-tablet {
  position: absolute;
  width: 310px;
  height: 390px;
  right: 18px;
  top: 0;
  border: 10px solid #17231f;
  border-radius: 26px;
  padding: 26px;
  background: #f5efe3;
  color: #203027;
  box-shadow: 0 28px 60px rgba(0,0,0,.34);
  transform: rotate(3deg);
}
.device-phone {
  position: absolute;
  width: 154px;
  height: 312px;
  left: 10px;
  bottom: 2px;
  z-index: 2;
  border: 8px solid #111a17;
  border-radius: 30px;
  padding: 22px 16px;
  background: #f9f4ea;
  color: #203027;
  box-shadow: 0 24px 52px rgba(0,0,0,.38);
  transform: rotate(-5deg);
}
.device-screen .mini-label { color: #9a6525; font-size: .58rem; font-weight: 900; letter-spacing: .13em; text-transform: uppercase; }
.device-screen h4 { margin: 14px 0 12px; font: 700 1.15rem/1.08 Georgia, "Times New Roman", serif; }
.device-screen p { margin: 0 0 9px; color: #59655e; font: .72rem/1.45 Georgia, "Times New Roman", serif; }
.device-phone .device-screen h4 { font-size: .88rem; }
.device-phone .device-screen p { font-size: .58rem; }

.value-grid,
.process-grid {
  display: grid;
  gap: 18px;
  margin-top: 34px;
}
.value-grid { grid-template-columns: repeat(3, 1fr); }
.process-grid { grid-template-columns: repeat(4, 1fr); counter-reset: step; }
.value-card,
.process-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.value-card { padding: 29px; }
.value-card p,
.process-card p { margin: 12px 0 0; color: var(--text-2); }
.value-icon {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  margin-bottom: 20px;
  border-radius: 14px;
  background: var(--brand-3);
  color: var(--accent);
  font-weight: 900;
}
.process-card { padding: 27px; }
.process-card::before {
  counter-increment: step;
  content: "0" counter(step);
  display: block;
  margin-bottom: 17px;
  color: var(--accent);
  font-weight: 900;
  letter-spacing: .12em;
}

.release-card {
  display: grid;
  grid-template-columns: 220px minmax(0, 1fr) auto;
  gap: 38px;
  align-items: center;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 34px;
  background: var(--surface);
  box-shadow: var(--shadow-md);
}
.release-cover {
  aspect-ratio: 2 / 3;
  border-radius: 7px 16px 16px 7px;
  padding: 24px 18px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background: linear-gradient(160deg, #173f34, #0d241d);
  color: #f8edd6;
  box-shadow: 0 18px 38px rgba(0,0,0,.24);
}
.release-cover small { color: #dcb978; font-size: .62rem; font-weight: 900; letter-spacing: .15em; text-transform: uppercase; }
.release-cover strong { font: 700 1.22rem/1.08 Georgia, "Times New Roman", serif; }
.release-cover span { color: #d6ded9; font-size: .72rem; }
.release-copy p { margin: 13px 0 0; color: var(--text-2); }
.release-status { margin-top: 18px; display: inline-flex; align-items: center; gap: 8px; color: var(--accent); font-size: .82rem; font-weight: 850; }
.release-status::before { content: ""; width: 8px; height: 8px; border-radius: 50%; background: var(--accent); box-shadow: 0 0 0 5px var(--accent-soft); }

.format-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  margin-top: 32px;
}
.format-card {
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: 24px;
  display: flex;
  align-items: flex-start;
  gap: 15px;
  background: var(--surface);
  box-shadow: var(--shadow-sm);
}
.format-card .icon {
  width: 42px;
  height: 42px;
  flex: 0 0 auto;
  border-radius: 13px;
  display: grid;
  place-items: center;
  background: var(--brand-3);
  color: var(--accent);
  font-weight: 900;
}
.format-card strong { display: block; color: var(--brand-2); }
.format-card span { display: block; margin-top: 4px; color: var(--text-2); font-size: .91rem; }

.final-callout {
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: 48px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 30px;
  background: linear-gradient(135deg, var(--surface), var(--surface-2));
  box-shadow: var(--shadow-md);
}
.final-callout p { max-width: 650px; margin: 13px 0 0; color: var(--text-2); }

/* Book page */
.book-page { padding: 74px 0 90px; }
.breadcrumbs { margin-bottom: 26px; color: var(--muted); font-size: .88rem; }
.breadcrumbs a { text-decoration: none; }
.breadcrumbs a:hover { color: var(--accent); }
.book-layout { display: grid; grid-template-columns: minmax(280px, 360px) minmax(0, 1fr); gap: 70px; align-items: start; }
.book-cover {
  position: sticky;
  top: 112px;
  aspect-ratio: 2 / 3;
  border-radius: 9px 22px 22px 9px;
  padding: 38px 30px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  text-align: center;
  background:
    radial-gradient(circle at 72% 18%, rgba(239,215,174,.16), transparent 28%),
    linear-gradient(160deg, #173f34, #0d241d);
  color: #f8edd6;
  box-shadow: var(--shadow-lg);
}
.book-cover::before { content: ""; position: absolute; inset: 16px; border: 1px solid rgba(239,215,174,.38); border-radius: 6px 17px 17px 6px; }
.book-cover::after { content: ""; position: absolute; left: 22px; top: 0; bottom: 0; width: 1px; background: rgba(255,255,255,.18); box-shadow: 5px 0 10px rgba(0,0,0,.18); }
.book-cover > * { position: relative; z-index: 1; }
.book-cover .series { color: #ddb877; font-size: .7rem; font-weight: 900; letter-spacing: .16em; text-transform: uppercase; }
.book-cover .cover-title { font: 700 clamp(2rem, 3.4vw, 3.25rem)/1.05 Georgia, "Times New Roman", serif; }
.book-cover .author { color: #d4ddd8; font-size: .88rem; letter-spacing: .08em; text-transform: uppercase; }
.book-copy h1 { font-size: clamp(3rem, 5.6vw, 5.8rem); }
.book-meta { display: flex; flex-wrap: wrap; gap: 9px; margin-top: 25px; }
.tag { border: 1px solid var(--line); border-radius: 999px; padding: 8px 12px; background: var(--surface); color: var(--text-2); font-size: .78rem; font-weight: 800; }
.book-section { margin-top: 58px; padding-top: 42px; border-top: 1px solid var(--line); }
.book-section h2 { font-size: clamp(2rem, 3.4vw, 3.25rem); }
.book-section p,
.book-section li { color: var(--text-2); }
.book-section ul { margin: 23px 0 0; padding-left: 1.25rem; }
.book-section li + li { margin-top: 9px; }
.notice { margin-top: 22px; border: 1px solid var(--line); border-radius: var(--radius-md); padding: 22px; background: var(--surface-2); color: var(--text-2); }

.site-footer {
  border-top: 1px solid var(--line);
  padding: 28px 0;
  color: var(--muted);
  font-size: .87rem;
}
.footer-grid {
  width: min(calc(100% - 40px), var(--content));
  margin-inline: auto;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 22px;
}
.footer-brand { display: flex; align-items: center; gap: 11px; }
.footer-brand img { width: 34px; height: 34px; border-radius: 10px; }
.footer-brand strong { display: block; color: var(--text); font: 700 .98rem Georgia, "Times New Roman", serif; }
.footer-brand span { display: block; margin-top: 1px; }

@media (max-width: 1000px) {
  .hero-grid { grid-template-columns: 1fr; gap: 48px; }
  .library-visual { min-height: 500px; }
  .category-grid { grid-template-columns: repeat(2, 1fr); }
  .experience-panel { grid-template-columns: 1fr; }
  .device-stage { min-height: 420px; max-width: 520px; width: 100%; margin-inline: auto; }
  .value-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
  .release-card { grid-template-columns: 190px 1fr; }
  .release-card > .button { grid-column: 2; justify-self: start; }
  .book-layout { gap: 45px; }
}

@media (max-width: 760px) {
  .nav { min-height: 68px; }
  .brand span { font-size: .94rem; }
  .brand img { width: 36px; height: 36px; }
  .nav-links { display: none; }
  .theme-switch { width: 60px; height: 34px; }
  .theme-switch__thumb { width: 26px; height: 26px; }
  html[data-theme="dark"] .theme-switch__thumb { transform: translateX(26px); }
  .home-hero { padding: 68px 0 48px; }
  h1 { font-size: clamp(3rem, 15vw, 5.2rem); }
  h2 { font-size: clamp(2.2rem, 10vw, 3.4rem); }
  .library-visual { min-height: 420px; }
  .library-stack { inset: 108px 26px 30px; gap: 9px; }
  .visual-book { min-height: 235px; padding: 18px 12px; }
  .visual-book:nth-child(1) { min-height: 275px; }
  .visual-book:nth-child(3) { min-height: 258px; }
  .visual-book strong { font-size: .9rem; }
  .section { padding: 58px 0; }
  .section.compact { padding: 44px 0; }
  .category-grid,
  .format-grid,
  .process-grid { grid-template-columns: 1fr; }
  .category-card { min-height: 205px; }
  .experience-panel { padding: 32px 22px; }
  .device-stage { min-height: 340px; }
  .device-tablet { width: 245px; height: 315px; right: 0; padding: 22px; }
  .device-phone { width: 126px; height: 255px; left: 0; padding: 17px 12px; }
  .release-card { grid-template-columns: 120px 1fr; gap: 22px; padding: 24px; }
  .release-cover { padding: 18px 12px; }
  .release-cover strong { font-size: .9rem; }
  .release-card > .button { grid-column: 1 / -1; width: 100%; }
  .final-callout { padding: 32px 24px; flex-direction: column; align-items: flex-start; }
  .final-callout .button { width: 100%; }
  .book-page { padding: 45px 0 70px; }
  .book-layout { grid-template-columns: 1fr; }
  .book-cover { position: relative; top: auto; width: min(82%, 340px); margin-inline: auto; }
  .book-copy h1 { font-size: clamp(2.8rem, 13vw, 4.8rem); }
  .footer-grid { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 430px) {
  .shell,
  .nav,
  .footer-grid { width: min(calc(100% - 28px), var(--content)); }
  .hero-actions .button { width: 100%; }
  .library-mark { left: 24px; top: 24px; }
  .library-visual::before { inset: 18px; }
  .visual-book small { font-size: .52rem; }
  .visual-book strong { font-size: .78rem; }
  .release-card { grid-template-columns: 96px 1fr; }
  .release-copy h3 { font-size: 1.1rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: .01ms !important; animation-duration: .01ms !important; animation-iteration-count: 1 !important; }
}
