/* ============================================================
   Kurt Laurence P. Carcueva — Portfolio
   Light editorial / studio system
   ============================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

:root {
  --paper:    #e3d9cb;
  --paper-2:  #d8ccbb;
  --ink:      #1b1813;
  --ink-2:    #524c41;
  --ink-3:    #645d50;
  --line:     rgba(27,24,19,0.14);
  --line-2:   rgba(27,24,19,0.08);
  --accent:   #b23a2e;
  --accent-rgb: 178, 58, 46;

  --ff-display: 'Cormorant Garamond', Georgia, serif;
  --ff-sans:    'Hanken Grotesk', system-ui, sans-serif;
  --ff-mono:    'JetBrains Mono', ui-monospace, monospace;

  --pad: clamp(20px, 5vw, 80px);
  --maxw: 1400px;
}

html { scroll-behavior: smooth; }
::selection { background: var(--accent); color: var(--paper); }

body {
  background: var(--paper);
  color: var(--ink);
  font-family: var(--ff-sans);
  font-weight: 400;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
/* faint paper grain */
body::before {
  content: ''; position: fixed; inset: 0; z-index: 0; pointer-events: none;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
  opacity: 0.04; mix-blend-mode: multiply;
}

a { color: inherit; text-decoration: none; }
em { font-style: italic; }

.mono {
  font-family: var(--ff-mono); font-size: 0.72rem;
  letter-spacing: 0.14em; text-transform: uppercase;
}

/* ---------- Scroll progress ---------- */
.progress {
  position: fixed; top: 0; left: 0; height: 2px; width: 0;
  background: var(--accent); z-index: 300; transition: width 0.1s linear;
}

/* ============================= HEADER ============================= */
#masthead {
  position: fixed; top: 0; left: 0; right: 0; z-index: 200;
  display: flex; align-items: center; justify-content: space-between;
  gap: 24px;
  padding: 18px var(--pad);
  border-bottom: 1px solid transparent;
  transition: background 0.35s, border-color 0.35s, padding 0.35s;
}
#masthead.scrolled {
  background: rgba(227,217,203,0.82);
  backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--line);
  padding-top: 13px; padding-bottom: 13px;
}
.brand {
  font-family: var(--ff-display); font-size: 1.35rem;
  font-weight: 500; letter-spacing: 0.01em; white-space: nowrap;
}
.nav { display: flex; gap: 30px; }
.nav a {
  position: relative;
  font-size: 0.82rem; font-weight: 500; color: var(--ink-2);
  letter-spacing: 0.01em; transition: color 0.25s;
}
.nav a span {
  font-family: var(--ff-mono); font-size: 0.62rem;
  color: var(--ink-3); margin-right: 4px; transition: color 0.25s;
}
.nav a::after {
  content: ''; position: absolute; left: 0; bottom: -5px; height: 1px; width: 100%;
  background: var(--accent); transform: scaleX(0); transform-origin: left;
  transition: transform 0.3s ease;
}
.nav a:hover, .nav a.active { color: var(--ink); }
.nav a.active span { color: var(--accent); }
.nav a:hover::after, .nav a.active::after { transform: scaleX(1); }

.status {
  display: flex; align-items: center; gap: 8px; white-space: nowrap;
  font-family: var(--ff-mono); font-size: 0.66rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2);
}
.status i {
  width: 7px; height: 7px; border-radius: 50%; background: var(--accent);
  box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0.5);
  animation: pulse 2.4s infinite;
}
@keyframes pulse {
  0%   { box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0.5); }
  70%  { box-shadow: 0 0 0 7px rgba(var(--accent-rgb),0); }
  100% { box-shadow: 0 0 0 0 rgba(var(--accent-rgb),0); }
}

.burger {
  display: none; flex-direction: column; gap: 6px;
  background: none; border: none; cursor: pointer; padding: 4px;
}
.burger span { display: block; width: 26px; height: 1.6px; background: var(--ink); transition: 0.3s; }
.burger.open span:nth-child(1) { transform: translateY(3.8px) rotate(45deg); }
.burger.open span:nth-child(2) { transform: translateY(-3.8px) rotate(-45deg); }

