/* ============================================================
   DESIGN TOKENS
   ============================================================ */
:root {
  --display: "JetBrains Mono", ui-monospace, monospace;
  --body: "IBM Plex Sans", system-ui, sans-serif;
  --mono: "JetBrains Mono", ui-monospace, monospace;
  --maxw: 1180px;
  --gutter: clamp(1.25rem, 5vw, 4rem);
}

:root[data-theme="dark"] {
  --bg: #0A0C0A;
  --bg-elev: #101310;
  --bg-card: #141810;
  --ink: #E7ECE4;
  --muted: #8B948B;
  --faint: #565D56;
  --accent: #49D6B0;
  --accent-soft: #8FF0D2;
  --on-accent: #06231A;
  --line: rgba(231, 236, 228, 0.10);
  --line-strong: rgba(231, 236, 228, 0.22);
}

:root[data-theme="light"] {
  --bg: #F3F4EF;
  --bg-elev: #EAEBE3;
  --bg-card: #E1E3D9;
  --ink: #10120F;
  --muted: #4B524B;
  --faint: #767D75;
  --accent: #0B8E74;
  --accent-soft: #0AA989;
  --on-accent: #F3F4EF;
  --line: rgba(16, 18, 15, 0.12);
  --line-strong: rgba(16, 18, 15, 0.24);
}

/* ============================================================
   RESET & BASE
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { -webkit-font-smoothing: antialiased; text-rendering: optimizeLegibility; }
body {
  background: var(--bg);
  color: var(--ink);
  font-family: var(--body);
  font-size: clamp(1rem, 0.5vw + 0.9rem, 1.125rem);
  line-height: 1.65;
  font-weight: 400;
  overflow-x: hidden;
  transition: background .3s ease, color .3s ease;
}
::selection { background: var(--accent); color: var(--on-accent); }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; display: block; }
:focus-visible { outline: 2px solid var(--accent); outline-offset: 3px; border-radius: 2px; }

/* ============================================================
   LAYOUT HELPERS
   ============================================================ */
.wrap { max-width: var(--maxw); margin-inline: auto; padding-inline: var(--gutter); }
.eyebrow { font-family: var(--mono); font-size: 0.75rem; letter-spacing: 0.04em; color: var(--accent); }
.display { font-family: var(--display); font-weight: 600; line-height: 0.98; letter-spacing: -0.01em; }
.bracket { color: var(--accent); }

/* ============================================================
   PROGRESS BAR
   ============================================================ */
.progress { position: fixed; top: 0; left: 0; height: 2px; width: 100%; background: transparent; z-index: 60; }
.progress span { display: block; height: 100%; width: 100%; background: var(--accent); transform: scaleX(0); transform-origin: 0 50%; }

/* ============================================================
   NAV
   ============================================================ */
.nav {
  position: fixed; top: 0; left: 0; width: 100%; z-index: 50;
  display: flex; align-items: center; justify-content: space-between;
  padding: 1.15rem var(--gutter);
  transition: background .4s ease, border-color .4s ease, padding .4s ease;
  border-bottom: 1px solid transparent;
}
.nav.scrolled {
  background: color-mix(in srgb, var(--bg) 82%, transparent);
  backdrop-filter: blur(12px);
  border-bottom-color: var(--line);
  padding-top: 0.85rem;
  padding-bottom: 0.85rem;
}
.brand { font-family: var(--display); font-size: 1.02rem; font-weight: 600; letter-spacing: -0.01em; }
.brand .bracket { font-weight: 600; }
.nav-right { display: flex; align-items: center; gap: 1.9rem; }
.nav-links { display: flex; gap: 1.9rem; font-family: var(--mono); font-size: 0.85rem; color: var(--muted); }
.nav-links a { position: relative; transition: color .25s; }
.nav-links a:hover { color: var(--ink); }
@media (max-width: 760px) { .nav-links { display: none; } }
.theme-toggle {
  width: 2.3rem; height: 2.3rem; border-radius: 6px;
  border: 1px solid var(--line-strong); background: var(--bg-elev);
  color: var(--ink); display: grid; place-items: center;
  cursor: pointer; transition: border-color .25s, background .25s;
}
.theme-toggle:hover { border-color: var(--accent); }
.theme-toggle svg { width: 16px; height: 16px; }

