/* ============================================================
   COMPONENTS — buttons, cards, inputs, tags, nav, footer
   ============================================================ */

/* ── LAYOUT WRAPPER ── */
.wrapper {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 48px;
}

@media (max-width: 768px) {
  .wrapper { padding: 24px 20px; }
}

/* A hard 1200px cap leaves very wide gutters on large (27"+) monitors —
   let the content column grow a bit on genuinely large viewports instead
   of staying pinned to a narrow center column. */
@media (min-width: 1600px) {
  .wrapper { max-width: 1440px; }
}
@media (min-width: 1920px) {
  .wrapper { max-width: 1600px; }
}

/* ── NAV ── */
.site-nav {
  position: sticky;
  top: 0;
  z-index: 200;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  height: 64px;
  padding: 0 24px;
  background: var(--nav-glass);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border-subtle);
}

.site-nav .brand, .mobile-menu .brand {
  display: flex;
  align-items: center;
  gap: 8px;
  text-decoration: none;
  color: var(--text-primary);
  font-weight: 600;
  font-size: var(--text-small);
  flex-shrink: 0;
}
.jst-clock {
  color: var(--text-muted);
  font-size: var(--text-caption);
  margin-left: 12px;
  white-space: nowrap;
}
@media (max-width: 900px) { .jst-clock { display: none; } }

.theme-toggle-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px; height: 36px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  cursor: pointer;
  flex-shrink: 0;
}
.theme-toggle-btn:hover { color: var(--text-primary); border-color: var(--border-strong); }
.theme-toggle-btn .theme-icon-dark { display: none; }
@media (prefers-color-scheme: dark) {
  :root:not([data-theme="light"]) .theme-toggle-btn .theme-icon-light { display: none; }
  :root:not([data-theme="light"]) .theme-toggle-btn .theme-icon-dark { display: inline-flex; }
}
:root[data-theme="dark"] .theme-toggle-btn .theme-icon-light { display: none; }
:root[data-theme="dark"] .theme-toggle-btn .theme-icon-dark { display: inline-flex; }

.footer-monogram {
  font-family: var(--font-heading);
  font-style: italic;
  color: var(--accent);
  margin-left: 4px;
}

.site-nav .brand .mark, .mobile-menu .brand .mark {
  width: 28px; height: 28px;
  border-radius: var(--radius-sm);
  background: var(--accent-glow);
  color: var(--accent);
  display: flex; align-items: center; justify-content: center;
  font-family: 'JetBrains Mono', monospace;
  font-weight: 700;
  font-size: 0.7rem;
  flex-shrink: 0;
}

.nav-center {
  display: none;
  align-items: center;
  gap: 4px;
  list-style: none;
}
.nav-center a {
  display: block;
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-small);
  font-weight: 500;
  transition: color 200ms cubic-bezier(0.4,0,0.2,1);
  position: relative;
}
.nav-center a:hover { color: var(--text-primary); }
.nav-center a.active { color: var(--text-primary); }
.nav-center a.active::after {
  content: '';
  position: absolute;
  left: 14px; right: 14px; bottom: 2px;
  height: 2px;
  background: var(--accent);
  border-radius: var(--radius-full);
}

.nav-right {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.nav-hamburger {
  background: none;
  border: none;
  cursor: pointer;
  color: var(--text-primary);
  padding: 8px;
  display: flex;
  border-radius: var(--radius-sm);
}
.nav-hamburger:hover { background: var(--bg-overlay); }

@media (min-width: 1024px) {
  .nav-center { display: flex; }
  .nav-hamburger { display: none; }
}

/* Below 1024px the full-screen mobile menu already duplicates the language
   switcher/account menu (.lang-switcher-static) and the Hire-me/Logout CTA,
   so hide their top-bar originals here to keep the compact bar (brand +
   theme toggle + hamburger) from overflowing on narrow phones. */
@media (max-width: 1023px) {
  .site-nav .lang-switcher,
  .site-nav .nav-hire-btn { display: none; }
}

/* ── MOBILE FULL-SCREEN OVERLAY MENU ── */
.mobile-menu {
  position: fixed;
  inset: 0;
  z-index: 300;
  background: var(--bg-base);
  display: flex;
  flex-direction: column;
  padding: 24px;
  overflow-y: auto; /* nav links + footer can be taller than the screen (short phones, extra menu items) */
  -webkit-overflow-scrolling: touch;
  opacity: 0;
  visibility: hidden;
  transform: translateY(-8px);
  transition: opacity 250ms cubic-bezier(0.4,0,0.2,1), transform 250ms cubic-bezier(0.4,0,0.2,1), visibility 250ms;
}
.mobile-menu.open { opacity: 1; visibility: visible; transform: translateY(0); }

.mobile-menu-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 40px;
}