.drawer {
  position: fixed; inset: 0; z-index: 150; background: var(--paper);
  display: none; flex-direction: column; align-items: center; justify-content: center; gap: 8px;
}
.drawer.open { display: flex; }
.drawer a {
  font-family: var(--ff-display); font-size: 3rem; font-weight: 500;
  transition: color 0.2s;
}
.drawer a:hover { color: var(--accent); }

/* ============================= HERO ============================= */
.hero {
  position: relative; z-index: 1;
  min-height: 100vh; display: flex; flex-direction: column;
  padding: 120px var(--pad) 0;
}
.hero-top {
  display: flex; justify-content: space-between;
  font-family: var(--ff-mono); font-size: 0.7rem;
  letter-spacing: 0.12em; text-transform: uppercase; color: var(--ink-3);
  padding-bottom: 24px; border-bottom: 1px solid var(--line);
}
.hero-body { flex: 1; display: flex; flex-direction: column; justify-content: center; padding: clamp(30px, 6vh, 70px) 0; }
.kicker {
  font-family: var(--ff-mono); font-size: clamp(0.7rem, 1.3vw, 0.85rem);
  letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent);
  margin-bottom: clamp(20px, 4vh, 40px);
}
.display {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(3.6rem, 14vw, 13rem);
  line-height: 0.86; letter-spacing: -0.02em;
}
.display .line { display: block; overflow: hidden; }
.display em { font-style: italic; color: var(--accent); }
.hero-meta {
  margin-top: clamp(28px, 5vh, 54px);
  display: flex; flex-wrap: wrap; align-items: flex-end;
  justify-content: space-between; gap: 28px;
}
.hero-meta p {
  max-width: 460px; font-size: clamp(1rem, 1.4vw, 1.18rem);
  color: var(--ink-2); line-height: 1.6;
}
.meta-link {
  font-family: var(--ff-mono); font-size: 0.78rem; letter-spacing: 0.08em;
  text-transform: uppercase; white-space: nowrap;
  border-bottom: 1px solid var(--ink); padding-bottom: 3px; transition: color 0.25s, border-color 0.25s;
}
.meta-link i { font-style: normal; display: inline-block; transition: transform 0.25s; }
.meta-link:hover { color: var(--accent); border-color: var(--accent); }
.meta-link:hover i { transform: translate(3px, 3px); }

/* Hero entrance — clip + rise, plays regardless of motion prefs */
.hero .line > span { display: inline-block; transform: translateY(110%); }
.js .hero .line > span { animation: rise 0.95s cubic-bezier(.16,1,.3,1) forwards; }
.js .hero .kicker.line { transform: translateY(20px); opacity: 0; animation: fade 0.8s ease 0.1s forwards; }
.js .hero .hero-meta.line { transform: translateY(20px); opacity: 0; animation: fade 0.8s ease 0.9s forwards; }
.display .line:nth-child(1) > span { animation-delay: 0.18s; }
.display .line:nth-child(2) > span { animation-delay: 0.30s; }
.display .line:nth-child(3) > span { animation-delay: 0.42s; }
@keyframes rise { to { transform: translateY(0); } }
@keyframes fade { to { transform: translateY(0); opacity: 1; } }

