/* ============================================================
   Kerem Percin — terminal portfolio
   ============================================================ */

:root {
  --bg:            #0a0a0a;
  --bg-elev:       #0e1110;
  --bg-bar:        #121615;
  --bg-inset:      #080a09;

  --green:         #00ff41;
  --green-dim:     #14b83a;
  --green-soft:    #7ee89a;
  --text:          #c9f5d4;
  --muted:         #6f8a78;
  --muted-2:       #4d6455;

  --border:        #1c2a20;
  --border-hi:     #2f4a37;

  --red:           #ff5f56;
  --yellow:        #ffbd2e;
  --dotgreen:      #27c93f;

  --mono: "JetBrains Mono", "Fira Code", ui-monospace, SFMono-Regular, Menlo, Consolas, monospace;

  --radius: 6px;
  --max: 1140px;
  --nav-h: 58px;
}

*, *::before, *::after { box-sizing: border-box; }

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--nav-h) + 20px); }

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font-family: var(--mono);
  font-size: 15px;
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

body.no-scroll { overflow: hidden; }

h1, h2, h3, h4, p, ul, ol, pre, figure { margin: 0; }
ul, ol { padding: 0; list-style: none; }
a { color: var(--green); text-decoration: none; }
a:hover { color: #7dffa4; }
strong { color: var(--green); font-weight: 500; }
button { font-family: inherit; }

:focus-visible {
  outline: 2px solid var(--green);
  outline-offset: 3px;
  border-radius: 3px;
}

.skip-link {
  position: fixed; top: -60px; left: 12px; z-index: 200;
  background: var(--bg-bar); border: 1px solid var(--green);
  padding: 8px 14px; transition: top .2s;
}
.skip-link:focus { top: 12px; }

/* ---------- CRT overlays ---------- */
.scanlines {
  position: fixed; inset: 0; z-index: 90; pointer-events: none;
  background: repeating-linear-gradient(
    to bottom,
    rgba(0, 255, 65, .045) 0px,
    rgba(0, 255, 65, .045) 1px,
    transparent 1px,
    transparent 3px
  );
  mix-blend-mode: screen;
  opacity: .55;
}
.vignette {
  position: fixed; inset: 0; z-index: 89; pointer-events: none;
  background: radial-gradient(ellipse at 50% 40%, transparent 55%, rgba(0,0,0,.65) 100%);
}

/* ---------- layout ---------- */
.container { width: 100%; max-width: var(--max); margin: 0 auto; padding: 0 22px; }

.section { padding: 92px 0; position: relative; }
.section + .section { border-top: 1px dashed var(--border); }
#hero.section { padding-top: calc(var(--nav-h) + 56px); padding-bottom: 64px; min-height: 100vh; display: flex; align-items: center; }

.section-title {
  font-size: clamp(1.35rem, 3vw, 1.9rem);
  font-weight: 700;
  letter-spacing: -.5px;
  color: var(--green);
  margin-bottom: 8px;
  display: flex; align-items: center; gap: 10px; flex-wrap: wrap;
}
.section-title .hash { color: var(--muted-2); font-weight: 400; }
.section-sub { color: var(--muted); font-size: .88rem; margin-bottom: 24px; }
.section-title + .grid-2,
.section-title + .window { margin-top: 26px; }

.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; align-items: start; }

/* ---------- terminal window ---------- */
.window {
  background: var(--bg-elev);
  border: 1px solid var(--border-hi);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 0 0 1px rgba(0,0,0,.6), 0 18px 40px -24px rgba(0,255,65,.25);
}
.window-bar {
  display: flex; align-items: center; gap: 12px;
  padding: 9px 13px;
  background: var(--bg-bar);
  border-bottom: 1px solid var(--border-hi);
  font-size: .78rem;
}
.dots { display: inline-flex; gap: 7px; flex: 0 0 auto; }
.dot { width: 11px; height: 11px; border-radius: 50%; display: block; }
.dot.red { background: var(--red); }
.dot.yellow { background: var(--yellow); }
.dot.green { background: var(--dotgreen); }
.window-title {
  color: var(--muted); flex: 1; text-align: center;
  white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
}
.window-meta { color: var(--muted-2); font-size: .72rem; display: none; }
@media (min-width: 720px) { .window-meta { display: inline; } }
.window-close {
  background: none; border: 1px solid transparent; color: var(--muted);
  cursor: pointer; font-size: .85rem; line-height: 1;
  padding: 4px 7px; border-radius: 4px; transition: .15s;
}
.window-close:hover { color: var(--red); border-color: var(--red); background: rgba(255,95,86,.08); }