.mobile-menu-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 32px;
}
.mobile-menu-links a {
  display: block;
  padding: 16px 4px;
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--text-primary);
  text-decoration: none;
  border-bottom: 1px solid var(--border-subtle);
  min-height: 44px;
}
.mobile-menu-links a.active { color: var(--accent); }

.mobile-menu-footer {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
}

@media (min-width: 1024px) {
  .mobile-menu { display: none; }
}

/* ── BUTTONS ──
   `.btn-primary`/`.btn-secondary`/`.btn-ghost` are the current names;
   `.btn-gradient`/`.btn-outline`/`.proj-link` are legacy aliases still used
   standalone (without `.btn`) across older templates, so every variant
   below carries the full layout, not just color. */
.btn, .btn-primary, .btn-gradient, .btn-secondary, .btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 12px 20px;
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: var(--text-small);
  text-decoration: none;
  border: none;
  cursor: pointer;
  transition: background 200ms cubic-bezier(0.4,0,0.2,1), transform 200ms cubic-bezier(0.4,0,0.2,1), border-color 200ms cubic-bezier(0.4,0,0.2,1), box-shadow 200ms cubic-bezier(0.4,0,0.2,1);
  font-family: inherit;
}

.btn-primary, .btn-gradient {
  background: var(--accent);
  color: #fff;
}
.btn-primary:hover, .btn-gradient:hover {
  background: var(--accent-hover);
  transform: translateY(-1px);
}

.btn-secondary, .btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border-strong);
}
.btn-secondary:hover, .btn-outline:hover {
  background: var(--bg-overlay);
  border-color: var(--accent);
  transform: translateY(-1px);
}

.btn-ghost, .proj-link {
  background: none;
  border: none;
  color: var(--accent);
  text-decoration: none;
  padding: 0;
  min-height: auto;
  font-family: 'JetBrains Mono', monospace;
  font-size: var(--text-small);
}
.btn-ghost:hover, .proj-link:hover { text-decoration: underline; }

/* ── CARDS ── */
.card {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  padding: 24px;
  margin-bottom: 16px;
  transition: border-color 250ms cubic-bezier(0.4,0,0.2,1), transform 250ms cubic-bezier(0.4,0,0.2,1);
}
.card:hover {
  border-color: var(--border-strong);
  transform: translateY(-2px);
}

.card-title { font-size: 1.1rem; font-weight: 600; color: var(--text-primary); margin-bottom: 6px; }
.card-meta  { font-family: 'JetBrains Mono', monospace; font-size: 0.72rem; color: var(--accent); margin-bottom: 10px; display: flex; align-items: center; gap: 6px; flex-wrap: wrap; }
.card-desc  { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.65; }

/* ── GATED DOCUMENT PREVIEW ── */
/* Small thumbnail (document row) — fully blurred, just an indicator. */
.doc-preview-blur {
  filter: blur(6px);
  transform: scale(1.08); /* hides the sharp edge the blur would otherwise leave */
  cursor: zoom-in;
}

/* "Read a bit, then blur" teaser (document card + request page + lightbox).
   The sharp base <img> sets the box's size; the blur layer is a plain <div>
   with a CSS background-image (not a second <img>) so it always fills
   `inset:0` of the current box — it never depends on its own image finishing
   loading the way a layered <img> would. The top ~30% of that blur layer is
   masked away, letting the sharp base show through as a real sample of the
   first part of the document; the rest fades into the blur. The click-to-zoom
   lightbox itself is inline-styled in dynamic_pages/_preview_lightbox.html
   (same open/close technique as the certificate lightbox on the homepage),
   so it doesn't depend on this stylesheet either — only these two classes do. */