/* ---------- Marquee (always animates) ---------- */
.marquee {
  margin: 0 calc(var(--pad) * -1); margin-top: auto;
  border-top: 1px solid var(--line); border-bottom: 1px solid var(--line);
  overflow: hidden; white-space: nowrap; padding: 20px 0;
}
.marquee-track {
  display: inline-flex; align-items: center; gap: 26px;
  font-family: var(--ff-display); font-size: clamp(1.4rem, 3vw, 2.4rem);
  font-style: italic; will-change: transform;
  animation: scrollx 32s linear infinite;
}
.marquee-track span { font-style: italic; }
.marquee-track b { color: var(--accent); font-style: normal; }
@keyframes scrollx { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ============================= SECTION SHELL ============================= */
.block {
  position: relative; z-index: 1;
  padding: clamp(70px, 11vh, 150px) var(--pad);
  border-top: 1px solid var(--line);
  max-width: var(--maxw); margin: 0 auto;
}
.block-head {
  display: flex; align-items: baseline; gap: 20px;
  margin-bottom: clamp(40px, 7vh, 80px);
}
.idx {
  font-family: var(--ff-mono); font-size: 0.78rem;
  letter-spacing: 0.12em; color: var(--accent);
}
.block-title {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(2.2rem, 5vw, 4.2rem); line-height: 1; letter-spacing: -0.01em;
}

/* ---------- Profile ---------- */
.profile-grid {
  display: grid; grid-template-columns: 0.85fr 1.4fr; gap: clamp(30px, 6vw, 90px);
  align-items: start;
}
.facts { display: flex; flex-direction: column; }
.facts > div {
  display: flex; justify-content: space-between; gap: 16px;
  padding: 14px 0; border-bottom: 1px solid var(--line-2);
}
.facts dt {
  font-family: var(--ff-mono); font-size: 0.68rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-3);
}
.facts dd { text-align: right; font-weight: 500; }
.profile-body p {
  font-family: var(--ff-display); font-size: clamp(1.3rem, 2.4vw, 1.9rem);
  line-height: 1.5; color: var(--ink); margin-bottom: 28px; font-weight: 400;
}
.profile-body p:last-child {
  font-family: var(--ff-sans); font-size: clamp(1rem, 1.3vw, 1.1rem);
  line-height: 1.75; color: var(--ink-2); margin-bottom: 0;
}
.profile-body em { color: var(--accent); font-style: italic; }
.drop::first-letter {
  float: left; font-family: var(--ff-display); font-weight: 600;
  font-size: 4.6em; line-height: 0.72; padding: 6px 14px 0 0; color: var(--accent);
}

/* ---------- Skills ---------- */
.skills-grid {
  display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px;
  background: var(--line); border: 1px solid var(--line);
}
.skill-col { background: var(--paper); padding: 32px 30px; transition: background 0.3s; }
.skill-col:hover { background: var(--paper-2); }
.skill-col h3 {
  font-family: var(--ff-mono); font-size: 0.7rem;
  letter-spacing: 0.14em; text-transform: uppercase; color: var(--accent);
  padding-bottom: 16px; margin-bottom: 18px; border-bottom: 1px solid var(--line);
}
.skill-col ul { list-style: none; }
.skill-col li {
  font-family: var(--ff-display); font-size: 1.5rem; font-weight: 400;
  line-height: 1.55; color: var(--ink); transition: color 0.2s, padding-left 0.25s;
  position: relative; cursor: default;
}
.skill-col li::before {
  content: '→'; position: absolute; left: -22px; opacity: 0;
  color: var(--accent); transition: opacity 0.25s;
}
.skill-col li:hover { color: var(--accent); padding-left: 6px; }
.skill-col li:hover::before { opacity: 1; }