.window-body { padding: 22px; }
@media (min-width: 720px) { .window-body { padding: 26px 28px; } }

/* ---------- typography helpers ---------- */
.prompt-sym { color: var(--green); font-weight: 700; }
.cmd-echo { color: var(--muted); font-size: .85rem; margin-bottom: 12px; }
.cmd-echo + .body-text { margin-top: 0; }
.body-text { color: var(--text); margin-bottom: 16px; }
.body-text.small, .small { font-size: .86rem; }
.muted { color: var(--muted); }
.entry-title { font-size: 1.02rem; color: var(--green); font-weight: 500; }

.cursor {
  display: inline-block; width: 9px; height: 1.05em;
  background: var(--green); vertical-align: -3px; margin-left: 3px;
  animation: blink 1.05s steps(1) infinite;
}
.cursor-static { color: var(--green); animation: blink 1.05s steps(1) infinite; }
@keyframes blink { 0%, 49% { opacity: 1; } 50%, 100% { opacity: 0; } }

/* ---------- navbar ---------- */
.navbar {
  position: fixed; top: 0; left: 0; right: 0; z-index: 100;
  height: var(--nav-h);
  background: rgba(10,10,10,.86);
  backdrop-filter: blur(9px);
  border-bottom: 1px solid var(--border);
}
.navbar.scrolled { border-bottom-color: var(--border-hi); box-shadow: 0 6px 22px -14px rgba(0,255,65,.4); }
.nav-inner {
  max-width: var(--max); margin: 0 auto; padding: 0 22px; height: var(--nav-h);
  display: flex; align-items: center; justify-content: space-between; gap: 16px;
}
.nav-logo { font-size: .85rem; white-space: nowrap; }
.nav-logo .prompt { color: var(--green); }
.nav-logo .path { color: var(--muted); }
.nav-links { display: flex; gap: 4px; }
.nav-links a {
  color: var(--muted); font-size: .82rem; padding: 7px 11px;
  border: 1px solid transparent; border-radius: 4px; transition: .16s;
}
.nav-links a:hover { color: var(--green); border-color: var(--border-hi); background: rgba(0,255,65,.05); }
.nav-links a.active { color: var(--green); border-color: var(--green-dim); background: rgba(0,255,65,.07); }
.nav-progress { height: 2px; width: 0; background: var(--green); box-shadow: 0 0 8px var(--green); transition: width .1s linear; }

.nav-toggle {
  display: none; background: none; border: 1px solid var(--border-hi);
  border-radius: 4px; padding: 8px 9px; cursor: pointer; gap: 4px;
  flex-direction: column;
}
.nav-toggle span { display: block; width: 18px; height: 2px; background: var(--green); transition: .2s; }
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(6px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-6px) rotate(-45deg); }

@media (max-width: 880px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: absolute; top: var(--nav-h); left: 0; right: 0;
    flex-direction: column; gap: 2px; padding: 12px 18px 18px;
    background: var(--bg-elev); border-bottom: 1px solid var(--border-hi);
    display: none;
  }
  .nav-links.open { display: flex; animation: dropIn .18s ease-out; }
  .nav-links a { padding: 11px 12px; font-size: .9rem; }
}
@keyframes dropIn { from { opacity: 0; transform: translateY(-8px); } to { opacity: 1; transform: none; } }

