/* ============================================================
   SAVAID 95 — a Windows 95 desktop portfolio
   Classic gray 3D bevels · teal desktop · MS Sans Serif
   ============================================================ */

:root {
  --face:    #c0c0c0;   /* classic 3D face gray */
  --face-2:  #d4d0c8;
  --white:   #ffffff;
  --light:   #dfdfdf;
  --shadow:  #808080;   /* dark bevel */
  --dark:    #000000;   /* darkest bevel */
  --navy:    #000080;   /* active titlebar */
  --navy-2:  #1084d0;
  --teal:    #008080;   /* the desktop */
  --text:    #000000;
  --disabled:#808080;
  --sel:     #000080;
  --font: "MS Sans Serif", "Pixelated MS Sans Serif", Tahoma, Geneva, Verdana, sans-serif;
}

* { box-sizing: border-box; }
[hidden] { display: none !important; }
html, body { margin: 0; padding: 0; height: 100%; }

body {
  font-family: var(--font);
  font-size: 12px;
  color: var(--text);
  background: var(--teal);
  overflow: hidden;
  -webkit-font-smoothing: none;
}
a { color: var(--navy); }

/* ══════════════════════════════════════════════════════════════
   BOOT SCREEN
   ══════════════════════════════════════════════════════════════ */
#boot-screen {
  position: fixed; inset: 0; z-index: 9999;
  background: #000; color: #fff;
  display: flex; flex-direction: column; align-items: center; justify-content: center;
  transition: opacity .6s ease;
}
#boot-screen.fade-out { opacity: 0; pointer-events: none; }
.boot-logo { display: flex; align-items: center; gap: 20px; margin-bottom: 8px; }
.boot-flag {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  width: 64px; height: 64px; gap: 4px; transform: skewX(-12deg);
}
.boot-flag .fl { border-radius: 2px; }
.fl-r { background: #ff3b30; } .fl-g { background: #34c759; }
.fl-b { background: #0a84ff; } .fl-y { background: #ffcc00; }
.boot-brand { font-family: Tahoma, sans-serif; font-size: 46px; font-weight: 700; letter-spacing: -1px; }
.boot-brand span { color: #b0b0b0; font-weight: 400; }
.boot-bottom { position: absolute; bottom: 90px; width: 320px; }
.boot-bar {
  height: 20px; background: #000; border: 2px solid;
  border-color: var(--shadow) var(--white) var(--white) var(--shadow);
  padding: 2px; overflow: hidden;
}
.boot-bar-fill {
  height: 100%; width: 0;
  background: repeating-linear-gradient(90deg, var(--navy) 0 14px, transparent 14px 18px);
  background-size: 18px 100%;
  animation: bootbar 3s linear forwards;
}
@keyframes bootbar { from { width: 0; } to { width: 100%; } }
.boot-status { text-align: center; margin-top: 12px; font-family: var(--font); font-size: 12px; color: #ddd; }

/* ══════════════════════════════════════════════════════════════
   DESKTOP
   ══════════════════════════════════════════════════════════════ */
#desktop {
  position: fixed; inset: 0 0 30px 0;
  background: var(--teal);
  opacity: 0; transition: opacity .4s ease;
  overflow: hidden;
}
#desktop.visible { opacity: 1; }

/* Desktop icons */
#icon-bar {
  position: absolute; top: 10px; left: 10px;
  display: flex; flex-direction: column; flex-wrap: wrap;
  gap: 4px; max-height: calc(100vh - 60px); align-content: flex-start;
}
.desktop-icon {
  width: 82px; padding: 6px 4px; text-align: center;
  cursor: pointer; user-select: none; border: 1px dotted transparent;
}
.desktop-icon .di-img {
  font-size: 32px; line-height: 40px; height: 40px;
  filter: drop-shadow(1px 1px 0 rgba(0,0,0,.35));
}
.desktop-icon span {
  display: inline-block; color: #fff; font-size: 11px; margin-top: 2px;
  padding: 1px 3px; text-shadow: 1px 1px 0 rgba(0,0,0,.6); line-height: 1.25;
}
.desktop-icon.selected { border: 1px dotted #fff; }
.desktop-icon.selected span { background: var(--navy); color: #fff; }
.desktop-icon:focus { outline: none; }
.desktop-icon:focus span { background: var(--navy); color: #fff; }

/* ══════════════════════════════════════════════════════════════
   WINDOWS
   ══════════════════════════════════════════════════════════════ */
.win-window {
  position: absolute;
  background: var(--face);
  border: 2px solid;
  border-color: var(--white) var(--dark) var(--dark) var(--white);
  box-shadow: inset 1px 1px 0 var(--face-2), inset -1px -1px 0 var(--shadow), 2px 2px 3px rgba(0,0,0,.25);
  display: flex; flex-direction: column;
  min-width: 260px; min-height: 160px;
}
.win-window.win-active { z-index: 500; }

.win-titlebar {
  display: flex; align-items: center; gap: 5px;
  height: 22px; padding: 0 2px 0 3px; margin: 2px;
  background: linear-gradient(90deg, var(--navy), var(--navy-2));
  color: #fff; cursor: default; user-select: none; flex-shrink: 0;
}
.win-window:not(.win-active) .win-titlebar { background: #808080; }
.win-tico { font-size: 13px; line-height: 1; }
.win-title { flex: 1; font-weight: 700; font-size: 12px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.win-controls { display: flex; gap: 2px; }
.win-btn {
  width: 17px; height: 15px; padding: 0; margin: 0;
  background: var(--face); color: #000; font-family: var(--font);
  font-size: 10px; font-weight: 700; line-height: 12px; text-align: center; cursor: pointer;
  border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  box-shadow: inset 1px 1px 0 var(--face), inset -1px -1px 0 var(--shadow);
  display: flex; align-items: center; justify-content: center;
}
.win-btn:active { border-color: var(--dark) var(--white) var(--white) var(--dark); box-shadow: inset 1px 1px 0 var(--shadow); }

.win-menubar {
  display: flex; gap: 2px; padding: 1px 4px; margin: 0 2px;
  font-size: 12px; flex-shrink: 0;
}
.win-menubar span { padding: 2px 7px; cursor: default; }
.win-menubar span:hover { background: var(--navy); color: #fff; }

.win-body {
  flex: 1; margin: 2px; padding: 12px 14px; overflow-y: auto;
  background: var(--white);
  border: 2px solid; border-color: var(--dark) var(--white) var(--white) var(--dark);
  box-shadow: inset 1px 1px 0 var(--shadow);
  line-height: 1.5;
}
.win-body h2 { font-size: 15px; margin: 0 0 8px; }
.win-body h3 { font-size: 13px; margin: 12px 0 5px; }
.win-body p { margin: 0 0 9px; }
.win-body ul { margin: 4px 0 9px; padding-left: 20px; }
.win-body li { margin-bottom: 3px; }
.win-body a { color: var(--navy); }
.win-body code { background: #e8e8e8; padding: 0 3px; font-family: "Courier New", monospace; font-size: 11px; }
.win-sep { border: none; border-top: 1px solid var(--shadow); border-bottom: 1px solid var(--white); margin: 12px 0; }

.win-statusbar { display: flex; gap: 3px; margin: 0 2px 2px; padding: 1px; flex-shrink: 0; }
.sb-cell {
  font-size: 11px; padding: 2px 6px;
  border: 2px solid; border-color: var(--shadow) var(--white) var(--white) var(--shadow);
}
.sb-grow { flex: 1; }

.win-resize { position: absolute; right: 0; bottom: 0; width: 16px; height: 16px; cursor: nwse-resize; }

/* scrollbars — chunky Win95 */
.win-body::-webkit-scrollbar { width: 16px; height: 16px; }
.win-body::-webkit-scrollbar-track { background: #dfdfdf; }
.win-body::-webkit-scrollbar-thumb {
  background: var(--face);
  border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
}

/* ── About window ── */
.about-header { display: flex; gap: 14px; align-items: center; margin-bottom: 4px; }
.about-photo {
  width: 76px; height: 76px; flex-shrink: 0; overflow: hidden;
  display: grid; place-items: center; background: #dfdfdf;
  border: 2px solid; border-color: var(--dark) var(--white) var(--white) var(--dark);
}
.about-photo img { width: 100%; height: 100%; object-fit: cover; }
.about-name { font-size: 18px; font-weight: 700; }
.about-role { font-size: 11px; color: var(--navy); font-weight: 700; margin: 2px 0 6px; }
.about-tags, .tool-tags { display: flex; flex-wrap: wrap; gap: 5px; }
.tag {
  font-size: 11px; padding: 2px 7px; background: var(--face);
  border: 2px solid; border-color: var(--white) var(--shadow) var(--shadow) var(--white);
}
.skill-row { display: flex; align-items: center; gap: 8px; margin: 5px 0; }
.skill-name { width: 150px; font-size: 12px; }
.skill-bar {
  flex: 1; height: 16px; background: var(--white); padding: 2px;
  border: 2px solid; border-color: var(--dark) var(--white) var(--white) var(--dark);
  overflow: hidden;
}
.skill-fill {
  display: block; height: 100%; width: 0;
  background: repeating-linear-gradient(90deg, var(--navy) 0 9px, transparent 9px 12px);
  background-size: 12px 100%;
  transition: width .8s steps(12);
}

/* ── Project / research / timeline / cert cards ── */
.project-card, .research-card, .timeline-item, .cert-card, .recycle-item {
  margin-bottom: 12px; padding: 10px;
  background: #f4f4f4;
  border: 2px solid; border-color: var(--white) var(--shadow) var(--shadow) var(--white);
}
.project-card h3, .research-card h3 { margin-top: 0; }
.project-stack, .research-meta { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
.stack-tag, .research-tag { font-size: 10.5px; padding: 2px 7px; background: var(--face); border: 1px solid var(--shadow); }
.project-links { margin-top: 9px; }
.btn-95 {
  display: inline-block; padding: 4px 14px; font-size: 12px; text-decoration: none;
  color: #000; background: var(--face); cursor: pointer;
  border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  box-shadow: inset 1px 1px 0 var(--face), inset -1px -1px 0 var(--shadow);
}
.btn-95:active { border-color: var(--dark) var(--white) var(--white) var(--dark); }

.timeline-date { font-size: 11px; font-weight: 700; color: var(--navy); }
.timeline-item h3 { margin: 3px 0 2px; }
.timeline-company { font-size: 11px; color: var(--shadow); margin-bottom: 4px; }

.cert-card { display: flex; align-items: center; gap: 12px; }
.cert-badge { font-size: 28px; flex-shrink: 0; }
.cert-info { flex: 1; }
.cert-name { font-weight: 700; font-size: 12.5px; }
.cert-issuer { font-size: 11px; color: var(--shadow); }
.cert-status { font-size: 10px; font-weight: 700; padding: 2px 8px; white-space: nowrap; border: 2px solid; }
.cert-status.earned   { background: #d7f0d7; border-color: var(--white) #4a8a4a #4a8a4a var(--white); color: #1a5a1a; }
.cert-status.progress { background: #fff4d0; border-color: var(--white) #b08a20 #b08a20 var(--white); color: #7a5a00; }
.cert-status.pursuing { background: #dfe4ee; border-color: var(--white) var(--shadow) var(--shadow) var(--white); color: var(--navy); }

.contact-grid { display: grid; grid-template-columns: 1fr; gap: 6px; margin: 8px 0; }
.contact-item {
  display: flex; align-items: center; gap: 10px; padding: 7px 10px; text-decoration: none; color: #000;
  background: #f4f4f4; border: 2px solid; border-color: var(--white) var(--shadow) var(--shadow) var(--white);
}
.contact-item:hover { background: var(--navy); color: #fff; }
.contact-item:hover .contact-label, .contact-item:hover .contact-value { color: #fff; }
.contact-icon { font-size: 20px; }
.contact-label { font-size: 10px; color: var(--shadow); text-transform: uppercase; }
.contact-value { font-size: 12px; font-weight: 700; }

.recycle-header h2 { margin-bottom: 2px; }
.recycle-header p { font-size: 11px; color: var(--shadow); }
.recycle-item-title { font-weight: 700; font-size: 12px; margin-bottom: 3px; }
.recycle-item-reason { font-size: 11.5px; color: #333; }
.recycle-stamp {
  display: inline-block; margin-top: 6px; font-size: 10px; font-weight: 700;
  padding: 2px 8px; background: #ffe0e0; border: 1px dashed #a00; color: #a00;
}
.recycle-foot { text-align: center; font-size: 11px; color: var(--shadow); font-style: italic; margin-top: 10px; }

.readme-body-wrap { background: var(--white); }
.readme-body {
  font-family: "Courier New", Courier, monospace; font-size: 12px;
  white-space: pre-wrap; margin: 0; line-height: 1.45; color: #000;
}

/* ══════════════════════════════════════════════════════════════
   TASKBAR
   ══════════════════════════════════════════════════════════════ */
#taskbar {
  position: fixed; left: 0; right: 0; bottom: 0; height: 30px; z-index: 1000;
  display: flex; align-items: center; gap: 3px; padding: 2px 3px;
  background: var(--face);
  border-top: 2px solid var(--white);
}
#start-btn {
  display: flex; align-items: center; gap: 4px; height: 23px; padding: 0 8px 0 4px;
  font-family: var(--font); font-size: 12px; cursor: pointer;
  background: var(--face); color: #000;
  border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  box-shadow: inset 1px 1px 0 var(--face), inset -1px -1px 0 var(--shadow);
}
#start-btn.active, #start-btn:active {
  border-color: var(--dark) var(--white) var(--white) var(--dark);
  box-shadow: inset 1px 1px 0 var(--shadow);
}
#start-btn b { font-weight: 700; }
.start-flag {
  display: grid; grid-template-columns: 1fr 1fr; grid-template-rows: 1fr 1fr;
  width: 16px; height: 16px; gap: 1.5px; transform: skewX(-10deg);
}
.start-flag .fl { border-radius: 1px; }
.tb-divider { width: 2px; height: 22px; border-left: 1px solid var(--shadow); border-right: 1px solid var(--white); }

#taskbar-windows { flex: 1; display: flex; gap: 3px; overflow: hidden; }
.tb-item {
  min-width: 130px; max-width: 160px; height: 23px; padding: 0 8px;
  display: flex; align-items: center; gap: 5px; cursor: pointer;
  font-size: 11px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis;
  background: var(--face);
  border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  box-shadow: inset 1px 1px 0 var(--face), inset -1px -1px 0 var(--shadow);
}
.tb-item .tb-ico { font-size: 13px; flex-shrink: 0; }
.tb-item span { overflow: hidden; text-overflow: ellipsis; }
.tb-item.active {
  border-color: var(--dark) var(--white) var(--white) var(--dark);
  box-shadow: inset 1px 1px 0 var(--shadow);
  background: repeating-conic-gradient(#c8c8c8 0% 25%, #bcbcbc 0% 50%) 0 0 / 3px 3px;
  font-weight: 700;
}

#sys-tray {
  display: flex; align-items: center; gap: 6px; height: 23px; padding: 0 6px;
  border: 2px solid; border-color: var(--shadow) var(--white) var(--white) var(--shadow);
}
.tray-icon { font-size: 13px; cursor: default; }
#tray-net { cursor: help; }
#clock { font-size: 11px; min-width: 52px; text-align: center; cursor: default; }

/* Win95 yellow tooltip bubble for the network icon */
.net-tip {
  position: fixed; z-index: 2000; max-width: 240px;
  background: #ffffe1; color: #000; font-size: 11px; line-height: 1.5;
  padding: 7px 10px; pointer-events: none;
  border: 1px solid #000; box-shadow: 2px 2px 3px rgba(0,0,0,.35);
}
.net-tip div:first-child { font-weight: 700; }

/* ══════════════════════════════════════════════════════════════
   START MENU
   ══════════════════════════════════════════════════════════════ */
#start-menu {
  position: fixed; left: 3px; bottom: 32px; z-index: 1100; width: 230px;
  display: none; background: var(--face);
  border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  box-shadow: inset 1px 1px 0 var(--face-2), 2px 2px 4px rgba(0,0,0,.4);
}
#start-menu.open { display: flex; }
.start-side {
  width: 30px; flex-shrink: 0;
  background: linear-gradient(var(--navy), #000040);
  display: flex; align-items: flex-end; justify-content: center; padding-bottom: 10px;
}
.start-side-text {
  writing-mode: vertical-rl; transform: rotate(180deg);
  color: #fff; font-family: Tahoma, sans-serif; font-size: 19px; font-weight: 700; letter-spacing: 1px;
}
.start-side-text b { color: #c0c0c0; font-weight: 400; }
.start-main { flex: 1; padding: 3px; }
.start-item, .start-subitem {
  display: flex; align-items: center; gap: 9px; padding: 5px 8px;
  font-size: 12px; cursor: pointer; color: #000; text-decoration: none; position: relative;
}
.start-item:hover, .start-subitem:hover { background: var(--navy); color: #fff; }
.start-ico { font-size: 17px; width: 20px; text-align: center; }
.start-sep { height: 2px; margin: 3px 2px; border-top: 1px solid var(--shadow); border-bottom: 1px solid var(--white); }
.start-arrow { margin-left: auto; font-size: 10px; }
.start-submenu {
  display: none; position: absolute; left: 100%; bottom: -2px; width: 150px;
  background: var(--face);
  border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  box-shadow: 2px 2px 4px rgba(0,0,0,.4);
}
.start-sub:hover .start-submenu, .start-sub:focus-within .start-submenu { display: block; }

/* ══════════════════════════════════════════════════════════════
   CONTEXT MENU
   ══════════════════════════════════════════════════════════════ */
#context-menu {
  position: fixed; z-index: 1200; display: none; min-width: 160px; padding: 2px;
  background: var(--face);
  border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  box-shadow: 2px 2px 4px rgba(0,0,0,.4);
}
#context-menu.open { display: block; }
.ctx-item { padding: 4px 20px 4px 12px; font-size: 12px; cursor: pointer; }
.ctx-item:hover { background: var(--navy); color: #fff; }
.ctx-label { padding: 3px 12px; font-size: 10px; color: var(--shadow); text-transform: uppercase; }
.ctx-divider { height: 2px; margin: 3px 2px; border-top: 1px solid var(--shadow); border-bottom: 1px solid var(--white); }

/* ══════════════════════════════════════════════════════════════
   TOAST
   ══════════════════════════════════════════════════════════════ */
.toast {
  position: fixed; right: 8px; bottom: 38px; z-index: 1300; width: 260px;
  display: flex; gap: 10px; padding: 10px;
  background: #ffffe1; color: #000;
  border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  box-shadow: 2px 2px 4px rgba(0,0,0,.4);
  animation: toastin .3s ease;
}
@keyframes toastin { from { transform: translateY(20px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.toast.hide { opacity: 0; transition: opacity .3s; }
.toast-icon { font-size: 22px; }
.toast-title { font-weight: 700; font-size: 12px; margin-bottom: 2px; }
.toast-msg { font-size: 11px; }

/* ══════════════════════════════════════════════════════════════
   MOBILE
   ══════════════════════════════════════════════════════════════ */
#mobile-screen { display: none; }

@media (max-width: 768px) {
  body { overflow: auto; background: var(--teal); }
  #desktop, #taskbar, #start-menu, #context-menu, #boot-screen { display: none !important; }
  #mobile-screen { display: block; min-height: 100vh; padding: 6px; }
  .mob-titlebar {
    background: linear-gradient(90deg, var(--navy), var(--navy-2)); color: #fff;
    font-weight: 700; font-size: 13px; padding: 5px 8px; margin-bottom: 6px;
  }
  .mob-header {
    background: var(--face); padding: 16px; text-align: center;
    border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
    margin-bottom: 6px;
  }
  .mob-avatar {
    width: 76px; height: 76px; margin: 0 auto 8px; overflow: hidden;
    display: grid; place-items: center; font-size: 40px; background: #dfdfdf;
    border: 2px solid; border-color: var(--dark) var(--white) var(--white) var(--dark);
  }
  .mob-avatar img { width: 100%; height: 100%; object-fit: cover; }
  .mob-name { font-size: 20px; font-weight: 700; }
  .mob-role { font-size: 11px; color: var(--navy); font-weight: 700; margin: 4px 0 12px; letter-spacing: .3px; }
  .mob-links { display: flex; flex-wrap: wrap; gap: 7px; justify-content: center; }
  .mob-social {
    font-size: 12px; padding: 8px 13px; text-decoration: none; color: #000; background: var(--face);
    border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  }
  .mob-social:active { border-color: var(--dark) var(--white) var(--white) var(--dark); }
  /* Nav: horizontal scroll strip so 6 tabs don't cram into a broken grid */
  .mob-nav {
    display: flex; gap: 4px; margin-bottom: 6px;
    overflow-x: auto; -webkit-overflow-scrolling: touch; scrollbar-width: none;
    padding-bottom: 2px;
  }
  .mob-nav::-webkit-scrollbar { display: none; }
  .mob-tab {
    flex: 0 0 auto; padding: 10px 16px; font-family: var(--font); font-size: 12px; cursor: pointer;
    white-space: nowrap; background: var(--face); color: #000;
    border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  }
  .mob-tab.mob-active { border-color: var(--dark) var(--white) var(--white) var(--dark); background: #b0b0b0; font-weight: 700; }
  .mob-desktop-hint {
    margin-top: 12px; padding: 7px 10px; font-size: 11px; color: #000; background: #ffffe1;
    border: 1px solid var(--shadow); line-height: 1.4;
  }
  .mob-content {
    background: var(--face); padding: 3px;
    border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  }
  .mob-section { display: none; padding: 12px; background: #fff;
    border: 2px solid; border-color: var(--dark) var(--white) var(--white) var(--dark); }
  .mob-section.mob-visible { display: block; }
  .mob-section h2 { font-size: 15px; margin: 0 0 8px; }
  .mob-section h3 { font-size: 13px; margin: 0 0 4px; }
  .mob-section p { margin: 0 0 8px; line-height: 1.5; }
  .mob-card {
    padding: 10px; margin-bottom: 10px; background: #f4f4f4;
    border: 2px solid; border-color: var(--white) var(--shadow) var(--shadow) var(--white);
  }
  .mob-date { font-size: 11px; font-weight: 700; color: var(--navy); margin-bottom: 2px; }
  .mob-tags { display: flex; flex-wrap: wrap; gap: 5px; margin-top: 8px; }
  .mob-tag { font-size: 10px; padding: 2px 7px; background: var(--face); border: 1px solid var(--shadow); }
  .mob-cv-btns { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; }
  .mob-cv-btn {
    flex: 1; min-width: 120px; padding: 9px; text-align: center; text-decoration: none; color: #000;
    font-size: 12px; font-weight: 700; background: var(--face);
    border: 2px solid; border-color: var(--white) var(--dark) var(--dark) var(--white);
  }
  .mob-cert { display: flex; align-items: center; gap: 10px; padding: 9px; margin-bottom: 8px;
    background: #f4f4f4; border: 2px solid; border-color: var(--white) var(--shadow) var(--shadow) var(--white); }
  .mob-cert-badge { font-size: 24px; }
  .mob-cert-name { font-size: 12px; font-weight: 700; }
  .mob-cert-issuer { font-size: 10px; color: var(--shadow); }
  .mob-cert-status { font-size: 9px; font-weight: 700; padding: 2px 6px; margin-left: auto; white-space: nowrap; border: 1px solid var(--shadow); }
  .mob-cert-status.earned { background: #d7f0d7; color: #1a5a1a; }
  .mob-cert-status.progress { background: #fff4d0; color: #7a5a00; }
  .mob-cert-status.pursuing { background: #dfe4ee; color: var(--navy); }
  .mob-contact-btn {
    display: flex; align-items: center; gap: 10px; padding: 10px; margin-bottom: 7px;
    text-decoration: none; color: #000; background: #f4f4f4; font-size: 12px;
    border: 2px solid; border-color: var(--white) var(--shadow) var(--shadow) var(--white);
  }
  .mob-contact-icon { font-size: 18px; }
}

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