/* ============================================
   NINA JURISIC — PORTFOLIO
   Win2000 × Y2K / chrome, bevels, halftone, bliss
   ============================================ */

:root {
  /* Win2K / XP-ish palette */
  --w-blue: #0a246a;       /* classic title bar */
  --w-blue-2: #a6caf0;     /* title bar gradient end (win98 light) */
  --w-blue-bright: #1084d0;/* XP-ish accent */
  --w-blue-sky: #3a6ea5;
  --w-cyan: #00a4ef;

  --w-grey: #c3c3c3;       /* chrome face */
  --w-grey-2: #d4d0c8;     /* warm 2k chrome */
  --w-grey-dk: #808080;
  --w-grey-dd: #404040;
  --w-white: #ffffff;
  --w-cream: #efefe6;
  --w-black: #000000;

  --w-green: #008000;

  /* Fonts */
  --f-ui:     'Pixelify Sans', 'Tahoma', 'MS Sans Serif', sans-serif;
  --f-pixel:  'Micro 5', 'Pixelify Sans', monospace;
  --f-mono:   'VT323', 'Courier New', monospace;
  --f-script: 'Italianno', cursive;
  --f-display:'Pixelify Sans', 'Arial Black', sans-serif;

  --bevel-out:
    inset -1px -1px 0 #000,
    inset  1px  1px 0 #ffffff,
    inset -2px -2px 0 #808080,
    inset  2px  2px 0 #dfdfdf;

  --bevel-in:
    inset  1px  1px 0 #000,
    inset -1px -1px 0 #ffffff,
    inset  2px  2px 0 #808080,
    inset -2px -2px 0 #dfdfdf;
}

/* ============================================
   BASE
   ============================================ */

* { box-sizing: border-box; margin: 0; padding: 0; }
html {
  scroll-behavior: smooth;
  overflow-x: clip;
}

/* Custom cursor — Win 3.1 / 2k arrow drawn in SVG */
html, body, a, button, summary, .work, .work-folder, .filter-btn, .start-btn, .tb-tab, .contact-card, details {
  cursor:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' shape-rendering='crispEdges'><path d='M3 2 L3 23 L9 17 L12 24 L15 22 L12 16 L20 16 Z' fill='white' stroke='black' stroke-width='1.2' stroke-linejoin='miter'/></svg>") 2 2, auto;
}
a, button, summary, .work, .work-folder, .filter-btn, .start-btn, .tb-tab, .contact-card, details summary {
  cursor:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='32' height='32' viewBox='0 0 32 32' shape-rendering='crispEdges'><path d='M10 3 L10 5 L8 5 L8 7 L6 7 L6 14 L4 14 L4 16 L6 16 L6 18 L8 18 L8 20 L10 20 L10 22 L14 22 L14 20 L16 20 L16 18 L18 18 L18 16 L20 16 L20 14 L18 14 L18 7 L16 7 L16 5 L14 5 L14 3 Z' fill='white' stroke='black' stroke-width='1.2'/><rect x='10' y='7' width='4' height='6' fill='black'/><rect x='10' y='15' width='4' height='3' fill='black'/></svg>") 10 2, pointer;
}