/* ---------- hero ---------- */
.hero-window { width: 100%; }
.hero-body { min-height: 380px; padding-bottom: 30px; }
.boot { font-size: .82rem; color: var(--muted); margin-bottom: 14px; }
.boot div { white-space: pre-wrap; }
.boot .ok { color: var(--green-dim); }
.hero-line { font-size: clamp(.95rem, 2.4vw, 1.15rem); color: var(--green); margin-bottom: 20px; }

.hero-reveal[hidden] { display: none; }
.hero-name {
  font-size: clamp(2rem, 7vw, 3.6rem);
  font-weight: 700; letter-spacing: -2px; line-height: 1.1;
  color: var(--green);
  text-shadow: 0 0 22px rgba(0,255,65,.35);
  margin-bottom: 6px;
}
.hero-role { color: var(--green-soft); font-size: clamp(.85rem, 2.2vw, 1rem); margin-bottom: 16px; }
.hero-role .sep { color: var(--muted-2); margin: 0 6px; }
.hero-desc { color: var(--muted); max-width: 60ch; font-size: .9rem; margin-bottom: 22px; }

.hero-stats {
  display: grid; grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
  gap: 8px 20px; margin-bottom: 26px; font-size: .82rem;
}
.hero-stats li { display: flex; gap: 10px; align-items: baseline; }
.hero-stats .k { color: var(--muted-2); min-width: 74px; }
.hero-stats .k::after { content: ":"; }
.hero-stats .v { color: var(--text); }
.hero-stats .v.ok { color: var(--green); }

.hero-cta { display: flex; flex-wrap: wrap; gap: 12px; }
.btn {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 18px; font-size: .86rem;
  color: var(--green); background: transparent;
  border: 1px solid var(--green-dim); border-radius: 4px;
  cursor: pointer; transition: .18s;
}
.btn:hover {
  color: var(--bg); background: var(--green); border-color: var(--green);
  box-shadow: 0 0 20px rgba(0,255,65,.4); transform: translateY(-2px);
}
.btn:hover .ico { stroke: var(--bg); }
.btn-primary { background: rgba(0,255,65,.08); }
.ico { width: 16px; height: 16px; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; transition: .18s; }

.scroll-hint {
  display: flex; align-items: center; justify-content: center; gap: 8px;
  margin-top: 30px; color: var(--muted-2); font-size: .75rem; letter-spacing: 2px;
}
.scroll-hint svg { width: 15px; height: 15px; fill: none; stroke: currentColor; stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; animation: bob 1.8s ease-in-out infinite; }
.scroll-hint:hover { color: var(--green); }
@keyframes bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(4px); } }