/* ---------- Work / Case studies ---------- */
.case {
  display: grid; grid-template-columns: 1fr 1fr; gap: clamp(30px, 5vw, 70px);
  align-items: center; padding: clamp(40px, 6vh, 70px) 0;
  border-top: 1px solid var(--line);
}
.case:first-of-type { border-top: 0; }
.case-no {
  font-family: var(--ff-mono); font-size: 0.82rem; color: var(--ink-3);
  letter-spacing: 0.1em; margin-bottom: 16px;
}
.case-title {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(2.6rem, 6vw, 4.6rem); line-height: 0.95; letter-spacing: -0.01em;
}
.case-title em { color: var(--accent); font-style: italic; }
.case-meta { display: flex; gap: 18px; margin: 18px 0 22px; flex-wrap: wrap; }
.case-meta span {
  font-family: var(--ff-mono); font-size: 0.66rem;
  letter-spacing: 0.1em; text-transform: uppercase; color: var(--ink-2);
  padding: 5px 12px; border: 1px solid var(--line);
}
.case-desc { max-width: 480px; color: var(--ink-2); font-size: 1.02rem; line-height: 1.7; margin-bottom: 24px; }
.stack { list-style: none; display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }
.stack li {
  font-family: var(--ff-mono); font-size: 0.66rem;
  letter-spacing: 0.08em; text-transform: uppercase; color: var(--accent);
  padding: 5px 11px; border: 1px solid rgba(var(--accent-rgb),0.4); border-radius: 1px;
}
.case-links { display: flex; gap: 26px; }
.link-arrow {
  font-family: var(--ff-mono); font-size: 0.76rem; letter-spacing: 0.06em;
  text-transform: uppercase; border-bottom: 1px solid var(--ink);
  padding-bottom: 3px; transition: color 0.25s, border-color 0.25s;
}
.link-arrow i { font-style: normal; display: inline-block; transition: transform 0.25s; }
.link-arrow:hover { color: var(--accent); border-color: var(--accent); }
.link-arrow:hover i { transform: translate(2px, -2px); }
.link-soon {
  font-family: var(--ff-mono); font-size: 0.76rem; letter-spacing: 0.06em;
  text-transform: uppercase; color: var(--ink-3); padding-bottom: 3px;
  border-bottom: 1px dashed var(--line); cursor: default;
}
.case-note {
  margin-top: 18px; font-size: 0.82rem; color: var(--ink-2);
}
.case-note code {
  font-family: var(--ff-mono); font-size: 0.76rem;
  background: rgba(27,24,19,0.07); border: 1px solid var(--line);
  padding: 2px 7px; border-radius: 3px; color: var(--ink);
}

/* Visible keyboard focus for accessibility */
:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px; border-radius: 2px;
}