body {
  color: var(--w-white);
  font-family: var(--f-ui);
  font-size: 16px;
  line-height: 1.5;
  overflow-x: clip;
  position: relative;
  padding-top: 0;
  background: #1a1a1e;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
button { font-family: inherit; border: 0; background: 0; color: inherit; }
::selection { background: var(--w-blue); color: var(--w-white); }

/* ============================================
   PAGE BACKGROUND — monochrome after hero
   ============================================ */
.bg-checker {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 0;
  background-image:
    linear-gradient(45deg, rgba(255,255,255,.025) 25%, transparent 25%),
    linear-gradient(-45deg, rgba(255,255,255,.025) 25%, transparent 25%),
    linear-gradient(45deg, transparent 75%, rgba(255,255,255,.025) 75%),
    linear-gradient(-45deg, transparent 75%, rgba(255,255,255,.025) 75%);
  background-size: 40px 40px;
  background-position: 0 0, 0 20px, 20px -20px, -20px 0;
}

/* Overlays sit above content, but under sticky chrome */
.bg-halftone {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 150;
  background-image:
    radial-gradient(circle at center, #000 0.9px, transparent 1.1px),
    radial-gradient(circle at center, #000 0.55px, transparent 0.75px);
  background-size: 6px 6px, 4px 4px;
  background-position: 0 0, 2px 2px;
  mix-blend-mode: multiply;
  opacity: .18;
}

.bg-scanlines {
  position: absolute;
  inset: 0;
  pointer-events: none;
  z-index: 151;
  background-image: repeating-linear-gradient(
    0deg,
    rgba(255,255,255,.04) 0 1px,
    transparent 1px 3px
  );
  mix-blend-mode: overlay;
  opacity: .55;
}

/* ============================================
   SHARED WIN2K PANELS
   ============================================ */

.win {
  background: var(--w-grey-2);
  color: var(--w-black);
  box-shadow: var(--bevel-out), 6px 6px 0 rgba(0,0,0,.45);
  padding: 3px;
}

.win__titlebar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 26px;
  padding: 0 3px 0 5px;
  background: linear-gradient(90deg, #0a246a 0%, #1e4acb 55%, #3b86e8 100%);
  color: var(--w-white);
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 14px;
  letter-spacing: .02em;
}
.win__title {
  display: flex;
  align-items: center;
  gap: 6px;
  min-width: 0;
  overflow: hidden;
}
.win__title > span:last-child {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.win__ico {
  width: 16px; height: 16px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  display: inline-block;
}
.win__controls { display: flex; gap: 3px; flex: none; }
.win__controls button {
  width: 22px; height: 20px;
  background: var(--w-grey-2);
  color: var(--w-black);
  font-family: var(--f-ui);
  font-size: 12px;
  line-height: 16px;
  padding: 0;
  box-shadow: var(--bevel-out);
  display: inline-flex; align-items: center; justify-content: center;
}
.win__controls button:active { box-shadow: var(--bevel-in); }
.win__close { background: #d84040 !important; color: #fff !important; font-weight: 700; }

.win__menu {
  display: flex;
  gap: 14px;
  padding: 4px 8px;
  background: var(--w-grey-2);
  border-bottom: 1px solid rgba(0,0,0,.1);
  font-size: 14px;
  color: var(--w-black);
}
.win__menu u { text-decoration: underline; }

.win__body { background: var(--w-white); color: var(--w-black); padding: 0; }
.win__body--img { padding: 0; }
.win__body--img img { width: 100%; display: block; }

.win__status {
  display: flex;
  justify-content: space-between;
  padding: 3px 8px;
  background: var(--w-grey-2);
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--w-black);
  box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #fff;
}

/* ============================================
   TASKBAR (fixed Win2K bottom-bar-style HEADER)
   ============================================ */

.taskbar {
  position: sticky;
  top: 0; left: 0; right: 0;
  z-index: 200;
  height: 34px;
  display: flex;
  align-items: center;
  gap: 4px;
  padding: 2px 4px;
  background: linear-gradient(180deg, #e6e6e1 0%, #c3c3bd 50%, #a9a99f 100%);
  box-shadow:
    inset 0 1px 0 #fff,
    inset 0 -1px 0 #5a5a55,
    0 2px 0 #000,
    0 4px 14px rgba(0,0,0,.5);
}

.start-btn {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 10px 0 6px;
  background: linear-gradient(180deg, #4ea64e 0%, #2c7a2c 60%, #1c5a1c 100%);
  color: #fff;
  font-family: var(--f-ui);
  font-weight: 700;
  font-style: italic;
  font-size: 15px;
  letter-spacing: .02em;
  border-radius: 0 10px 10px 0;
  box-shadow:
    inset 0 1px 0 rgba(255,255,255,.6),
    inset 0 -2px 0 rgba(0,0,0,.35),
    0 0 0 1px #0a3a0a;
  text-shadow: 1px 1px 0 rgba(0,0,0,.5);
}
.start-btn:active { transform: translateY(1px); }
.start-btn__flag {
  position: relative;
  width: 16px; height: 14px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 1px;
  transform: skewX(-12deg);
}
.start-btn__flag span:nth-child(1) { background: #ff3f3f; }
.start-btn__flag span:nth-child(2) { background: #2ec2ff; }
.start-btn__flag span:nth-child(3) { background: #ffd53f; }
.start-btn__flag span:nth-child(4) { background: #2ec24c; }

.taskbar__divider {
  width: 2px;
  height: 24px;
  background: linear-gradient(180deg, transparent, rgba(0,0,0,.3), transparent);
  border-left: 1px solid rgba(255,255,255,.5);
  margin: 0 2px;
}

.taskbar__tabs {
  display: flex;
  flex: 1;
  gap: 3px;
  overflow: hidden;
  min-width: 0;
}
.tb-tab {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  height: 28px;
  padding: 0 12px 0 8px;
  min-width: 0;
  max-width: 220px;
  background: var(--w-grey-2);
  color: var(--w-black);
  font-family: var(--f-ui);
  font-size: 13px;
  white-space: nowrap;
  box-shadow: var(--bevel-out);
  transition: background .15s;
}
.tb-tab > span:last-child {
  overflow: hidden;
  text-overflow: ellipsis;
}
.tb-tab:hover { background: #dcd9cf; }
.tb-tab.is-active {
  background: linear-gradient(180deg, #b8b8af 0%, #d3d0c7 100%);
  box-shadow: var(--bevel-in);
}

.tb-tab__ico { width: 16px; height: 16px; flex: none; background-size: contain; background-repeat: no-repeat; }

.taskbar__tray {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 0 10px;
  height: 26px;
  background: var(--w-grey-2);
  box-shadow: var(--bevel-in);
}
.tray-icon { width: 14px; height: 14px; display: inline-block; background-size: contain; background-repeat: no-repeat; }
.tray-clock {
  font-family: var(--f-mono);
  font-size: 15px;
  color: var(--w-black);
  display: inline-flex; align-items: center; gap: 4px;
}
.tray-clock .blink { color: #008000; font-size: 10px; }

/* ============================================
   ICONS (inline svg data URIs — xp / 2k era)
   ============================================ */

.ico-folder   { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' shape-rendering='crispEdges'><rect x='1' y='4' width='14' height='10' fill='%23e6b34a' stroke='%235c3d0a' stroke-width='0.6'/><rect x='1' y='3' width='6' height='2' fill='%23e6b34a' stroke='%235c3d0a' stroke-width='0.6'/><rect x='1' y='5' width='14' height='1.5' fill='%23fff2b8'/></svg>"); }
.ico-image    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='2' width='14' height='12' fill='white' stroke='black' stroke-width='.6'/><rect x='2' y='3' width='12' height='7' fill='%233a6ea5'/><circle cx='5' cy='5.5' r='1' fill='%23ffd700'/><polygon points='2,10 5,7 8,9 12,5 14,10' fill='%23356e3a'/></svg>"); }
.ico-user     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='5.5' r='3' fill='%23f0c38e' stroke='black' stroke-width='.6'/><path d='M2 15 C2 10 14 10 14 15 Z' fill='%233a6ea5' stroke='black' stroke-width='.6'/></svg>"); }
.ico-monitor  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='2' width='14' height='9' fill='%23d4d0c8' stroke='black' stroke-width='.6'/><rect x='2' y='3' width='12' height='7' fill='%233a6ea5'/><rect x='6' y='11' width='4' height='2' fill='%23d4d0c8' stroke='black' stroke-width='.6'/><rect x='4' y='13' width='8' height='1.5' fill='%23808080' stroke='black' stroke-width='.6'/></svg>"); }
.ico-mail     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='3' width='14' height='10' fill='white' stroke='black' stroke-width='.6'/><polyline points='1,3 8,9 15,3' fill='none' stroke='black' stroke-width='.6'/><polyline points='1,13 6,8' fill='none' stroke='black' stroke-width='.6'/><polyline points='15,13 10,8' fill='none' stroke='black' stroke-width='.6'/></svg>"); }
.ico-help     { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='7' fill='%231e4acb' stroke='black' stroke-width='.6'/><text x='8' y='12' font-family='Tahoma' font-size='11' font-weight='700' text-anchor='middle' fill='white'>?</text></svg>"); }
.ico-ie       { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><circle cx='8' cy='8' r='6' fill='%23f0f0f0' stroke='black' stroke-width='.6'/><path d='M2 8 Q8 2 14 8 Q8 14 2 8 Z' fill='%231084d0'/><text x='8' y='11' font-family='Georgia' font-size='9' font-weight='700' font-style='italic' text-anchor='middle' fill='%23ffd700'>e</text></svg>"); }
.ico-speaker  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><polygon points='2,6 5,6 9,3 9,13 5,10 2,10' fill='%23f5c842' stroke='black' stroke-width='.6'/><path d='M11 5 Q13 8 11 11' fill='none' stroke='black' stroke-width='.8'/></svg>"); }
.ico-network  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='4' width='6' height='4' fill='%23c0c0c0' stroke='black' stroke-width='.6'/><rect x='9' y='8' width='6' height='4' fill='%23c0c0c0' stroke='black' stroke-width='.6'/><line x1='7' y1='6' x2='9' y2='10' stroke='black' stroke-width='.8'/></svg>"); }

/* Used inside buttons */
.btn__ico { width: 14px; height: 14px; background-size: contain; background-repeat: no-repeat; display: inline-block; }
.contact-card__ico { width: 28px; height: 28px; object-fit: contain; background-size: contain; background-repeat: no-repeat; position: absolute; top: 14px; right: 54px; }

/* ============================================
   BUTTONS — 3D Win9x/2K bevels
   ============================================ */

.btn {
  position: relative;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 11px 18px;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 15px;
  letter-spacing: .02em;
  color: var(--w-black);
  background: var(--w-grey-2);
  box-shadow: var(--bevel-out), 4px 4px 0 rgba(0,0,0,.45);
  overflow: hidden;
  transition: transform .12s ease, box-shadow .12s ease;
}
.btn::before {
  content: '';
  position: absolute;
  top: 0; left: -120%;
  width: 60%; height: 100%;
  background: linear-gradient(110deg,
    transparent 0%,
    rgba(255,255,255,.0) 30%,
    rgba(255,255,255,.55) 50%,
    rgba(255,255,255,.0) 70%,
    transparent 100%);
  transform: skewX(-20deg);
  pointer-events: none;
  transition: left .55s ease;
}
.btn:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--bevel-out), 7px 7px 0 rgba(0,0,0,.55);
  animation: btn-wiggle .35s ease-in-out;
}
.btn:hover::before { left: 130%; }
.btn:active {
  box-shadow: var(--bevel-in), 1px 1px 0 rgba(0,0,0,.4);
  transform: translate(2px, 2px);
}
@keyframes btn-wiggle {
  0%,100% { rotate: 0deg; }
  25%     { rotate: -1.5deg; }
  75%     { rotate: 1.5deg; }
}

.btn--primary {
  background: linear-gradient(180deg, #2264e5 0%, #0a246a 100%);
  color: var(--w-white);
  text-shadow: 1px 1px 0 rgba(0,0,0,.5);
}
.btn--primary:hover {
  background: linear-gradient(180deg, #3b86e8, #1542b6);
  animation: btn-wiggle .35s ease-in-out;
}

.btn--ghost {
  background: var(--w-grey-2);
  color: var(--w-black);
}
.btn--ghost:hover { background: #d6d3ca; }

.btn .btn__ico { transition: transform .3s ease; }
.btn:hover .btn__ico { transform: rotate(-12deg) scale(1.15); }

/* ============================================
   SHARED SECTIONS / TYPOGRAPHY
   ============================================ */

section, footer, .marquee-break { position: relative; z-index: 10; }

.section-tag {
  display: inline-block;
  font-family: var(--f-mono);
  font-size: 16px;
  color: var(--w-white);
  letter-spacing: .12em;
  padding: 2px 10px;
  background: var(--w-blue);
  box-shadow: var(--bevel-out);
  margin-bottom: 14px;
}

.section-title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(3rem, 9vw, 7.5rem);
  line-height: .92;
  letter-spacing: -0.03em;
  text-transform: uppercase;
  color: var(--w-white);
  margin-bottom: 40px;
  text-shadow:
    3px 3px 0 var(--w-blue),
    6px 6px 0 rgba(0,0,0,.5);
}
.section-title em {
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 400;
  font-size: 1.45em;
  color: var(--w-white);
  letter-spacing: 0;
  text-shadow: 2px 2px 0 var(--w-blue), 4px 4px 0 rgba(0,0,0,.5);
}

/* Chip */
.chip {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 3px 10px;
  background: #d84040;
  color: #fff;
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .12em;
  box-shadow: var(--bevel-out);
}

/* Blink */
.blink { animation: blink 1.1s steps(2, end) infinite; display: inline-block; }
@keyframes blink { 50% { opacity: 0; } }

/* ============================================
   HERO
   ============================================ */

.hero {
  position: relative;
  min-height: calc(100vh - 42px);
  padding: 80px 28px 60px;
  overflow: hidden;
  isolation: isolate;
}
.hero__bg {
  position: absolute;
  inset: 0;
  background: url('assets/xp-bliss.jpg') center / cover no-repeat;
  filter: saturate(1.1) contrast(1.05);
  z-index: -2;
  opacity: .55;
}
.hero__vignette {
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    radial-gradient(ellipse at 30% 40%, rgba(0,0,0,0) 0%, rgba(20,10,50,.35) 55%, rgba(0,0,0,.85) 100%),
    linear-gradient(180deg, rgba(0,0,0,.15) 0%, rgba(10,36,106,.25) 70%, rgba(0,0,0,.75) 100%);
}

.hero__marquee {
  margin: -20px -28px 40px;
  background: linear-gradient(180deg, #1e4acb, #0a246a);
  border-top: 2px solid rgba(255,255,255,.5);
  border-bottom: 2px solid rgba(0,0,0,.5);
  padding: 6px 0;
  overflow: hidden;
}
.hero__marquee-track {
  display: flex;
  white-space: nowrap;
  animation: marquee 28s linear infinite;
  font-family: var(--f-mono);
  font-size: 18px;
  letter-spacing: .12em;
  color: var(--w-white);
}
.hero__marquee-track span { padding-right: 40px; }
@keyframes marquee { to { transform: translateX(-50%); } }

.hero__grid {
  display: grid;
  grid-template-columns: minmax(240px, 360px) 1fr;
  gap: 32px;
  align-items: start;
  max-width: 1400px;
  margin: 0 auto;
}

.hero__left {
   animation: slam-in-l .7s cubic-bezier(.2,1.3,.4,1) both;
   display: flex;
   justify-content: center;
   padding-top: 0;
   align-self: start;
}
.hero__dock-label {
  font-family: var(--f-mono);
  font-size: 11px;
  text-align: center;
  color: var(--w-black);
  letter-spacing: .08em;
  border-bottom: 1px dashed #888;
  padding-bottom: 4px;
}
.hero__dock-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 5px;
  padding: 0;
  margin: 0;
}
.dock-ico {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 1px;
  padding: 6px 4px 4px;
  background: var(--w-white);
  box-shadow: var(--bevel-out);
  cursor: default;
  transition: transform .12s, box-shadow .12s;
}
.dock-ico:hover {
  transform: translate(-2px, -2px);
  box-shadow: var(--bevel-out), 3px 3px 0 var(--w-blue);
}
.dock-ico .sw__ico {
  width: 36px;
  height: 36px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(1px 1px 0 rgba(0,0,0,.4));
}
.dock-ico span:last-child {
  font-family: var(--f-mono);
  font-size: 10px;
  letter-spacing: .04em;
  color: var(--w-black);
}

.win--profile {
  width: 100%;
  max-width: 360px;
  transform: none;
  transition: transform .3s;
}
.win--profile:hover { transform: translateY(-4px); }
.win--profile .win__body--img {
  background: var(--w-white);
  position: relative;
}
.win--profile .win__body--img img {
  width: 100%;
  height: auto;
  display: block;
}
.win--profile { position: relative; }
.win--profile .win__body--img { overflow: visible; }
.hero__instagram-link {
  position: absolute;
  inset: 0;
  z-index: 20;
  display: block;
}
.instagram-disk-gif {
  position: absolute !important;
  bottom: 0 !important;
  right: 0 !important;
  width: 130px !important;
  height: 130px !important;
  object-fit: contain !important;
  transform: translate(50%, 50%);
  z-index: 5;
  pointer-events: none;
}

.hero__kicker {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 18px;
}
.hero__tag {
  font-family: var(--f-mono);
  font-size: 20px;
  color: var(--w-white);
  letter-spacing: .04em;
}

.hero__title {
  font-family: var(--f-display);
  font-weight: 600;
  line-height: .88;
  letter-spacing: -0.04em;
  display: flex;
  flex-direction: column;
  margin-bottom: 32px;
}
.hero__title-line {
  font-size: clamp(3rem, 10vw, 9rem);
  color: var(--w-white);
  text-transform: uppercase;
  text-shadow:
    4px 4px 0 var(--w-blue),
    8px 8px 0 rgba(0,0,0,.55);
}
.hero__title-line--script {
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 400;
  font-size: clamp(4.5rem, 13vw, 11rem);
  color: var(--w-white);
  margin: -.05em 0 0 .15em;
  letter-spacing: 0;
  text-transform: none;
  text-shadow:
    3px 3px 0 var(--w-blue),
    6px 6px 0 rgba(0,0,0,.55);
  line-height: 1;
  display: block;
  white-space: nowrap;
}
.hero__name { display: inline; }
.hero__name--jur {
  margin-left: .25em;
}
.hero__title-line--jur { display: none; }

.hero__intro {
  font-family: var(--f-mono);
  font-size: 22px;
  line-height: 1.4;
  color: var(--w-white);
  max-width: 620px;
  margin-bottom: 28px;
  text-shadow: 1px 1px 0 rgba(0,0,0,.7);
}
.hero__intro em {
  font-family: var(--f-script);
  font-style: italic;
  font-size: 1.6em;
  color: var(--w-white);
  font-weight: 400;
}

.hero__cta-row { display: flex; gap: 14px; flex-wrap: wrap; }

.hero__bottom-bar {
  position: relative;
  margin-top: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-family: var(--f-mono);
  font-size: 15px;
  color: var(--w-white);
  letter-spacing: .08em;
  padding: 6px 10px;
  background: rgba(0,0,0,.45);
  box-shadow: var(--bevel-in);
  gap: 12px;
  flex-wrap: wrap;
}

@media (max-width: 900px) {
  .hero__grid { grid-template-columns: 1fr; gap: 24px; }
  .hero__dock { margin-top: 0; }
  .hero__dock-list { flex-direction: row; flex-wrap: wrap; justify-content: center; }
  .dock-ico { width: 64px; }
}

/* ============================================
   ABOUT — desktop scene
   ============================================ */
.about {
  padding: 80px 28px 60px;
  max-width: 1400px;
  margin: 0 auto;
}
.about__desktop {
  position: relative;
  display: grid;
  grid-template-columns: 320px 1fr 1fr;
  grid-template-areas:
    "head     head    head"
    "portrait icons   notepad"
    "terminal terminal terminal";
  gap: 26px;
  padding: 28px;
  background:
    linear-gradient(180deg, #2a4a8a 0%, #0a2160 100%);
  box-shadow: var(--bevel-out), 8px 8px 0 rgba(0,0,0,.55);
  /* desktop wallpaper grid */
  background-image:
    linear-gradient(rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.04) 1px, transparent 1px),
    linear-gradient(180deg, #2a4a8a 0%, #0a2160 100%);
  background-size: 32px 32px, 32px 32px, 100% 100%;
}
.about__desktop-head { grid-area: head; }
.about__desktop-head .section-title {
  margin-bottom: 6px;
  text-shadow: 3px 3px 0 #000, 6px 6px 0 rgba(255,255,255,.08);
}

.win--portrait { grid-area: portrait; width: 320px; max-width: 100%; justify-self: start; transform: rotate(-2deg); transition: transform .3s; }
.win--portrait:hover { transform: rotate(0); }
.about__desktop .win__titlebar {
  background: linear-gradient(90deg, #7a7a7a 0%, #b0b0b0 100%);
}
.about__desktop .win.is-focused .win__titlebar {
  background: linear-gradient(90deg, #0a246a 0%, #3a6ea5 60%, #a6caf0 100%);
}
.about__desktop .win.is-focused .win__titlebar--alt {
  background: linear-gradient(90deg, #1c1c1c 0%, #4a4a4a 60%, #777 100%);
}
.win--portrait .portrait-frame {
  background: var(--w-white);
  padding: 6px;
  box-shadow: var(--bevel-in);
  height: 380px;
  overflow: hidden;
}
.win--portrait .portrait-frame img {
   width: 100%;
   height: 100%;
   object-fit: cover;
   object-position: center 47%;
   display: block;
   filter: contrast(1.05) saturate(.92);
 }

.win--notepad { grid-area: notepad; align-self: start; box-shadow: var(--bevel-out), 8px 8px 0 rgba(0,0,0,.55); }
.win__titlebar--alt { background: linear-gradient(90deg, #1c1c1c 0%, #4a4a4a 60%, #777 100%); }
.notepad__body {
  background: var(--w-white);
  color: var(--w-black);
  padding: 24px 22px;
  font-family: var(--f-mono);
  font-size: 17px;
  line-height: 1.5;
  background-image: repeating-linear-gradient(180deg, transparent 0 26px, rgba(0,0,0,.05) 26px 27px);
}
.notepad__body .about__lead { font-size: 22px; line-height: 1.35; margin-bottom: 14px; color: var(--w-black); }
.notepad__body .about__lead em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--w-blue);
  font-size: 1.4em;
}
.notepad__body p { margin-bottom: 18px; color: #222; }

.win--terminal { grid-area: terminal; align-self: stretch; max-width: none; transform: none; margin-top: 6px; }
.terminal {
  background: #000;
  color: #00ff5f;
  font-family: var(--f-mono);
  font-size: 16px;
  line-height: 1.4;
  padding: 14px 18px;
  height: 260px;
  overflow: hidden;
  position: relative;
  text-shadow: 0 0 4px rgba(0,255,95,.6);
}
.terminal::after {
  content: '';
  position: absolute; inset: 0;
  pointer-events: none;
  background: repeating-linear-gradient(0deg, rgba(0,0,0,.18) 0 1px, transparent 1px 3px);
}
.terminal__scroll { white-space: pre-wrap; }
.terminal__cursor {
  display: inline-block;
  width: 9px; height: 16px;
  background: #00ff5f;
  vertical-align: -2px;
  animation: blink 1s steps(2, end) infinite;
}

/* Sticky note */
.sticky-note {
  position: absolute;
  top: -55px;
  right: 0px;
  width: 200px;
  color: #1a1a1a;
  padding: 0;
  transform: rotate(6deg);
  font-family: var(--f-script);
  font-size: 22px;
  line-height: 1.15;
  z-index: 5;
  background: transparent;
}
.sticky-note .sticky-note__pin { display: none; }
.sticky-note__pin {
  position: absolute;
  top: -8px; left: 50%;
  width: 16px; height: 16px;
  background: radial-gradient(circle at 35% 30%, #ff8a8a, #b50000);
  border-radius: 50%;
  box-shadow: 0 2px 0 rgba(0,0,0,.4);
  transform: translateX(-50%);
}
.sticky-note__gif {
  width: 100% !important;
  height: auto !important;
  display: block !important;
}

/* ====== Free / draggable desktop mode ====== */
.about__desktop.is-free {
  display: block;
  min-height: 760px;
}
.about__desktop.is-free .about__desktop-head {
  position: relative;
  margin-bottom: 18px;
}
.about__desktop.is-free .win--portrait,
.about__desktop.is-free .win--notepad,
.about__desktop.is-free .win--terminal,
.about__desktop.is-free .sticky-note,
.about__desktop.is-free .desk-ico {
  position: absolute;
  margin: 0;
  transform: none !important;
  align-self: auto;
  justify-self: auto;
  right: auto;
  bottom: auto;
}
.about__desktop.is-free .win {
  display: flex;
  flex-direction: column;
  overflow: hidden;
  min-width: 240px;
  min-height: 160px;
  max-width: none;
  box-shadow: var(--bevel-out), 6px 6px 0 rgba(0,0,0,.55);
}

/* Custom resize handles around each free window */
.about__desktop.is-free .win__resize {
  position: absolute;
  z-index: 5;
  background: transparent;
}
.win__resize--n  { top: -3px; left: 8px; right: 8px; height: 8px; cursor: ns-resize; }
.win__resize--s  { bottom: -3px; left: 8px; right: 8px; height: 8px; cursor: ns-resize; }
.win__resize--e  { right: -3px; top: 8px; bottom: 8px; width: 8px; cursor: ew-resize; }
.win__resize--w  { left: -3px;  top: 8px; bottom: 8px; width: 8px; cursor: ew-resize; }
.win__resize--ne { top: -4px; right: -4px; width: 14px; height: 14px; cursor: nesw-resize; }
.win__resize--nw { top: -4px; left:  -4px; width: 14px; height: 14px; cursor: nwse-resize; }
.win__resize--se { bottom: -4px; right: -4px; width: 14px; height: 14px; cursor: nwse-resize; }
.win__resize--sw { bottom: -4px; left:  -4px; width: 14px; height: 14px; cursor: nesw-resize; }
.about__desktop.is-free .win__titlebar { cursor: move; flex-shrink: 0; }
.about__desktop.is-free .win__menu,
.about__desktop.is-free .win__status { flex-shrink: 0; }
.about__desktop.is-free .portrait-frame,
.about__desktop.is-free .notepad__body,
.about__desktop.is-free .terminal {
  flex: 1 1 auto;
  height: auto;
  min-height: 0;
  overflow: auto;
}
.about__desktop.is-free .win.is-focused {
  box-shadow: var(--bevel-out), 10px 10px 0 rgba(0,0,0,.7);
}
.about__desktop.is-free .win__titlebar {
  background: linear-gradient(90deg, #7a7a7a 0%, #b0b0b0 100%);
}
.about__desktop.is-free .win.is-focused .win__titlebar {
  background: linear-gradient(90deg, #0a246a 0%, #3a6ea5 60%, #a6caf0 100%);
}
.about__desktop.is-free .win.is-focused .win__titlebar--alt {
  background: linear-gradient(90deg, #1c1c1c 0%, #4a4a4a 60%, #777 100%);
}

/* Desktop icons — initial 2-column stack inside its own column */
.about__icons {
  grid-area: icons;
  align-self: start;
  display: grid;
  grid-template-columns: repeat(2, 90px);
  justify-content: center;
  align-content: start;
  gap: 22px 12px;
  padding: 8px 4px;
  z-index: 4;
}
.about__desktop.is-free .about__icons {
  display: contents; /* let icons become direct children of desktop */
}
.desk-ico {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: #fff;
  text-shadow: 1px 1px 0 #000;
  text-align: center;
  cursor: grab;
  padding: 4px;
  width: 80px;
  user-select: none;
  -webkit-user-select: none;
  touch-action: none;
}
.desk-ico:hover span {
  background: var(--w-blue, #0a246a);
  outline: 1px dotted #fff;
  padding: 0 3px;
}
.desk-ico.is-dragging {
  cursor: grabbing;
  z-index: 999;
  opacity: .85;
}
.desk-ico.is-dragging span {
  background: var(--w-blue, #0a246a);
  outline: 1px dotted #fff;
  padding: 0 3px;
}
.desk-ico__img {
  width: 48px; height: 48px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,.6));
  image-rendering: pixelated;
  pointer-events: none;
}
.desk-ico span { line-height: 1.1; max-width: 80px; word-break: break-word; pointer-events: none; }

/* Section title for about — readable on blue desktop */
.about__desktop-head .section-title { color: #fff; }
.about__desktop-head .section-title em { color: #ffd700; text-shadow: 2px 2px 0 #000; }

.about__lead em {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--w-blue);
  font-size: 1.4em;
}
.about__stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 12px;
  margin: 8px 0 4px;
}
.stat {
  padding: 12px 10px;
  background: var(--w-grey-2);
  box-shadow: var(--bevel-out);
  text-align: center;
  transition: transform .15s;
}
.stat:hover { transform: translate(-2px, -2px); box-shadow: var(--bevel-out), 4px 4px 0 var(--w-blue); }
.stat__num {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 32px;
  color: var(--w-blue);
  line-height: 1;
}
.stat__label {
  font-family: var(--f-mono);
  font-size: 12px;
  margin-top: 4px;
  color: var(--w-black);
  letter-spacing: .06em;
  text-transform: uppercase;
}

@media (max-width: 900px) {
  .about__desktop {
    grid-template-columns: 1fr;
    grid-template-areas:
      "head"
      "portrait"
      "icons"
      "notepad"
      "terminal";
    padding: 18px;
  }
  .win--portrait, .win--terminal { max-width: 100%; transform: none; }
  .sticky-note { position: relative; top: 0; right: 0; margin: 0 auto 10px; }
  .about__icons { grid-template-columns: repeat(4, 1fr); }
}

/* Icons used in about scene */
.ico-notepad { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='2' y='1' width='11' height='14' fill='white' stroke='black' stroke-width='.6'/><line x1='4' y1='4' x2='11' y2='4' stroke='black' stroke-width='.5'/><line x1='4' y1='6' x2='11' y2='6' stroke='black' stroke-width='.5'/><line x1='4' y1='8' x2='11' y2='8' stroke='black' stroke-width='.5'/><line x1='4' y1='10' x2='9'  y2='10' stroke='black' stroke-width='.5'/></svg>"); }
.ico-term    { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16'><rect x='1' y='2' width='14' height='12' fill='black' stroke='white' stroke-width='.6'/><text x='3' y='11' font-family='monospace' font-size='8' fill='%2300ff5f'>&gt;_</text></svg>"); }
.ico-floppy  { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><rect x='4' y='4' width='56' height='56' fill='%23222' stroke='black' stroke-width='2'/><rect x='12' y='4' width='32' height='22' fill='%23c0c0c0'/><rect x='18' y='8' width='6' height='14' fill='black'/><rect x='10' y='32' width='44' height='26' fill='%23ddd' stroke='black' stroke-width='1'/><rect x='14' y='36' width='36' height='4' fill='%23999'/></svg>"); }
.ico-cd      { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><defs><radialGradient id='g'><stop offset='0' stop-color='%23ffe9b3'/><stop offset='.5' stop-color='%23a3d8ff'/><stop offset='1' stop-color='%23ff7ad9'/></radialGradient></defs><circle cx='32' cy='32' r='28' fill='url(%23g)' stroke='black' stroke-width='2'/><circle cx='32' cy='32' r='8' fill='%23ddd' stroke='black' stroke-width='1'/><circle cx='32' cy='32' r='2' fill='black'/></svg>"); }


/* ============================================
   WORKS
   ============================================ */

.works {
  padding: 90px 28px;
  max-width: 1500px;
  margin: 0 auto;
}
.works__header { margin-bottom: 118px; }
.works__title-gif {
  display: inline-block;
  width: 1.95em;
  height: 1.95em;
  vertical-align: -0.5em;
  margin-left: 0.28em;
  image-rendering: pixelated;
  filter: drop-shadow(3px 3px 0 rgba(0,0,0,.5));
}
.works .section-title { margin-bottom: 18px; }
.works__title-line {
  display: block;
  white-space: nowrap;
}
@media (min-width: 761px) {
  .works .section-title {
    white-space: nowrap;
  }
  .works__title-line {
    display: inline;
  }
}
.works__hint {
  display: inline-block;
  margin-top: 14px;
  font-family: var(--f-mono);
  font-size: 17px;
  color: var(--w-white);
  padding: 6px 10px;
  background: rgba(0,0,0,.5);
  box-shadow: var(--bevel-in);
}
.works__hint u { color: var(--w-cyan); }

.works__folders {
  display: grid;
  grid-template-columns: repeat(3, minmax(220px, 1fr));
  gap: clamp(26px, 4vw, 64px);
  align-items: end;
  margin: 8px 0 52px;
}

.work-folder {
  position: relative;
  display: grid;
  justify-items: center;
  gap: 12px;
  min-height: 260px;
  color: var(--w-white);
  text-align: center;
  isolation: isolate;
}
.work-folder:focus-visible {
  outline: 2px dotted var(--w-white);
  outline-offset: 6px;
}
.work-folder__stack {
  position: relative;
  width: min(100%, 300px);
  aspect-ratio: 1.08 / 1;
  display: block;
  transform: translateY(0);
  transition: transform .24s ease, filter .24s ease;
}
.work-folder__icon {
  position: absolute;
  left: 50%;
  bottom: 0;
  width: 82%;
  transform: translateX(-50%);
  z-index: 5;
  image-rendering: auto;
  filter: drop-shadow(8px 10px 0 rgba(0,0,0,.45));
  transition: transform .24s ease, filter .24s ease;
}
.work-folder__peek {
  position: absolute;
  left: 50%;
  bottom: 36%;
  width: 34%;
  aspect-ratio: 3 / 4;
  object-fit: cover;
  background: var(--w-white);
  border: 3px solid var(--w-white);
  box-shadow: 0 0 0 1px var(--w-black), 6px 7px 0 rgba(0,0,0,.35);
  filter: contrast(1.05) saturate(1.05);
  transform-origin: 50% 100%;
  transition: transform .3s ease, width .3s ease, bottom .3s ease, filter .3s ease;
  z-index: 2;
}
.work-folder__peek--one {
  transform: translateX(-82%) rotate(-9deg);
}
.work-folder__peek--two {
  width: 37%;
  bottom: 39%;
  transform: translateX(-50%) rotate(2deg);
  z-index: 3;
}
.work-folder__peek--three {
  transform: translateX(-16%) rotate(9deg);
}
.work-folder:hover .work-folder__stack,
.work-folder.is-active .work-folder__stack {
  transform: translateY(-8px);
  filter: saturate(1.08);
}
.work-folder:hover .work-folder__icon,
.work-folder.is-active .work-folder__icon {
  transform: translateX(-50%) scale(1.02);
  filter: drop-shadow(10px 12px 0 rgba(0,0,0,.5)) drop-shadow(0 0 10px rgba(255,255,255,.22));
}
.work-folder:hover .work-folder__peek--one,
.work-folder.is-active .work-folder__peek--one {
  width: 42%;
  bottom: 48%;
  transform: translateX(-112%) rotate(-14deg) scale(1.08);
}
.work-folder:hover .work-folder__peek--two,
.work-folder.is-active .work-folder__peek--two {
  width: 45%;
  bottom: 53%;
  transform: translateX(-50%) rotate(1deg) scale(1.08);
}
.work-folder:hover .work-folder__peek--three,
.work-folder.is-active .work-folder__peek--three {
  width: 42%;
  bottom: 48%;
  transform: translateX(12%) rotate(14deg) scale(1.08);
}
.work-folder__label {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 130px;
  min-height: 34px;
  padding: 4px 14px;
  font-family: var(--f-ui);
  font-size: 22px;
  font-weight: 700;
  line-height: 1;
  text-transform: lowercase;
  color: var(--w-white);
  text-shadow: 2px 2px 0 var(--w-black);
  border: 1px dotted transparent;
}
.work-folder:hover .work-folder__label,
.work-folder.is-active .work-folder__label {
  background: var(--w-blue);
  border-color: var(--w-white);
  box-shadow: 3px 3px 0 rgba(0,0,0,.45);
}

.works-explorer {
  display: none;
  padding: 3px;
  background: var(--w-grey-2);
  color: var(--w-black);
  box-shadow: var(--bevel-out), 10px 10px 0 rgba(0,0,0,.55);
}
.works-explorer.is-open { display: block; }
.works-explorer__toolbar {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  padding: 5px 8px;
  font-family: var(--f-ui);
  font-size: 14px;
  background: var(--w-grey-2);
  border-bottom: 1px solid var(--w-grey-dk);
  box-shadow: inset 0 1px 0 var(--w-white);
}
.works-explorer__body {
  display: grid;
  grid-template-columns: 190px 1fr;
  min-height: 520px;
  background: var(--w-white);
  box-shadow: var(--bevel-in);
}
.works-explorer__sidebar {
  padding: 14px 10px;
  background: #f1f1ea;
  border-right: 2px solid var(--w-grey-dk);
  font-family: var(--f-mono);
  font-size: 19px;
  line-height: 1.2;
}
.works-explorer__tree-title {
  margin-bottom: 12px;
  font-family: var(--f-ui);
  font-size: 15px;
  font-weight: 700;
  color: var(--w-blue);
}
.works-explorer__tree-item {
  display: block;
  width: 100%;
  padding: 2px 3px;
  font: inherit;
  color: var(--w-black);
  text-align: left;
  white-space: nowrap;
}
.works-explorer__tree-item:not(.is-root):hover,
.works-explorer__tree-item:not(.is-root):focus-visible {
  color: var(--w-white);
  background: var(--w-blue-bright);
  outline: 0;
}
.works-explorer__tree-item.is-active {
  color: var(--w-white);
  background: var(--w-blue);
}
.works-explorer__content {
  position: relative;
  min-width: 0;
  padding: clamp(16px, 2vw, 28px);
  background:
    linear-gradient(rgba(10,36,106,.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(10,36,106,.045) 1px, transparent 1px),
    var(--w-white);
  background-size: 18px 18px;
}
.works-panel {
  display: none;
  grid-template-columns: repeat(auto-fit, minmax(min(100%, 300px), 1fr));
  align-items: start;
  gap: clamp(18px, 2.4vw, 34px);
}
.works-panel.is-active {
  display: grid;
  animation: explorer-open .22s ease-out;
}
@keyframes explorer-open {
  from { opacity: 0; transform: translateY(8px) scale(.99); }
}
.works-file {
  min-width: 0;
  padding: 8px;
  background: var(--w-grey-2);
  box-shadow: var(--bevel-out), 5px 5px 0 rgba(0,0,0,.24);
}
.works-file img {
  width: 100%;
  height: auto;
  max-height: 78vh;
  object-fit: contain;
  background: #111;
  box-shadow: var(--bevel-in);
}
.works-file--wide {
  grid-column: span 2;
}
.works-file figcaption {
  display: flex;
  justify-content: space-between;
  gap: 10px;
  padding: 7px 4px 1px;
  font-family: var(--f-mono);
  font-size: 18px;
  line-height: 1;
  color: var(--w-black);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.works-file figcaption span {
  color: var(--w-blue);
}
.works-explorer__status {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 4px 8px;
  font-family: var(--f-mono);
  font-size: 16px;
  background: var(--w-grey-2);
  color: var(--w-black);
  box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #fff;
}

@media (prefers-reduced-motion: reduce) {
  .work-folder__stack,
  .work-folder__icon,
  .work-folder__peek,
  .works-panel.is-active {
    transition: none;
    animation: none;
  }
}

/* ============================================
   MARQUEE BREAK
   ============================================ */

.marquee-break {
  background: var(--w-white);
  border-top: 2px solid var(--w-blue);
  border-bottom: 2px solid var(--w-blue);
  padding: 12px 0;
  overflow: hidden;
  margin: 60px 0;
  transform: rotate(-1.5deg) scaleX(1.05);
  box-shadow: 0 6px 0 rgba(0,0,0,.4);
}
.marquee-break__track {
  display: flex;
  white-space: nowrap;
  animation: marquee 22s linear infinite reverse;
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 24px;
  letter-spacing: .04em;
  color: var(--w-blue);
  text-transform: uppercase;
}
.marquee-break__track span { padding-right: 24px; }

/* ============================================
   FAQ
   ============================================ */

.faq {
  padding: 80px 28px;
  max-width: 1400px;
  margin: 0 auto;
}

.faq__grid {
  display: grid;
  grid-template-columns: 280px 1fr;
  gap: 36px;
  align-items: start;
}
.faq__side { position: sticky; top: 60px; display: flex; flex-direction: column; gap: 14px; align-items: center; text-align: center; }
.faq__icon {
  width: 220px;
  image-rendering: pixelated;
  filter: drop-shadow(4px 4px 0 rgba(0,0,0,.5));
  animation: bob 3s ease-in-out infinite;
}
@keyframes bob { 50% { transform: translateY(-10px) rotate(-3deg); } }

.faq__side-caption {
  font-family: var(--f-mono);
  font-size: 15px;
  color: var(--w-white);
  padding: 6px 10px;
  background: rgba(0,0,0,.5);
  box-shadow: var(--bevel-in);
}
.faq__side-caption u { color: var(--w-cyan); }

.faq__list { display: flex; flex-direction: column; gap: 8px; }

.faq-item {
  background: var(--w-grey-2);
  box-shadow: var(--bevel-out);
  color: var(--w-black);
}
.faq-item summary {
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 16px;
  font-family: var(--f-ui);
  font-weight: 600;
  font-size: 18px;
  gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item__toggle {
  font-family: var(--f-mono);
  font-size: 22px;
  color: var(--w-blue);
  width: 28px;
  height: 28px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--w-white);
  box-shadow: var(--bevel-out);
}
.faq-item[open] summary {
  background: linear-gradient(90deg, #0a246a, #1e4acb);
  color: #fff;
}
.faq-item[open] .faq-item__toggle { font-size: 26px; }

.faq-item__a {
  padding: 14px 20px 18px;
  background: var(--w-white);
  font-family: var(--f-mono);
  font-size: 18px;
  color: var(--w-black);
  line-height: 1.45;
  box-shadow: var(--bevel-in);
  animation: fade-down .25s ease-out;
}
@keyframes fade-down { from { opacity: 0; transform: translateY(-6px); } }

@media (max-width: 900px) {
  .faq__grid { grid-template-columns: 1fr; }
  .faq__side { position: static; }
}

/* ============================================
   CONTACT
   ============================================ */

.contact {
  position: relative;
  padding: 80px 28px 120px;
  max-width: 1400px;
  margin: 0 auto;
}

.contact__error-pop {
  position: absolute;
  top: 40px;
  right: 28px;
  max-width: 340px;
  z-index: 5;
  animation: shake 1.6s ease-in-out infinite;
  transform-origin: center;
}
@keyframes shake {
  0%, 100% { transform: rotate(0); }
  10% { transform: rotate(-2deg) translateX(-2px); }
  20% { transform: rotate(2deg) translateX(2px); }
  30% { transform: rotate(-1deg); }
  40% { transform: rotate(1deg); }
  50%, 90% { transform: rotate(0); }
}
.err-win {
  background: var(--w-grey-2);
  box-shadow: var(--bevel-out), 6px 6px 0 rgba(0,0,0,.5);
  color: var(--w-black);
  padding: 3px;
}
.err-win__title {
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: linear-gradient(90deg, #0a246a, #1e4acb);
  color: #fff;
  padding: 4px 8px;
  font-family: var(--f-ui);
  font-weight: 700;
}
.err-win__title button {
  width: 22px; height: 20px;
  background: #d84040; color: #fff;
  font-weight: 700;
  box-shadow: var(--bevel-out);
}
.err-win__body {
  display: flex;
  gap: 14px;
  padding: 18px 16px;
}
.err-win__icon {
  width: 48px; height: 48px;
  display: inline-flex; align-items: center; justify-content: center;
  background: #f5c842;
  color: #000;
  font-family: var(--f-ui);
  font-weight: 900;
  font-size: 30px;
  border-radius: 50%;
  border: 2px solid #000;
  flex: none;
}
.err-win__msg {
  font-family: var(--f-ui);
  font-size: 17px;
  color: var(--w-black);
  margin-bottom: 14px;
  line-height: 1.35;
}
.err-win__msg em {
  font-family: var(--f-script);
  font-size: 1.6em;
  color: var(--w-blue);
  font-style: italic;
}
.err-win__ok {
  padding: 5px 22px;
  background: var(--w-grey-2);
  color: var(--w-black);
  box-shadow: var(--bevel-out);
  font-family: var(--f-ui);
  font-weight: 600;
}
.err-win__ok:active { box-shadow: var(--bevel-in); }

.contact__title { margin-bottom: 40px; }

.contact__grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.contact-card {
  position: relative;
  display: flex;
  flex-direction: column;
  padding: 22px 20px 20px;
  background: var(--w-grey-2);
  color: var(--w-black);
  box-shadow: var(--bevel-out);
  transition: transform .1s;
  overflow: hidden;
}
.contact-card:hover { transform: translate(-2px, -2px); box-shadow: var(--bevel-out), 5px 5px 0 var(--w-blue); }
.contact-card:active { box-shadow: var(--bevel-in); transform: translate(1px, 1px); }

.contact-card__label {
  font-family: var(--f-mono);
  font-size: 20px;
  font-weight: 700;
  color: var(--w-blue);
  letter-spacing: .1em;
  margin-bottom: 8px;
  padding-right: 74px;
}
.contact-card__value {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 22px;
  color: var(--w-black);
  text-transform: lowercase;
  letter-spacing: -.01em;
  word-break: break-word;
}
.contact-card__arrow {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 24px;
  color: var(--w-blue);
  font-family: var(--f-mono);
}

.contact-card--alt {
  background: linear-gradient(180deg, #1e4acb, #0a246a);
  color: var(--w-white);
}
.contact-card--alt .contact-card__label,
.contact-card--alt .contact-card__value,
.contact-card--alt .contact-card__arrow { color: var(--w-white); }

/* ============================================
   FOOTER
   ============================================ */

.footer {
  padding: 60px 28px 40px;
  text-align: center;
  background: var(--w-black);
  color: var(--w-white);
  border-top: 2px solid var(--w-blue);
}
.footer__row {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  font-family: var(--f-mono);
  font-size: 16px;
  color: var(--w-white);
  margin-bottom: 22px;
}
.footer__row .blink { color: var(--w-cyan); }
.footer__big {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(3rem, 18vw, 15rem);
  letter-spacing: -.04em;
  text-transform: uppercase;
  line-height: .8;
  color: var(--w-white);
  text-shadow:
    4px 4px 0 var(--w-blue),
    8px 8px 0 rgba(255,255,255,.08);
  white-space: normal;
}
.footer__big span {
  font-family: var(--f-script);
  font-style: italic;
  color: var(--w-white);
  text-shadow: 3px 3px 0 var(--w-blue);
}

/* ============================================
   LIGHTBOX
   ============================================ */

.lightbox {
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 9500;
  padding: 40px;
}
.lightbox.is-open { display: flex; animation: pop-in .2s ease-out; }
@keyframes pop-in { from { opacity: 0; transform: scale(.95); } }

.lightbox__win {
  background: var(--w-grey-2);
  box-shadow: var(--bevel-out), 8px 8px 0 rgba(0,0,0,.7);
  padding: 3px;
  max-width: min(92vw, 1000px);
  max-height: 92vh;
  display: flex;
  flex-direction: column;
}
.lightbox__img {
  max-width: 100%;
  max-height: 75vh;
  object-fit: contain;
  background: #000;
  padding: 3px;
  box-shadow: var(--bevel-in);
}
.lightbox__status {
  padding: 3px 10px;
  background: var(--w-grey-2);
  font-family: var(--f-mono);
  font-size: 14px;
  color: var(--w-black);
  display: flex;
  justify-content: space-between;
  box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #fff;
}

/* ============================================
   SOFTWARE / TOOLS BLOCK
   ============================================ */
.software {
  padding: 20px 28px 80px;
  max-width: 1400px;
  margin: 0 auto;
}
.win--software { padding: 3px; }
.software__body {
  background: var(--w-grey-2);
  color: var(--w-black);
  padding: 26px 28px 18px;
}
.software__body .section-tag { margin-bottom: 14px; }
.software__title {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: clamp(2rem, 5vw, 3.6rem);
  text-transform: uppercase;
  color: var(--w-black);
  letter-spacing: -.02em;
  margin-bottom: 26px;
  text-shadow: 2px 2px 0 var(--w-blue);
}
.software__title em {
  font-family: var(--f-script);
  font-style: italic;
  font-weight: 400;
  font-size: 1.4em;
  color: var(--w-blue);
  text-shadow: none;
}
.software__grid {
  list-style: none;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(140px, 1fr));
  gap: 14px;
}
.sw {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 16px 10px 12px;
  background: var(--w-white);
  box-shadow: var(--bevel-out);
  text-align: center;
  transition: transform .15s, box-shadow .15s;
}
.sw:hover {
  transform: translate(-2px,-2px);
  box-shadow: var(--bevel-out), 5px 5px 0 var(--w-blue);
}
.sw__ico {
  width: 56px;
  height: 56px;
  background-size: contain;
  background-repeat: no-repeat;
  background-position: center;
  image-rendering: pixelated;
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,.4));
}
.sw__name {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 16px;
  color: var(--w-black);
}
.sw__ver {
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--w-blue);
  letter-spacing: .04em;
}
.software__status {
  margin-top: 18px;
  display: flex;
  justify-content: space-between;
  padding: 4px 10px;
  font-family: var(--f-mono);
  font-size: 13px;
  color: var(--w-black);
  box-shadow: inset 1px 1px 0 #808080, inset -1px -1px 0 #fff;
}

/* Software icons (Adobe-style squares + tools) */
.ico-ai { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><rect x='2' y='2' width='60' height='60' rx='8' fill='%23330000' stroke='%23ff7a3d' stroke-width='2'/><text x='32' y='44' font-family='Georgia' font-weight='900' font-style='italic' font-size='30' text-anchor='middle' fill='%23ff7a3d'>Ai</text></svg>"); }
.ico-ps { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><rect x='2' y='2' width='60' height='60' rx='8' fill='%23001029' stroke='%2331a8ff' stroke-width='2'/><text x='32' y='44' font-family='Georgia' font-weight='900' font-style='italic' font-size='30' text-anchor='middle' fill='%2331a8ff'>Ps</text></svg>"); }
.ico-id { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><rect x='2' y='2' width='60' height='60' rx='8' fill='%23320013' stroke='%23ff3d7a' stroke-width='2'/><text x='32' y='44' font-family='Georgia' font-weight='900' font-style='italic' font-size='30' text-anchor='middle' fill='%23ff3d7a'>Id</text></svg>"); }
.ico-ae { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><rect x='2' y='2' width='60' height='60' rx='8' fill='%231a0033' stroke='%239d7dff' stroke-width='2'/><text x='32' y='44' font-family='Georgia' font-weight='900' font-style='italic' font-size='30' text-anchor='middle' fill='%239d7dff'>Ae</text></svg>"); }
.ico-lr { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><rect x='2' y='2' width='60' height='60' rx='8' fill='%2300141f' stroke='%2331c5f0' stroke-width='2'/><text x='32' y='44' font-family='Georgia' font-weight='900' font-style='italic' font-size='30' text-anchor='middle' fill='%2331c5f0'>Lr</text></svg>"); }
.ico-fig { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><circle cx='22' cy='14' r='10' fill='%23f24e1e'/><circle cx='42' cy='14' r='10' fill='%23ff7262'/><circle cx='22' cy='32' r='10' fill='%23a259ff'/><circle cx='42' cy='32' r='10' fill='%231abcfe'/><circle cx='22' cy='50' r='10' fill='%230acf83'/></svg>"); }
.ico-pro { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><rect x='4' y='4' width='56' height='56' rx='12' fill='%23111'/><path d='M16 44 Q28 8 40 32 T56 24' stroke='%23ffe066' stroke-width='4' fill='none' stroke-linecap='round'/><circle cx='52' cy='22' r='4' fill='%23ff5fa8'/></svg>"); }
.ico-blender { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><circle cx='32' cy='34' r='22' fill='%23ea7600'/><circle cx='32' cy='34' r='13' fill='white'/><circle cx='28' cy='32' r='5' fill='%23005377'/><circle cx='28' cy='32' r='2' fill='black'/></svg>"); }
.ico-mspaint { background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 64 64'><rect x='4' y='4' width='56' height='56' fill='%23d4d0c8' stroke='black' stroke-width='2'/><rect x='8' y='8' width='48' height='6' fill='%230a246a'/><rect x='10' y='18' width='8' height='8' fill='red'/><rect x='20' y='18' width='8' height='8' fill='%2300a4ef'/><rect x='30' y='18' width='8' height='8' fill='%23ffd700'/><rect x='40' y='18' width='8' height='8' fill='%23008000'/><path d='M14 56 L50 32 L52 38 L18 60 Z' fill='%23ff5fa8' stroke='black' stroke-width='1.2'/></svg>"); }

@media (max-width: 600px) {
  .software__grid { grid-template-columns: repeat(2, 1fr); }
}

/* ============================================
   WIN2000 BOOT LOADER
   ============================================ */
.boot {
  position: fixed;
  inset: 0;
  z-index: 99999;
  background: #000;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  color: #fff;
  font-family: var(--f-ui);
  transition: opacity .55s ease, visibility .55s;
}
.boot.is-done { opacity: 0; visibility: hidden; pointer-events: none; }
.boot__inner {
  width: min(560px, 90vw);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 38px;
  padding: 30px;
}
.boot__brand { text-align: center; }
.boot__brand-top {
  font-family: var(--f-mono);
  font-size: 14px;
  letter-spacing: .25em;
  color: #c8d6ff;
  text-transform: uppercase;
  margin-bottom: 10px;
}
.boot__brand-row {
  display: inline-flex;
  align-items: center;
  gap: 18px;
}
.boot__flag {
  width: 60px; height: 50px;
  display: inline-grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 3px;
  transform: skewX(-12deg) perspective(80px) rotateY(-12deg);
  filter: drop-shadow(2px 2px 0 rgba(0,0,0,.6));
}
.boot__flag span:nth-child(1) { background: #ff3f3f; }
.boot__flag span:nth-child(2) { background: #2ec2ff; }
.boot__flag span:nth-child(3) { background: #ffd53f; }
.boot__flag span:nth-child(4) { background: #2ec24c; }
.boot__brand-text { text-align: left; }
.boot__brand-sm {
  font-family: var(--f-display);
  font-size: 16px;
  letter-spacing: .12em;
  color: #c8d6ff;
  text-transform: uppercase;
}
.boot__brand-lg {
  font-family: var(--f-display);
  font-weight: 600;
  font-size: 56px;
  line-height: .9;
  color: #fff;
  letter-spacing: -.02em;
  text-shadow: 3px 3px 0 #0a246a;
}
.boot__brand-prof {
  margin-top: 8px;
  font-family: var(--f-script);
  font-style: italic;
  font-size: 28px;
  color: #ffd700;
  text-shadow: 2px 2px 0 #5a3a00;
}

.boot__bar { width: 100%; }
.boot__bar-track {
  height: 14px;
  background: #050a18;
  box-shadow: inset 1px 1px 0 #000, inset -1px -1px 0 #2a3a6a;
  padding: 1px;
  display: flex;
  overflow: hidden;
}
.boot__bar-fill {
  width: 30px;
  height: 100%;
  background:
    repeating-linear-gradient(90deg,
      #00b3ff 0 8px,
      #003da8 8px 12px);
  box-shadow: 0 0 8px #00b3ff;
  animation: boot-slide 1.4s linear infinite;
}
@keyframes boot-slide {
  0%   { transform: translateX(-30px); }
  100% { transform: translateX(540px); }
}
.boot__bar-label {
  margin-top: 12px;
  text-align: center;
  font-family: var(--f-mono);
  font-size: 16px;
  color: #c8d6ff;
  letter-spacing: .12em;
}
.boot__dots span {
  animation: boot-dots 1.2s steps(3, end) infinite;
  opacity: 0;
}
.boot__dots span:nth-child(1) { animation-delay: 0s; }
.boot__dots span:nth-child(2) { animation-delay: .25s; }
.boot__dots span:nth-child(3) { animation-delay: .5s; }
@keyframes boot-dots { 50%, 100% { opacity: 1; } }

.boot__copy {
  font-family: var(--f-mono);
  font-size: 12px;
  color: #6c7ba8;
  letter-spacing: .1em;
}

/* ============================================
   ANIMATIONS — slam-in
   ============================================ */
@keyframes slam-in-l {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: none; }
}
@keyframes slam-in-r {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Star/sparkle */
.sparkle {
  position: fixed;
  pointer-events: none;
  z-index: 9999;
  color: var(--w-cyan);
  text-shadow: 0 0 8px var(--w-cyan), 0 0 2px var(--w-white);
  font-family: var(--f-mono);
  font-size: 14px;
  transition: transform .8s ease-out, opacity .8s ease-out;
  transform: translate(-50%, -50%);
  will-change: transform, opacity;
}

/* ============================================
   REDUCED MOTION
   ============================================ */

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: .01ms !important;
    transition-duration: .01ms !important;
  }
}

/* ============================================
   RESPONSIVE — taskbar tweaks
   ============================================ */

@media (max-width: 760px) {
  html,
  body {
    max-width: 100%;
    overscroll-behavior-x: none;
  }
  .taskbar {
    height: auto;
    min-height: 34px;
    flex-wrap: nowrap;
    align-items: stretch;
    padding-bottom: 3px;
  }
  .taskbar__divider { display: none; }
  .start-btn {
    flex: none;
    width: 34px;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 0 8px 8px 0;
  }
  .start-btn__label { display: none; }
  .taskbar__tabs {
    flex: 1 1 auto;
    width: auto;
    display: flex;
    padding-top: 0;
    overflow: hidden;
  }
  .taskbar__tray { display: none; }
  .tb-tab {
    flex: 1 1 0;
    width: auto;
    max-width: none;
    justify-content: center;
    padding: 0 4px;
    font-size: 11px;
    gap: 4px;
  }
  .tb-tab > span:last-child {
    display: inline;
    overflow: hidden;
    text-overflow: ellipsis;
  }
  .tb-tab__ico {
    width: 14px;
    height: 14px;
  }
  .hero {
    padding: 6px 18px 40px;
    min-height: auto;
  }
  .hero__marquee { margin: 0 -18px 24px; }
  .hero__grid {
    grid-template-columns: 1fr;
    gap: 24px;
  }
  .hero__right {
    order: 1;
    width: min(100%, 360px);
    margin: 0 auto;
  }
  .hero__left {
    order: 2;
    padding-top: 0;
    width: min(100%, 360px);
    margin: 0 auto;
  }
  .hero__title-line--script {
    white-space: nowrap;
    display: block;
    margin-left: 0;
    font-size: clamp(3.5rem, 18vw, 5.7rem);
  }
  .hero__name--jur { margin-left: 0.18em; }
  .hero__intro,
  .hero__kicker,
  .hero__title {
    margin-left: 2px;
    margin-right: 2px;
  }
  .hero__intro { font-size: 19px; }
  .hero__cta-row {
    width: 100%;
    justify-content: space-between;
  }
  .hero__cta-row .btn {
    flex: 1 1 0;
    justify-content: center;
    min-width: 0;
  }
  .instagram-disk-gif {
    width: 92px !important;
    height: 92px !important;
    transform: translate(24%, 32%);
  }

  .about {
    padding: 64px 18px 50px;
  }
  .about__desktop {
    padding: 18px 18px 86px;
    overflow: visible;
  }
  .about__desktop-head .section-title {
    font-size: clamp(2.6rem, 14vw, 4.4rem);
    line-height: .98;
    text-shadow: 2px 2px 0 #000, 4px 4px 0 rgba(255,255,255,.08);
  }
  .about__desktop-head .section-title em {
    font-size: 1.2em;
  }
  .win--notepad,
  .win--terminal,
  .win--portrait {
    width: 100%;
  }
  .win--portrait .portrait-frame {
    height: clamp(280px, 92vw, 360px);
  }
  .about__icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px 6px;
    justify-content: stretch;
    padding-inline: 0;
  }
  .desk-ico {
    width: 100%;
    min-width: 0;
    font-size: 12px;
  }
  .desk-ico__img {
    width: 42px;
    height: 42px;
  }
  .desk-ico span {
    max-width: 100%;
  }
  .notepad__body,
  .terminal {
    min-height: 0;
  }
  .notepad__body {
    height: auto;
    overflow: visible;
    padding: 18px 14px;
    font-size: 16px;
  }
  .notepad__body .about__lead { font-size: 19px; }
  .about__stats { gap: 8px; }
  .stat { padding: 10px 6px; }
  .stat__num { font-size: 28px; }
  .stat__label { font-size: 11px; letter-spacing: .02em; }
  .terminal {
    height: 230px;
    overflow: hidden;
  }
  .terminal::after { display: none; }
  .sticky-note {
    position: absolute;
    top: auto;
    right: 12px;
    bottom: 10px;
    margin: 0;
    width: 88px;
    transform: rotate(4deg);
    z-index: 3;
  }
  .sticky-note__gif {
    width: 100% !important;
    max-width: 88px;
  }

  .works {
    padding: 64px 18px;
  }
  .works__header {
    position: relative;
    min-height: clamp(150px, 42vw, 210px);
    margin-bottom: 130px;
  }
  .works .section-title {
    max-width: none;
    font-size: clamp(3.1rem, 15vw, 5.2rem);
    line-height: 1;
    margin-bottom: 18px;
    overflow-wrap: normal;
  }
  .works__title-line {
    display: block;
  }
  .works__title-line:last-child {
    display: block;
  }
  .works .section-title em {
    display: inline;
    font-size: 1.08em;
  }
  .works__title-gif {
    position: absolute;
    top: 54px;
    right: 2px;
    width: clamp(118px, 32vw, 164px);
    height: clamp(118px, 32vw, 164px);
    margin-left: 0;
    vertical-align: 0;
  }
  .works__hint {
    position: relative;
    z-index: 6;
    margin-top: 16px;
    font-size: 20px;
  }
  .works__folders {
    grid-template-columns: 1fr;
    row-gap: 126px;
    column-gap: 28px;
    margin-bottom: 34px;
  }
  .work-folder {
    min-height: 224px;
  }
  .work-folder__stack {
    width: min(78vw, 280px);
  }
  .work-folder__peek {
    border-width: 2px;
  }
  .works-explorer {
    box-shadow: var(--bevel-out), 6px 6px 0 rgba(0,0,0,.5);
  }
  .works-explorer__body {
    display: block;
    min-height: 0;
  }
  .works-explorer__sidebar {
    display: none;
  }
  .works-explorer__content {
    padding: 14px;
  }
  .works-panel {
    grid-template-columns: 1fr;
    gap: 18px;
  }
  .works-file,
  .works-file--wide {
    grid-column: auto;
  }
  .works-file img {
    max-height: none;
  }
  .works-file figcaption {
    font-size: 16px;
  }

  .faq,
  .contact,
  .footer {
    padding-left: 18px;
    padding-right: 18px;
  }
  .contact__error-pop { display: none; }
  .footer__big {
    font-size: clamp(2.6rem, 16vw, 5.6rem);
    white-space: normal;
    overflow-wrap: anywhere;
    line-height: 0.9;
  }
}

@media (max-width: 900px) {
  .taskbar {
    flex-wrap: nowrap;
  }

  .taskbar__divider,
  .taskbar__tray {
    display: none;
  }

  .start-btn {
    flex: none;
    width: 34px;
    justify-content: center;
    gap: 0;
    padding: 0;
    border-radius: 0 8px 8px 0;
  }

  .start-btn__label {
    display: none;
  }

  .taskbar__tabs {
    flex: 1 1 auto;
    overflow: hidden;
  }

  .tb-tab {
    flex: 1 1 0;
    justify-content: center;
    padding-inline: 4px;
  }

  .about__desktop {
    max-width: 100%;
    overflow: clip;
  }

  .about__desktop > .win,
  .about__icons {
    min-width: 0;
    max-width: 100%;
  }

  .win--portrait,
  .win--notepad,
  .win--terminal {
    width: calc(100% - 16px);
    justify-self: center;
  }

  .about__icons {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    justify-content: stretch;
    gap: 18px 6px;
    padding-inline: 0;
  }

  .desk-ico {
    width: 100%;
    min-width: 0;
    font-size: 12px;
  }

  .desk-ico__img {
    width: 42px;
    height: 42px;
  }

  .desk-ico span {
    max-width: 100%;
  }
}

@media (max-width: 900px) {
  .about__desktop.is-free {
    display: grid;
    min-height: 0 !important;
  }
  .about__desktop.is-free .about__desktop-head,
  .about__desktop.is-free .win--portrait,
  .about__desktop.is-free .win--notepad,
  .about__desktop.is-free .win--terminal,
  .about__desktop.is-free .sticky-note,
  .about__desktop.is-free .desk-ico {
    position: relative;
    left: auto !important;
    top: auto !important;
    width: auto;
    height: auto;
    z-index: auto;
  }
  .about__desktop.is-free .win {
    min-width: 0;
    min-height: 0;
  }
  .about__desktop.is-free .win__resize { display: none; }
}