/* ---------- reveal on scroll ---------- */
.reveal { opacity: 0; transform: translateY(-18px); transition: opacity .55s ease, transform .55s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ---------- code block ---------- */
.code-block {
  background: var(--bg-inset); border: 1px solid var(--border);
  border-radius: 4px; padding: 16px; overflow-x: auto;
  font-size: .82rem; line-height: 1.75; color: var(--text);
}
.code-block .key { color: var(--green-soft); }
.code-block .str { color: var(--green); }
.code-block .p { color: var(--muted-2); }

/* ---------- kv list ---------- */
.kv-list li { display: flex; align-items: baseline; gap: 8px; font-size: .87rem; }
.kv-list .k { color: var(--green-soft); }
.kv-list .v { color: var(--muted); }
.dotfill { flex: 1; border-bottom: 1px dotted var(--border-hi); transform: translateY(-4px); }

/* ---------- timeline ---------- */
.timeline { position: relative; padding-left: 26px; }
.timeline::before {
  content: ""; position: absolute; left: 5px; top: 6px; bottom: 6px;
  width: 1px; background: linear-gradient(to bottom, var(--green-dim), var(--border));
}
.timeline-item { position: relative; padding-bottom: 28px; }
.timeline-item:last-child { padding-bottom: 6px; }
.timeline-item::before {
  content: ""; position: absolute; left: -25px; top: 9px;
  width: 11px; height: 11px; border-radius: 50%;
  background: var(--bg); border: 2px solid var(--green);
  box-shadow: 0 0 10px rgba(0,255,65,.55);
}
.timeline-head { display: flex; flex-wrap: wrap; align-items: center; gap: 10px; justify-content: space-between; }
.timeline-head h3 { font-size: 1.02rem; color: var(--green); font-weight: 500; }
.timeline-head h3 .muted { font-weight: 400; font-size: .9rem; }
.timeline-meta { color: var(--muted-2); font-size: .8rem; margin: 2px 0 10px; }
.badge {
  font-size: .72rem; color: var(--green-soft);
  border: 1px solid var(--border-hi); border-radius: 3px;
  padding: 3px 9px; background: rgba(0,255,65,.05); white-space: nowrap;
}

.bullets li { position: relative; padding-left: 20px; font-size: .87rem; color: var(--text); margin-bottom: 6px; }
.bullets li::before { content: "▸"; position: absolute; left: 0; color: var(--green-dim); }
.log-tail { margin-top: 18px; font-size: .82rem; }

/* ---------- projects ---------- */
.projects-grid {
  display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
  gap: 20px; margin-bottom: 20px;
}
.project-card {
  display: block; width: 100%; text-align: left; cursor: pointer;
  background: var(--bg-elev); border: 1px solid var(--border-hi);
  border-radius: var(--radius); overflow: hidden; color: inherit;
  padding: 0; transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.project-card:hover, .project-card:focus-visible {
  transform: translateY(-6px);
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(0,255,65,.25), 0 16px 34px -18px rgba(0,255,65,.55);
}
.project-card:hover .pc-title { text-shadow: 0 0 14px rgba(0,255,65,.5); }
.pc-body { padding: 18px 18px 20px; }
.pc-index { color: var(--muted-2); font-size: .74rem; letter-spacing: 1px; }
.pc-title { color: var(--green); font-size: 1rem; font-weight: 500; margin: 4px 0 8px; transition: .2s; }
.pc-desc { color: var(--muted); font-size: .84rem; margin-bottom: 14px; }
.pc-tags { display: flex; flex-wrap: wrap; gap: 6px; margin-bottom: 14px; }
.pc-tags li {
  font-size: .72rem; color: var(--green-soft);
  border: 1px solid var(--border-hi); border-radius: 3px; padding: 2px 8px;
  background: rgba(0,255,65,.04);
}
.pc-open { font-size: .78rem; color: var(--muted-2); display: flex; align-items: center; gap: 7px; }
.project-card:hover .pc-open { color: var(--green); }


/* ---------- skills ---------- */
.skills-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 26px 30px; }
.skill-head { font-size: .88rem; color: var(--green); font-weight: 500; margin-bottom: 10px; }
.skill-head .perm { color: var(--muted-2); font-weight: 400; margin-right: 8px; font-size: .78rem; }
.tag-list { display: flex; flex-wrap: wrap; gap: 7px; }
.tag-list li {
  font-size: .78rem; color: var(--text);
  border: 1px solid var(--border-hi); border-radius: 3px;
  padding: 5px 10px; background: var(--bg-inset); transition: .16s;
}
.tag-list li:hover { color: var(--green); border-color: var(--green-dim); box-shadow: 0 0 12px -2px rgba(0,255,65,.45); transform: translateY(-2px); }

/* ---------- certs ---------- */
.cert-card { display: flex; gap: 16px; align-items: flex-start; }
.cert-badge svg { width: 34px; height: 34px; fill: none; stroke: var(--green); stroke-width: 1.4; stroke-linecap: round; stroke-linejoin: round; filter: drop-shadow(0 0 8px rgba(0,255,65,.4)); }

/* ---------- contact ---------- */
.contact-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(230px, 1fr)); gap: 16px; }
.contact-card {
  position: relative; display: flex; flex-direction: column; align-items: center;
  gap: 8px; padding: 24px 16px;
  background: var(--bg-inset); border: 1px solid var(--border-hi);
  border-radius: var(--radius); color: var(--text);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.contact-card:hover, .contact-card:focus-visible {
  transform: translateY(-5px) scale(1.03);
  border-color: var(--green);
  box-shadow: 0 0 0 1px rgba(0,255,65,.25), 0 0 28px -6px rgba(0,255,65,.55);
}
.c-ico { width: 30px; height: 30px; color: var(--green); fill: none; stroke: var(--green); stroke-width: 1.6; stroke-linecap: round; stroke-linejoin: round; transition: .2s; }
.contact-card:hover .c-ico { filter: drop-shadow(0 0 10px rgba(0,255,65,.75)); transform: scale(1.08); }
.c-label { color: var(--green); font-size: .9rem; }
.c-value { color: var(--muted); font-size: .76rem; word-break: break-all; text-align: center; }
.contact-card::after {
  content: "$ " attr(data-tip);
  position: absolute; top: -12px; left: 50%; transform: translate(-50%, 4px);
  background: var(--bg-bar); border: 1px solid var(--green-dim); border-radius: 3px;
  color: var(--green); font-size: .7rem; padding: 3px 9px; white-space: nowrap;
  opacity: 0; pointer-events: none; transition: .18s;
}
.contact-card:hover::after, .contact-card:focus-visible::after { opacity: 1; transform: translate(-50%, 0); }

/* ---------- footer ---------- */
.footer { border-top: 1px solid var(--border-hi); padding: 34px 0 44px; background: var(--bg-elev); }
.footer-cmd { color: var(--muted); font-size: .84rem; }
.footer-out { color: var(--green); font-size: .95rem; margin: 4px 0 10px; }
.footer-meta { color: var(--muted-2); font-size: .76rem; }

/* ---------- modal (shared terminal aesthetic) ---------- */
.modal-overlay {
  position: fixed; inset: 0; z-index: 150;
  display: flex; align-items: center; justify-content: center;
  padding: 22px;
  background: rgba(3, 6, 4, .78);
  backdrop-filter: blur(3px);
  animation: overlayIn .18s ease-out;
}
.modal-overlay[hidden] { display: none; }
.modal-overlay.closing { animation: overlayOut .18s ease-in forwards; }
@keyframes overlayIn { from { opacity: 0; } to { opacity: 1; } }
@keyframes overlayOut { to { opacity: 0; } }

.modal-window, .chat-window {
  width: 100%; max-width: 720px; max-height: 86vh;
  display: flex; flex-direction: column;
  animation: winBoot .22s cubic-bezier(.2,.9,.3,1.2);
  box-shadow: 0 0 0 1px rgba(0,255,65,.18), 0 30px 70px -30px rgba(0,255,65,.5);
}
.modal-overlay.closing .modal-window,
.modal-overlay.closing .chat-window { animation: winShut .18s ease-in forwards; }
@keyframes winBoot { from { opacity: 0; transform: scale(.9) translateY(10px); } to { opacity: 1; transform: none; } }
@keyframes winShut { to { opacity: 0; transform: scale(.94) translateY(6px); } }

.modal-body { overflow-y: auto; }
.modal-body h3 { color: var(--green); font-size: 1.15rem; margin-bottom: 4px; }

/* ---------- chatbot ---------- */
.chat-fab {
  position: fixed; right: 22px; bottom: 22px; z-index: 120;
  display: inline-flex; align-items: center; gap: 9px;
  padding: 12px 16px; cursor: pointer;
  background: var(--bg-elev); color: var(--green);
  border: 1px solid var(--green-dim); border-radius: 6px;
  box-shadow: 0 0 22px -6px rgba(0,255,65,.6);
  transition: .18s;
}
.chat-fab:hover { background: var(--green); color: var(--bg); border-color: var(--green); transform: translateY(-3px); box-shadow: 0 0 30px -4px rgba(0,255,65,.8); }
.fab-glyph { font-weight: 700; letter-spacing: -1px; animation: blink 1.4s steps(1) infinite; }
.chat-fab:hover .fab-glyph { animation: none; }
.fab-text { font-size: .82rem; }
@media (max-width: 520px) { .fab-text { display: none; } .chat-fab { padding: 14px; border-radius: 50%; } }

.chat-overlay { align-items: flex-end; justify-content: flex-end; padding: 22px; }
.chat-window { max-width: 460px; height: min(620px, 82vh); }
@media (max-width: 720px) {
  .chat-overlay { padding: 0; align-items: stretch; justify-content: stretch; }
  .chat-window { max-width: none; width: 100%; height: 100%; max-height: 100%; border-radius: 0; border-left: 0; border-right: 0; }
}

.chat-log {
  flex: 1; overflow-y: auto; padding: 18px;
  font-size: .84rem; background: var(--bg-inset);
  scrollbar-width: thin; scrollbar-color: var(--border-hi) transparent;
}
.chat-line { margin-bottom: 12px; white-space: pre-wrap; word-wrap: break-word; }
.chat-line.user { color: var(--green); }
.chat-line.user::before { content: "$ "; color: var(--green); font-weight: 700; }
.chat-line.bot { color: var(--text); border-left: 2px solid var(--green-dim); padding-left: 11px; }
.chat-line.sys { color: var(--muted-2); font-size: .78rem; }
.chat-line.err { color: var(--yellow); font-size: .8rem; border-left: 2px solid var(--yellow); padding-left: 11px; }
.chat-line .who { color: var(--muted-2); font-size: .72rem; display: block; margin-bottom: 3px; }

.dots-loading span {
  display: inline-block; animation: dotpulse 1.2s infinite; color: var(--green);
}
.dots-loading span:nth-child(2) { animation-delay: .18s; }
.dots-loading span:nth-child(3) { animation-delay: .36s; }
@keyframes dotpulse { 0%, 60%, 100% { opacity: .25; } 30% { opacity: 1; } }

.chat-suggestions { display: flex; flex-wrap: wrap; gap: 6px; margin: 6px 0 12px; }
.chat-suggestions button {
  font-size: .74rem; color: var(--green-soft); cursor: pointer;
  background: rgba(0,255,65,.05); border: 1px solid var(--border-hi);
  border-radius: 3px; padding: 5px 9px; transition: .15s;
}
.chat-suggestions button:hover { border-color: var(--green); color: var(--green); }

.chat-input-row {
  display: flex; align-items: center; gap: 10px;
  padding: 12px 14px; background: var(--bg-bar);
  border-top: 1px solid var(--border-hi);
}
.chat-input {
  flex: 1; background: transparent; border: none; outline: none;
  color: var(--green); font-family: var(--mono); font-size: .86rem;
  caret-color: var(--green);
}
.chat-input::placeholder { color: var(--muted-2); }
.chat-send {
  background: none; border: 1px solid var(--border-hi); border-radius: 4px;
  padding: 6px 8px; cursor: pointer; transition: .15s; line-height: 0;
}
.chat-send svg { width: 17px; height: 17px; fill: none; stroke: var(--green); stroke-width: 1.8; stroke-linecap: round; stroke-linejoin: round; }
.chat-send:hover { border-color: var(--green); background: rgba(0,255,65,.1); }

/* ---------- scrollbars ---------- */
::-webkit-scrollbar { width: 9px; height: 9px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: var(--border-hi); border-radius: 4px; }
::-webkit-scrollbar-thumb:hover { background: var(--green-dim); }
::selection { background: var(--green); color: var(--bg); }

/* ---------- responsive ---------- */
@media (max-width: 860px) {
  .grid-2 { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
}
@media (max-width: 520px) {
  body { font-size: 14px; }
  .window-body { padding: 18px 16px; }
  .container { padding: 0 16px; }
  .projects-grid { grid-template-columns: 1fr; }
}

/* ---------- reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .001ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: .001ms !important;
    scroll-behavior: auto !important;
  }
  .reveal { opacity: 1; transform: none; }
  .scanlines { display: none; }
}