.case-visual {
  display: flex; align-items: center; justify-content: center;
  animation: floaty 5.5s ease-in-out infinite; will-change: transform;
}
.case:nth-of-type(2) .case-visual { animation-delay: -2.75s; }
@keyframes floaty { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* browser mock */
.browser {
  width: 100%; max-width: 480px; background: var(--ink); border-radius: 8px;
  padding: 14px; box-shadow: 0 40px 80px -50px rgba(27,24,19,0.7);
  transform: perspective(1100px) rotateY(7deg) rotateX(3deg);
  transition: transform 0.5s ease; will-change: transform;
}
.browser-bar { display: flex; gap: 7px; padding: 4px 4px 14px; }
.browser-bar i { width: 11px; height: 11px; border-radius: 50%; background: #4a443a; }
.browser-bar i:first-child { background: var(--accent); }
.browser-screen { background: #14110d; border-radius: 4px; padding: 26px; }
.ln { height: 9px; background: rgba(255,255,255,0.08); border-radius: 4px; margin-bottom: 11px; }
.ln.accent { width: 42%; background: rgba(var(--accent-rgb),0.6); margin-bottom: 18px; }
.ln.s { width: 62%; } .ln.m { width: 82%; }
.mini { display: grid; grid-template-columns: 1fr 1fr; gap: 11px; margin-top: 22px; }
.mini span { height: 56px; border-radius: 4px; background: rgba(255,255,255,0.05); border: 1px solid rgba(var(--accent-rgb),0.18); }

/* phone mock */
.phone {
  width: 244px; height: 508px; background: #14110d; border-radius: 40px;
  padding: 14px 12px; position: relative;
  border: 1px solid rgba(27,24,19,0.2);
  box-shadow: 0 40px 80px -45px rgba(27,24,19,0.7), inset 0 0 0 6px #0d0b08;
  transform: perspective(1100px) rotateY(-8deg) rotateX(3deg);
  transition: transform 0.5s ease; will-change: transform;
}
.phone-notch { position: absolute; top: 15px; left: 50%; transform: translateX(-50%); width: 84px; height: 17px; background: #0d0b08; border-radius: 0 0 13px 13px; z-index: 2; }
.phone-screen { width: 100%; height: 100%; background: linear-gradient(170deg, #1d1810, #110e0a); border-radius: 24px; padding: 28px 17px 17px; position: relative; overflow: hidden; color: #f5f2ea; }
.ps-bar { display: flex; justify-content: space-between; font-family: var(--ff-mono); font-size: 0.6rem; color: #b0a896; margin-bottom: 18px; }
.ps-head b { display: block; font-family: var(--ff-display); font-size: 1.5rem; font-weight: 500; line-height: 1; }
.ps-head small { font-family: var(--ff-mono); font-size: 0.58rem; letter-spacing: 0.1em; text-transform: uppercase; color: #8a8275; }
.ps-balance { background: rgba(var(--accent-rgb),0.16); border: 1px solid rgba(var(--accent-rgb),0.4); border-radius: 14px; padding: 14px 16px; margin: 16px 0; }
.ps-balance small { display: block; font-family: var(--ff-mono); font-size: 0.55rem; letter-spacing: 0.16em; color: #e9a08f; margin-bottom: 4px; }
.ps-balance b { font-family: var(--ff-display); font-size: 2.1rem; font-weight: 500; }
.ps-balance b span { font-size: 1rem; color: #8a8275; }
.ps-rows { display: flex; flex-direction: column; gap: 10px; }
.ps-row { display: flex; align-items: center; gap: 10px; background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.07); border-radius: 12px; padding: 9px 11px; }
.ps-row > i { flex-shrink: 0; width: 28px; height: 28px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-style: normal; font-weight: 700; font-size: 0.7rem; background: var(--accent); color: #fff; }
.ps-row > i.a2 { background: #c98a5a; } .ps-row > i.a3 { background: #6b8a72; }
.ps-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.ps-lines span { height: 6px; border-radius: 3px; background: rgba(255,255,255,0.1); }
.ps-lines span.s { width: 45%; } .ps-lines span.m { width: 70%; }
.ps-row em { font-family: var(--ff-mono); font-size: 0.66rem; font-style: normal; }
.ps-row em.pos { color: #e9a08f; } .ps-row em.neg { color: #c98a5a; }
.ps-fab { position: absolute; bottom: 16px; right: 16px; width: 42px; height: 42px; border-radius: 50%; background: var(--accent); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 1.4rem; box-shadow: 0 10px 24px rgba(var(--accent-rgb),0.5); }

/* real screenshot carousel (phone + browser) */
.phone-screen.shots { padding: 0; }
.browser-screen.shots { padding: 0; position: relative; overflow: hidden; aspect-ratio: 19 / 10; }
.shots img {
  position: absolute; inset: 0; width: 100%; height: 100%;
  object-fit: cover; object-position: top center;
  opacity: 0; animation: shots 18s infinite; will-change: opacity;
}
.shots img:nth-child(1) { animation-delay: 0s; }
.shots img:nth-child(2) { animation-delay: 4.5s; }
.shots img:nth-child(3) { animation-delay: 9s; }
.shots img:nth-child(4) { animation-delay: 13.5s; }
@keyframes shots {
  0%   { opacity: 0; }
  3%   { opacity: 1; }
  22%  { opacity: 1; }
  27%  { opacity: 0; }
  100% { opacity: 0; }
}

/* ---------- Journey ---------- */
.track { list-style: none; counter-reset: t; }
.track li {
  display: grid; grid-template-columns: 160px 1fr; gap: clamp(20px, 4vw, 60px);
  padding: clamp(26px, 4vh, 40px) 0; border-top: 1px solid var(--line);
  align-items: baseline; transition: padding-left 0.3s;
}
.track li:hover { padding-left: 10px; }
.track-year { font-family: var(--ff-mono); font-size: 0.8rem; letter-spacing: 0.08em; color: var(--accent); }
.track-main h3 { font-family: var(--ff-display); font-size: clamp(1.5rem, 3vw, 2.3rem); font-weight: 500; margin-bottom: 8px; }
.track-main p { color: var(--ink-2); max-width: 620px; font-size: 1rem; }

/* ---------- Contact ---------- */
.contact { text-align: center; border-bottom: 1px solid var(--line); }
.contact .idx { display: block; margin-bottom: 28px; }
.contact-line {
  font-family: var(--ff-display); font-weight: 500;
  font-size: clamp(3rem, 11vw, 9rem); line-height: 0.95; letter-spacing: -0.02em;
}
.contact-line em { color: var(--accent); font-style: italic; }
.contact-sub { max-width: 460px; margin: 32px auto 44px; color: var(--ink-2); font-size: 1.05rem; line-height: 1.7; }
.email-btn {
  font-family: var(--ff-mono); font-size: clamp(0.9rem, 2.2vw, 1.3rem);
  letter-spacing: 0.04em; background: var(--ink); color: var(--paper);
  border: none; cursor: pointer; padding: 20px 40px; border-radius: 2px;
  transition: background 0.25s, transform 0.25s; display: inline-flex; gap: 12px; align-items: center;
}
.email-btn i { font-style: normal; opacity: 0.7; }
.email-btn:hover { background: var(--accent); transform: translateY(-2px); }
.contact-links { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; margin-top: 44px; }
.contact-links a {
  font-family: var(--ff-mono); font-size: 0.76rem; letter-spacing: 0.08em;
  text-transform: uppercase; color: var(--ink-2); transition: color 0.2s;
}
.contact-links a:hover { color: var(--accent); }

/* ---------- Footer ---------- */
footer {
  position: relative; z-index: 1;
  display: flex; justify-content: space-between; flex-wrap: wrap; gap: 12px;
  padding: 32px var(--pad);
  font-family: var(--ff-mono); font-size: 0.68rem;
  letter-spacing: 0.06em; color: var(--ink-3);
}

/* ---------- Reveal ---------- */
.reveal { opacity: 0; transform: translateY(34px); transition: opacity 0.8s cubic-bezier(.16,1,.3,1), transform 0.8s cubic-bezier(.16,1,.3,1); }
.reveal.visible { opacity: 1; transform: none; }
.reveal-1 { transition-delay: 0.1s; }
.reveal-2 { transition-delay: 0.2s; }
html:not(.js) .reveal { opacity: 1; transform: none; }

/* ---------- Toast ---------- */
.toast {
  position: fixed; bottom: 32px; left: 50%; transform: translate(-50%, 16px);
  background: var(--ink); color: var(--paper);
  font-family: var(--ff-mono); font-size: 0.74rem; letter-spacing: 0.06em;
  padding: 13px 26px; border-radius: 2px; opacity: 0; pointer-events: none;
  transition: opacity 0.25s, transform 0.25s; z-index: 9999;
}
.toast.show { opacity: 1; transform: translate(-50%, 0); }

/* ============================= RESPONSIVE ============================= */
@media (max-width: 1000px) {
  .nav, .status { display: none; }
  .burger { display: flex; }
  .profile-grid { grid-template-columns: 1fr; gap: 40px; }
  .skills-grid { grid-template-columns: repeat(2, 1fr); }
  .case { grid-template-columns: 1fr; gap: 40px; }
  .case-visual { order: -1; }
  .case-meta { margin-top: 0; }
}
@media (max-width: 600px) {
  .skills-grid { grid-template-columns: 1fr; }
  .track li { grid-template-columns: 1fr; gap: 8px; }
  .hero-top { font-size: 0.6rem; }
  .case-links { flex-direction: column; gap: 14px; align-items: flex-start; }
  footer { flex-direction: column; }
}

/* ---------- Reduced motion: keep gentle fades + marquee, drop tilt/parallax ---------- */
@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .status i { animation: none; }
}