/* ============================================================
   HERO
   ============================================================ */
.hero {
  min-height: 100svh; display: flex; flex-direction: column;
  justify-content: center; position: relative; padding-block: 8rem 3rem;
}
.hero .wrap { width: 100%; }
.prompt-line {
  font-family: var(--mono); font-size: 0.9rem; color: var(--muted);
  margin-bottom: 1.4rem; display: flex; gap: 0.6em;
}
.prompt-line .sym { color: var(--accent); }
.cursor {
  display: inline-block; width: 0.55em; height: 1.05em;
  background: var(--accent); margin-left: 0.2em;
  vertical-align: -0.15em; animation: blink 1.1s step-end infinite;
}
@keyframes blink { 50% { opacity: 0; } }
.hero-title { font-size: clamp(2.6rem, 9vw, 6.4rem); }
.line-mask { overflow: hidden; display: block; }
.line-inner { display: block; will-change: transform; }
.hero-foot {
  display: flex; flex-wrap: wrap; gap: 2.5rem;
  align-items: flex-end; justify-content: space-between; margin-top: 3rem;
}
.hero-lede { max-width: 38ch; color: var(--muted); font-size: 1.02rem; font-family: var(--body); }
.hero-lede strong { color: var(--ink); font-weight: 600; }
.scrollcue {
  font-family: var(--mono); font-size: 0.72rem; letter-spacing: 0.1em;
  color: var(--faint); display: inline-flex; align-items: center; gap: 0.7em;
}
.scrollcue .dot {
  width: 6px; height: 6px; border-radius: 1px; background: var(--accent);
  animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse { 0%, 100% { opacity: .3; } 50% { opacity: 1; } }

/* ============================================================
   TICKER
   ============================================================ */
.ticker {
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; padding-block: 1.05rem; margin-top: 4.5rem;
}
.ticker-track {
  display: flex; gap: 2.5rem; width: max-content;
  animation: marquee 26s linear infinite;
}
.ticker-item {
  font-family: var(--mono); font-size: 0.95rem; color: var(--muted);
  white-space: nowrap; display: flex; align-items: center; gap: 2.5rem;
}
.ticker-item::before { content: "["; color: var(--accent); }
.ticker-item::after  { content: "]"; color: var(--accent); }
@keyframes marquee { to { transform: translateX(-50%); } }

/* ============================================================
   SECTIONS
   ============================================================ */
.section { padding-block: clamp(4.5rem, 9vw, 8rem); position: relative; }
.section-head {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 2rem; flex-wrap: wrap; margin-bottom: 3.2rem;
  border-bottom: 1px solid var(--line); padding-bottom: 1.2rem;
}
.section-head h2 {
  font-size: clamp(1.6rem, 3.4vw, 2.3rem);
  font-family: var(--display); font-weight: 600; letter-spacing: -0.01em;
}
.section-idx { font-family: var(--mono); font-size: 0.78rem; color: var(--faint); }

/* ============================================================
   CHI SONO
   ============================================================ */
.about-grid {
  display: grid; grid-template-columns: 1.15fr 0.85fr;
  gap: clamp(2rem, 5vw, 5rem); align-items: start;
}
@media (max-width: 820px) { .about-grid { grid-template-columns: 1fr; } }
.about-lede {
  font-family: var(--display); font-size: clamp(1.2rem, 2.4vw, 1.55rem);
  font-weight: 600; line-height: 1.45; letter-spacing: -0.005em; margin-bottom: 1.6rem;
}
.about-body p { color: var(--muted); margin-bottom: 1.1rem; max-width: 54ch; }
.about-body p:last-child { margin-bottom: 0; }

/* Terminal block */
.terminal {
  border-radius: 6px; border: 1px solid var(--line-strong);
  background: var(--bg-elev); overflow: hidden;
  font-family: var(--mono); font-size: 0.8rem;
}
.terminal-bar {
  display: flex; gap: 0.4rem; padding: 0.7rem 0.9rem;
  border-bottom: 1px solid var(--line);
}
.terminal-bar span { width: 9px; height: 9px; border-radius: 50%; background: var(--line-strong); }
.terminal-body { padding: 1.1rem 1.15rem; color: var(--muted); line-height: 1.85; }
.terminal-body .k { color: var(--accent); }
.terminal-body .v { color: var(--ink); }

/* Facts counters */
.facts {
  margin-top: 2rem; border-top: 1px solid var(--line);
  display: grid; grid-template-columns: repeat(2, 1fr);
  gap: 1.5rem; padding-top: 1.8rem;
}
.fact .n {
  font-family: var(--display); font-size: clamp(1.8rem, 3.6vw, 2.4rem);
  color: var(--accent); line-height: 1; display: block; font-weight: 700;
}
.fact .l { font-size: 0.8rem; color: var(--muted); margin-top: 0.4rem; font-family: var(--mono); }

/* ============================================================
   TIMELINE (esperienza + formazione)
   ============================================================ */
.timeline { border-top: 1px solid var(--line); }
.tl-row {
  display: grid; grid-template-columns: 8.5rem 1fr auto;
  gap: clamp(1rem, 4vw, 3rem); padding-block: 1.7rem;
  border-bottom: 1px solid var(--line); align-items: baseline;
  transition: background .3s ease;
}
.tl-row:hover { background: color-mix(in srgb, var(--accent) 5%, transparent); }
.tl-year { font-family: var(--mono); font-size: 0.82rem; color: var(--accent); }
.tl-role { font-family: var(--display); font-size: 1.15rem; font-weight: 600; line-height: 1.3; }
.tl-org { color: var(--muted); font-size: 0.92rem; margin-top: 0.15rem; font-family: var(--mono); }
.tl-desc { color: var(--muted); max-width: 42ch; font-size: 0.95rem; }
@media (max-width: 720px) {
  .tl-row { grid-template-columns: 1fr; }
  .tl-desc { max-width: none; }
}

/* ============================================================
   EXPERIENCE TABS
   ============================================================ */
.tl-row.has-tabs {
  grid-template-columns: 8.5rem 1fr;
  align-items: start;
}
.tl-row.has-tabs .tl-tabs {
  grid-column: 2 / -1;
  max-width: none;
  margin-top: 1.15rem;
}
.tl-intro {
  font-size: 0.9rem; color: var(--muted);
  margin-bottom: 1.15rem; line-height: 1.62; max-width: 62ch;
}

.tl-tabwrap {
  display: grid;
  grid-template-columns: minmax(9.5rem, 13.5rem) 1fr;
  border: 1px solid var(--line-strong);
  border-radius: 6px;
  background: var(--bg-elev);
  overflow: hidden;
}

.tl-tabbar {
  display: flex; flex-direction: column;
  gap: 1px; padding: 0.4rem;
  border-right: 1px solid var(--line);
  background: color-mix(in srgb, var(--bg) 40%, transparent);
}
.tl-tab {
  display: flex; align-items: baseline; gap: 0.6em;
  width: 100%; text-align: left;
  font-family: var(--mono); font-size: 0.72rem; line-height: 1.35;
  padding: 0.55em 0.7em;
  border: none; background: transparent; color: var(--muted);
  cursor: pointer; border-radius: 4px;
  transition: color .2s ease, background .2s ease;
  position: relative;
}
.tl-tab .idx { color: var(--faint); font-size: 0.64rem; transition: color .2s ease; flex-shrink: 0; }
.tl-tab .lbl { overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.tl-tab::before {
  content: ""; position: absolute; left: 0; top: 50%;
  width: 2px; height: 0; background: var(--accent);
  transform: translateY(-50%); border-radius: 1px;
  transition: height .22s ease;
}
.tl-tab:hover { color: var(--ink); background: color-mix(in srgb, var(--ink) 4%, transparent); }
.tl-tab.active { color: var(--accent); background: color-mix(in srgb, var(--accent) 9%, transparent); }
.tl-tab.active .idx { color: var(--accent); }
.tl-tab.active::before { height: 1.05em; }

.tl-panels { padding: 1.2rem 1.35rem; position: relative; }
.tl-panel { display: none; }
.tl-panel.active { display: block; animation: tlFade .34s cubic-bezier(.22,.61,.36,1); }
.tl-panel-key {
  display: block; font-family: var(--mono); font-size: 0.68rem;
  color: var(--accent); margin-bottom: 0.55rem; opacity: 0.85;
}
.tl-panel-txt {
  display: block; font-size: 0.9rem; color: var(--ink);
  line-height: 1.68;
}
@keyframes tlFade {
  from { opacity: 0; transform: translateY(7px); }
  to   { opacity: 1; transform: none; }
}
@media (prefers-reduced-motion: reduce) {
  .tl-panel.active { animation: none; }
  .tl-tab::before { transition: none; }
}
@media (max-width: 720px) {
  .tl-row.has-tabs { grid-template-columns: 1fr; }
  .tl-row.has-tabs .tl-tabs { grid-column: 1; margin-top: 1rem; }
  .tl-tabwrap { grid-template-columns: 1fr; }
  .tl-tabbar {
    flex-direction: row; overflow-x: auto;
    border-right: none; border-bottom: 1px solid var(--line);
    scrollbar-width: none;
  }
  .tl-tabbar::-webkit-scrollbar { display: none; }
  .tl-tab { white-space: nowrap; flex-shrink: 0; }
  .tl-tab .lbl { white-space: nowrap; }
  .tl-tab::before {
    left: 50%; top: auto; bottom: 0; transform: translateX(-50%);
    width: 0; height: 2px;
  }
  .tl-tab.active::before { height: 2px; width: 1.4em; }
}

/* ============================================================
   PROGETTI
   ============================================================ */
.projects {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: clamp(1.5rem, 4vw, 3rem) clamp(1.5rem, 4vw, 3.5rem);
}
@media (max-width: 720px) { .projects { grid-template-columns: 1fr; } }
.project { display: block; position: relative; }
.project-media {
  aspect-ratio: 16 / 11; border-radius: 6px; overflow: hidden;
  border: 1px solid var(--line-strong); position: relative; background: var(--bg-elev);
}
.project-inner {
  position: absolute; inset: -14% 0;
  background-size: cover; background-position: center;
  will-change: transform; opacity: 0.9;
}
/* Placeholder patterns when no cover image */
.project-placeholder-1 {
  background: repeating-linear-gradient(135deg, color-mix(in srgb, var(--accent) 12%, transparent) 0 2px, transparent 2px 22px), var(--bg-elev);
}
.project-placeholder-2 {
  background: repeating-linear-gradient(45deg, color-mix(in srgb, var(--accent) 10%, transparent) 0 1px, transparent 1px 18px), var(--bg-elev);
}
.project-placeholder-3 {
  background: radial-gradient(1px 1px at 20px 20px, color-mix(in srgb, var(--accent) 40%, transparent) 1px, transparent 0), var(--bg-elev);
  background-size: 22px 22px;
}
.project-placeholder-4 {
  background: repeating-linear-gradient(90deg, color-mix(in srgb, var(--accent) 10%, transparent) 0 1px, transparent 1px 26px), var(--bg-elev);
}
.project-media::after {
  content: "↗"; position: absolute; top: 0.9rem; right: 0.9rem;
  width: 2.2rem; height: 2.2rem; display: grid; place-items: center;
  border-radius: 4px; background: var(--bg); border: 1px solid var(--line-strong);
  color: var(--ink); font-size: 1rem;
  transform: translateY(-6px); opacity: 0;
  transition: opacity .3s, transform .3s;
}
.project:hover .project-media::after { opacity: 1; transform: translateY(0); }
.project-meta {
  display: flex; align-items: baseline; justify-content: space-between;
  gap: 1rem; margin-top: 1.1rem;
}
.project-meta h3 { font-family: var(--display); font-size: 1.15rem; font-weight: 600; }
.project-cat { color: var(--muted); font-size: 0.9rem; margin-top: 0.15rem; font-family: var(--mono); }
.tags { margin-top: 0.85rem; display: flex; flex-wrap: wrap; gap: 0.5rem; }
.tag {
  font-family: var(--mono); font-size: 0.7rem; color: var(--muted);
  border: 1px solid var(--line); border-radius: 4px; padding: 0.3em 0.7em;
}

/* ============================================================
   COMPETENZE
   ============================================================ */
.skills-grid {
  display: grid; grid-template-columns: repeat(3, 1fr);
  gap: 1px; background: var(--line); border: 1px solid var(--line);
}
@media (max-width: 720px) { .skills-grid { grid-template-columns: 1fr; } }
.skill-col { background: var(--bg); padding: 1.8rem 1.7rem; }
.skill-col h4 { font-family: var(--mono); font-size: 0.75rem; color: var(--accent); margin-bottom: 1.2rem; }
.skill-col ul { list-style: none; }
.skill-col li {
  padding-block: 0.6rem; border-bottom: 1px solid var(--line);
  color: var(--ink); display: flex; justify-content: space-between;
  align-items: center; font-size: 0.98rem;
}
.skill-col li:last-child { border-bottom: 0; }
.skill-col li span { font-family: var(--mono); font-size: 0.72rem; color: var(--accent); }

/* ============================================================
   CONTATTI
   ============================================================ */
.contact { border-top: 1px solid var(--line); }
.contact-grid {
  display: grid; grid-template-columns: 1fr;
  gap: clamp(1.6rem, 4vw, 2.4rem); align-items: start;
}
.contact-lede {
  font-family: var(--display); font-size: clamp(1.45rem, 3.6vw, 2.1rem);
  font-weight: 700; line-height: 1.2; letter-spacing: -0.01em;
}
.contact-lede a {
  color: var(--accent); text-decoration: underline;
  text-underline-offset: 5px; text-decoration-thickness: 1px;
}
.contact-sub { color: var(--muted); margin-top: 1.4rem; max-width: 40ch; }
.form { display: grid; gap: 1.05rem; max-width: 620px; }
.field { display: grid; gap: 0.5rem; }
.field label { font-family: var(--mono); font-size: 0.72rem; color: var(--muted); }
.field label::before { content: "> "; }
.field input, .field textarea {
  background: var(--bg-elev); border: 1px solid var(--line);
  border-radius: 5px; padding: 0.95rem 1.05rem;
  color: var(--ink); font-family: var(--body); font-size: 1.02rem;
  transition: border-color .25s, background .25s;
  width: 100%;
}
.field input:focus, .field textarea:focus { border-color: var(--accent); outline: none; }
.field textarea { resize: vertical; min-height: 140px; font-family: var(--mono); }
.btn {
  justify-self: start; margin-top: 0.3rem;
  font-family: var(--mono); font-weight: 600; font-size: 0.92rem;
  background: var(--accent); color: var(--on-accent);
  border: none; border-radius: 5px; padding: 0.85rem 1.7rem;
  cursor: pointer; transition: transform .2s, background .25s;
}
.btn:hover { transform: translateY(-2px); background: var(--accent-soft); }
.form-note { font-family: var(--mono); font-size: 0.7rem; color: var(--faint); margin-top: 0.2rem; }

/* Django form error styling */
.errorlist { list-style: none; }
.errorlist li { font-family: var(--mono); font-size: 0.72rem; color: #e05555; margin-top: 0.3rem; }
/* Toast notifications — floating, out of flow, no overlap with the fixed nav */
.toast-wrap {
  position: fixed; top: 5.5rem; right: var(--gutter); z-index: 60;
  display: flex; flex-direction: column; gap: 0.6rem;
  width: min(360px, calc(100vw - var(--gutter) * 2));
  pointer-events: none;
}
.toast {
  pointer-events: auto;
  display: flex; align-items: flex-start; gap: 0.7rem;
  padding: 0.85rem 0.95rem;
  font-family: var(--mono); font-size: 0.82rem; line-height: 1.5;
  color: var(--ink);
  background: color-mix(in srgb, var(--bg-elev) 88%, transparent);
  backdrop-filter: blur(14px); -webkit-backdrop-filter: blur(14px);
  border: 1px solid var(--line-strong);
  border-left: 2px solid var(--accent);
  border-radius: 10px;
  box-shadow: 0 18px 40px -14px rgba(0, 0, 0, 0.55);
  opacity: 0; transform: translateY(-8px) scale(0.98);
  transition: opacity 0.4s ease, transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}
.toast.show { opacity: 1; transform: none; }
.toast.leaving { opacity: 0; transform: translateY(-6px) scale(0.98); }
.toast-dot {
  flex: none; width: 7px; height: 7px; border-radius: 50%;
  margin-top: 0.45rem; background: var(--accent);
  animation: toastPulse 2s ease-out infinite;
}
.toast-msg { flex: 1; }
.toast-close {
  flex: none; display: grid; place-items: center;
  width: 22px; height: 22px; margin: -0.1rem -0.2rem 0 0;
  color: var(--muted); background: none; border: 0; cursor: pointer;
  border-radius: 6px; transition: color 0.2s, background 0.2s;
}
.toast-close:hover { color: var(--ink); background: color-mix(in srgb, var(--ink) 8%, transparent); }
.toast.error { border-left-color: #e05555; }
.toast.error .toast-dot { background: #e05555; animation: none; }
@keyframes toastPulse {
  0%   { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 55%, transparent); }
  70%  { box-shadow: 0 0 0 7px color-mix(in srgb, var(--accent) 0%, transparent); }
  100% { box-shadow: 0 0 0 0 color-mix(in srgb, var(--accent) 0%, transparent); }
}
@media (prefers-reduced-motion: reduce) {
  .toast { transition: opacity 0.2s ease; transform: none; }
  .toast.show, .toast.leaving { transform: none; }
  .toast-dot { animation: none; }
}
@media (max-width: 640px) {
  .toast-wrap { top: auto; bottom: var(--gutter); left: var(--gutter); right: var(--gutter); width: auto; }
}

/* ============================================================
   FOOTER
   ============================================================ */
.footer { border-top: 1px solid var(--line); padding-block: 2.6rem; margin-top: 2rem; }
.footer .wrap { display: flex; flex-wrap: wrap; gap: 1.5rem; align-items: center; justify-content: space-between; }
.socials { display: flex; gap: 1.5rem; }
.socials a { font-size: 0.9rem; color: var(--muted); font-family: var(--mono); transition: color .25s; }
.socials a:hover { color: var(--accent); }
.copy { font-family: var(--mono); font-size: 0.72rem; color: var(--faint); }
.foot-right { display: flex; flex-direction: column; align-items: flex-end; gap: 0.35rem; text-align: right; }
.foot-note { font-family: var(--mono); font-size: 0.72rem; color: var(--faint); }
@media (max-width: 560px) { .foot-right { align-items: flex-start; text-align: left; } }

/* ============================================================
   PROJECT DETAIL PAGE
   ============================================================ */
.detail-hero { padding-block: 8rem 4rem; }
.detail-cover {
  width: 100%; aspect-ratio: 16 / 9; border-radius: 6px;
  overflow: hidden; border: 1px solid var(--line-strong);
  margin-block: 3rem; background: var(--bg-elev);
}
.detail-cover img { width: 100%; height: 100%; object-fit: cover; }
.detail-meta { display: flex; flex-wrap: wrap; gap: 2.5rem; align-items: start; }
.detail-body { flex: 1; min-width: 0; max-width: 60ch; }
.detail-body p { color: var(--muted); margin-bottom: 1.2rem; }
.detail-sidebar { width: 260px; flex-shrink: 0; }
@media (max-width: 820px) { .detail-sidebar { width: 100%; } }
.detail-links { display: flex; gap: 0.9rem; flex-wrap: wrap; margin-top: 2rem; }
.btn-outline {
  font-family: var(--mono); font-size: 0.85rem;
  border: 1px solid var(--line-strong); border-radius: 5px;
  padding: 0.65rem 1.2rem; color: var(--ink); background: transparent;
  transition: border-color .25s, color .25s;
}
.btn-outline:hover { border-color: var(--accent); color: var(--accent); }
.gallery { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; margin-top: 3rem; }
@media (max-width: 640px) { .gallery { grid-template-columns: 1fr; } }
.gallery img { border-radius: 6px; border: 1px solid var(--line-strong); }

/* ============================================================
   REDUCED MOTION
   ============================================================ */
@media (prefers-reduced-motion: reduce) {
  .ticker-track, .scrollcue .dot, .cursor { animation: none; }
  * { scroll-behavior: auto !important; }
}