.doc-teaser {
  position: relative;
  overflow: hidden;
  cursor: zoom-in;
}
.doc-teaser-base {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.doc-teaser-blur {
  position: absolute;
  inset: 0;
  background-size: cover;
  background-position: center;
  filter: blur(9px);
  transform: scale(1.08);
  -webkit-mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, #000 60%, #000 100%);
          mask-image: linear-gradient(to bottom, transparent 0%, transparent 30%, #000 60%, #000 100%);
}

/* ── TAGS / CHIPS ── */
.tags-wrap { display: flex; flex-wrap: wrap; gap: 6px; margin-top: 12px; }
.tag {
  display: inline-flex;
  align-items: center;
  background: rgba(var(--accent-rgb), 0.08);
  color: var(--accent);
  border: 1px solid rgba(var(--accent-rgb), 0.2);
  border-radius: var(--radius-full);
  padding: 4px 10px;
  font-size: var(--text-caption);
  font-weight: 500;
  font-family: 'JetBrains Mono', monospace;
}

.skills-wrap { display: flex; flex-wrap: wrap; gap: 8px; margin: 12px 0; }
.skill-pill {
  background: var(--bg-overlay);
  color: var(--text-secondary);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm);
  padding: 6px 14px;
  font-size: 0.82rem;
  font-weight: 500;
}

/* ── GRID ── */
.grid-3 { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.grid-2 { display: grid; grid-template-columns: repeat(auto-fill, minmax(420px, 1fr)); gap: 20px; }
@media (max-width: 768px) {
  .grid-2, .grid-3 { grid-template-columns: 1fr; }
}

/* ── SECTION HEADER ── */
.section-header {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: var(--text-h3);
  font-weight: 600;
  color: var(--text-primary);
  border-left: 3px solid var(--accent);
  padding-left: 16px;
  margin: 64px 0 24px 0;
}
.section-header:first-child { margin-top: 0; }
.section-icon {
  width: 22px; height: 22px;
  flex-shrink: 0;
  fill: none;
  stroke: var(--accent);
  stroke-width: 1.5;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── EMPTY STATE ── */
.empty-state {
  text-align: center;
  padding: 80px 20px;
  color: var(--text-muted);
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}
.empty-state .icon { color: var(--text-muted); margin-bottom: 16px; display: flex; justify-content: center; }
.empty-state h3 { color: var(--text-secondary); font-size: 1.1rem; margin-bottom: 8px; font-weight: 600; }

/* ── FILTER BAR ── */
.filter-bar { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; }
.filter-btn {
  font-family: 'JetBrains Mono', monospace;
  font-size: 0.72rem;
  padding: 6px 14px;
  border-radius: var(--radius-full);
  border: 1px solid var(--border-subtle);
  color: var(--text-muted);
  text-decoration: none;
  transition: all 200ms cubic-bezier(0.4,0,0.2,1);
  background: transparent;
  cursor: pointer;
}
.filter-btn:hover, .filter-btn.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-glow);
}

hr { border: none; border-top: 1px solid var(--border-subtle); margin: 0; }

/* ── BLOG EXPANDER ── */
.blog-expander {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.blog-expander-header {
  padding: 18px 24px;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  user-select: none;
  transition: background 200ms;
  min-height: 44px;
}
.blog-expander-header:hover { background: var(--bg-overlay); }
.blog-expander-title { font-weight: 600; color: var(--text-primary); font-size: 0.95rem; }
.blog-expander-meta { font-family: 'JetBrains Mono', monospace; font-size: 0.7rem; color: var(--accent); }
.blog-expander-body {
  padding: 0 24px 20px;
  color: var(--text-secondary);
  font-size: 0.9rem;
  line-height: 1.75;
  border-top: 1px solid var(--border-subtle);
}
.blog-expander-body.hidden { display: none; }

/* ── FORM ── */
.form-group { margin-bottom: 18px; }
.form-group label {
  display: block; font-size: var(--text-small); font-weight: 500;
  color: var(--text-secondary); margin-bottom: 6px;
}
.form-control, .form-select {
  width: 100%; min-height: 44px; padding: 0 16px;
  background: var(--bg-elevated); border: 1px solid var(--border-subtle);
  border-radius: var(--radius-sm); color: var(--text-primary); font-size: 0.92rem;
  font-family: inherit; outline: none; transition: border-color 200ms, box-shadow 200ms;
}
textarea.form-control { min-height: 120px; padding: 12px 16px; }
.form-control:focus, .form-select:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.form-control.is-invalid { border-color: var(--danger); }
.field-error { font-size: 0.78rem; color: var(--danger); margin-top: 5px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
@media (max-width: 560px) { .form-row { grid-template-columns: 1fr; } }
.hp-field { position: absolute; left: -9999px; top: -9999px; }

/* ── HERO (shared banner style used on non-home pages / legacy) ── */
.hero-banner {
  background: var(--bg-elevated);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 60px 40px;
  text-align: center;
  margin-bottom: 32px;
  position: relative;
  overflow: hidden;
}
.hero-name { font-size: clamp(2.2rem, 5vw, 3rem); font-weight: 700; color: var(--text-primary); margin-bottom: 8px; letter-spacing: -0.02em; }
.hero-title { color: var(--text-secondary); font-family: 'JetBrains Mono', monospace; font-size: 0.95rem; margin-bottom: 20px; }
.hero-bio { color: var(--text-secondary); max-width: 580px; margin: 0 auto; font-size: 0.95rem; line-height: 1.75; }

/* ── CONTACT ROW ── */
.contact-row { display: flex; gap: 24px; flex-wrap: wrap; margin: 20px 0; font-size: 0.88rem; }
.contact-row a { display: inline-flex; align-items: center; gap: 6px; color: var(--accent); text-decoration: none; }
.contact-row a:hover { text-decoration: underline; }

/* ── AVAILABILITY DOT ── */
.availability-dot {
  width: 8px; height: 8px; border-radius: 50%;
  background: var(--success);
  display: inline-block;
  animation: pulse-dot 2s infinite;
}
@keyframes pulse-dot {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.6; }
}

/* ── STICKY MOBILE HIRE-ME CTA ── */
.sticky-hire-cta {
  display: none;
  position: fixed;
  right: 20px; bottom: 20px;
  z-index: 130;
  min-height: 44px;
  padding: 12px 24px;
  border-radius: var(--radius-full);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 0.9rem;
  text-decoration: none;
  align-items: center;
  box-shadow: var(--shadow-glow);
  opacity: 0.6;
}
@media (max-width: 1023px) {
  .sticky-hire-cta { display: inline-flex; }
  main.content { padding-bottom: 80px; }
}

/* ── LANGUAGE SWITCHER ── */
.lang-switcher { position: relative; }
.lang-switcher-btn {
  display: flex; align-items: center; gap: 6px;
  padding: 8px 12px;
  border-radius: var(--radius-sm);
  border: 1px solid var(--border-subtle);
  background: transparent;
  color: var(--text-secondary);
  font-size: 0.8rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 200ms;
  font-family: inherit;
  min-height: 36px;
}
.lang-switcher-btn:hover { background: var(--bg-overlay); color: var(--text-primary); border-color: var(--border-strong); }
.lang-caret { display: flex; }
.lang-switcher-menu {
  list-style: none;
  display: none;
  flex-direction: column;
  gap: 2px;
  margin-top: 6px;
  padding: 6px;
  background: var(--bg-overlay);
  border: 1px solid var(--border-strong);
  border-radius: var(--radius-md);
  position: absolute;
  right: 0; top: calc(100% + 6px);
  min-width: 150px;
  z-index: 200;
  box-shadow: 0 12px 28px rgba(0,0,0,0.45);
}
.lang-switcher-menu.open { display: flex; }
.lang-switcher-menu a {
  display: block; padding: 8px 12px; border-radius: var(--radius-sm);
  color: var(--text-secondary); text-decoration: none; font-size: 0.85rem;
}
.lang-switcher-menu a:hover { background: var(--accent-glow); color: var(--text-primary); }
.lang-switcher-menu a.active { color: var(--accent); background: var(--accent-glow); font-weight: 600; }
.dropdown-logout-btn {
  display: flex; align-items: center; width: 100%; text-align: left;
  padding: 8px 12px; border-radius: var(--radius-sm);
  background: none; border: none; cursor: pointer;
  color: var(--text-secondary); font-size: 0.85rem; font-family: inherit;
}
.dropdown-logout-btn:hover { background: var(--accent-glow); color: var(--text-primary); }

/* Static variant for footer / non-dropdown contexts */
.lang-switcher-static { display: flex; gap: 4px; }
.lang-switcher-static a {
  padding: 6px 10px; border-radius: var(--radius-sm); color: var(--text-muted);
  text-decoration: none; font-size: var(--text-caption);
}
.lang-switcher-static a.active { color: var(--accent); background: var(--accent-glow); }
.lang-switcher-static a:hover { color: var(--text-primary); }

/* ── TOASTS (Django messages) ── */
.toast {
  padding: 12px 20px; border-radius: var(--radius-md); margin-bottom: 10px;
  font-size: 0.88rem; display: flex; align-items: center; gap: 10px;
}
.toast-success { background: rgba(59,122,87,0.1); border: 1px solid rgba(59,122,87,0.3); color: var(--success); }
.toast-error   { background: rgba(192,57,43,0.1); border: 1px solid rgba(192,57,43,0.3); color: var(--danger); }
.toast-warning { background: rgba(184,134,11,0.1); border: 1px solid rgba(184,134,11,0.3); color: var(--warning); }
.toast-info    { background: var(--accent-glow); border: 1px solid rgba(var(--accent-rgb),0.3); color: var(--accent); }

/* ── BACK LINK ── */
.back-link {
  display: inline-flex; align-items: center; gap: 6px;
  color: var(--text-muted); text-decoration: none; font-size: 0.85rem;
  margin-bottom: 28px; transition: color 200ms;
}
.back-link:hover { color: var(--accent); }

/* ── POST / RICH CONTENT ── */
.post-title { font-size: clamp(1.6rem, 4vw, 2.4rem); font-weight: 700; color: var(--text-primary); margin-bottom: 12px; line-height: 1.2; letter-spacing: -0.01em; }
.post-content { margin-top: 32px; }
.post-content h1, .post-content h2, .post-content h3 { color: var(--text-primary); margin: 32px 0 12px; }
.post-content p { margin-bottom: 16px; color: var(--text-secondary); line-height: 1.8; }
.post-content code { background: var(--bg-overlay); padding: 2px 8px; border-radius: 4px; font-family: 'JetBrains Mono', monospace; font-size: 0.85em; color: var(--accent); }
.post-content pre { background: var(--bg-elevated); border: 1px solid var(--border-subtle); border-radius: 10px; padding: 20px; overflow-x: auto; margin: 20px 0; }
.post-content pre code { background: none; padding: 0; color: var(--text-primary); }
.post-content blockquote { border-left: 3px solid var(--accent); padding-left: 16px; margin: 20px 0; color: var(--text-muted); font-style: italic; }
.post-content ul, .post-content ol { padding-left: 24px; margin-bottom: 16px; color: var(--text-secondary); }
.post-content strong { color: var(--text-primary); }
.post-content a { color: var(--accent); }

/* ── FOOTER ── */
.site-footer {
  border-top: 1px solid var(--border-subtle);
  margin-top: 96px;
  padding: 64px 48px 32px;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr;
  gap: 32px;
  max-width: 1200px;
  margin: 0 auto;
}
.footer-col h4 {
  font-size: var(--text-caption);
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: var(--text-muted);
  margin-bottom: 16px;
  font-weight: 600;
}
.footer-col a {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--text-secondary);
  text-decoration: none;
  font-size: var(--text-small);
  padding: 6px 0;
  min-height: 32px;
  transition: color 200ms;
}
.footer-col a:hover { color: var(--text-primary); }
.footer-brand-name { color: var(--text-primary); font-weight: 600; margin-bottom: 6px; }
.footer-brand-tagline { color: var(--text-muted); font-size: var(--text-small); line-height: 1.6; max-width: 320px; }

.footer-bottom {
  max-width: 1200px;
  margin: 32px auto 0;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  color: var(--text-muted);
  font-size: var(--text-caption);
}

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 560px) {
  .footer-grid { grid-template-columns: 1fr; }
  .site-footer { padding: 48px 20px 24px; }
}

/* ── SCROLL REVEAL ──
   `.fade` is the legacy class name still used across most templates;
   `.reveal` is the new name used in the redesigned homepage. Both are
   driven by the same IntersectionObserver in motion.js.
   Content is visible by default (progressive enhancement): motion.js adds
   `.motion-ready` to <body> once it has confirmed it can observe elements,
   which is the only thing that opts them into the hidden-then-reveal effect.
   If JS never runs, nothing is ever hidden. */
.reveal, .fade { transition: opacity 500ms cubic-bezier(0.4,0,0.2,1), transform 500ms cubic-bezier(0.4,0,0.2,1); }
.motion-ready .reveal, .motion-ready .fade { opacity: 0; transform: translateY(20px); }
.motion-ready .reveal.is-visible, .motion-ready .fade.is-visible { opacity: 1; transform: translateY(0); }
@media (prefers-reduced-motion: reduce) {
  .motion-ready .reveal, .motion-ready .fade { opacity: 1; transform: none; transition: none; }
}
