:root {
  --bg: #080808;
  --bg2: #0f0f0f;
  --bg3: #161616;
  --border: #2a2520;
  --accent: #f0a500;
  --accent-light: rgba(240, 165, 0, 0.1);
  --accent2: #b87d00;
  --text: #f0e8d8;
  --text-dim: #b8a98a;
  --text-muted: #6b5f4a;
  --white: #f4efe6;
}
*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}
html {
  scroll-behavior: smooth;
}
body {
  background: var(--bg);
  color: var(--text);
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 1.7;
  overflow-x: hidden;
}
::-webkit-scrollbar {
  width: 4px;
}
::-webkit-scrollbar-track {
  background: var(--bg);
}
::-webkit-scrollbar-thumb {
  background: var(--border);
}
.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 40px;
}
/* HEADER */
header {
  background: var(--bg);
  padding: 64px 0 52px;
  border-bottom: 2px solid var(--border);
}
.eyebrow {
  font-size: 11px;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 12px;
  font-weight: 600;
}
h1 {
  font-family: "Inter", sans-serif;
  font-size: clamp(36px, 6vw, 72px);
  font-weight: 700;
  line-height: 1;
  letter-spacing: -0.03em;
  color: var(--text);
}
h1 .acc {
  color: var(--text-dim);
}
.role {
  font-size: 12px;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 16px;
  font-weight: 500;
}
.hcontact {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  margin-top: 24px;
}
.hcontact a {
  color: var(--text-dim);
  text-decoration: none;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  transition: color 0.2s;
}
.hcontact a em {
  color: var(--accent);
  font-style: normal;
  font-size: 10px;
}
.hcontact a:hover {
  color: var(--accent);
}
.hcontact .pdf-btn {
  color: var(--text-dim);
  background: transparent;
  border: 0;
  font-size: 13px;
  display: flex;
  align-items: center;
  gap: 7px;
  cursor: pointer;
  padding: 0;
  font-family: inherit;
}
.hcontact .pdf-btn em {
  color: var(--accent);
  font-style: normal;
  font-size: 10px;
}
.hcontact .pdf-btn:hover {
  color: var(--accent);
}
.summary {
  margin-top: 32px;
  padding: 20px 24px;
  border-left: 3px solid var(--accent);
  background: var(--accent-light);
  max-width: 760px;
  border-radius: 0 6px 6px 0;
}
.summary p {
  font-size: 16px;
  line-height: 1.8;
  color: var(--text-dim);
  font-style: italic;
  margin-bottom: 8px;
}
.hire-cta {
  margin-top: 14px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  max-width: 760px;
  padding: 14px 16px;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: var(--bg2);
}
.hire-cta strong {
  font-size: 14px;
  color: var(--text-dim);
}
.hire-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: var(--bg);
  font-size: 12px;
  font-weight: 700;
  text-decoration: none;
}
.hire-btn:hover {
  background: transparent;
  color: var(--accent);
}
.testimonials {
  margin-top: 4px;
  display: grid;
  gap: 10px;
}
.testimonials blockquote {
  margin: 0;
  border-left: 2px solid var(--accent);
  padding: 12px 14px;
  color: var(--text-dim);
  background: rgba(184, 169, 138, 0.06);
  border-radius: 0 6px 6px 0;
  font-size: 13px;
  line-height: 1.7;
}

.testimonials .testimonial-link {
  cursor: pointer;
  transition:
    transform 0.2s ease,
    border-color 0.2s ease,
    background 0.2s ease,
    color 0.2s ease,
    box-shadow 0.2s ease;
}

.testimonials .testimonial-link:hover {
  transform: translateX(4px);
  border-left-color: var(--accent2);
  background: var(--accent-light);
  color: var(--text);
  box-shadow: 0 0 0 1px rgba(240, 165, 0, 0.2);
}

.testimonials .testimonial-link:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.testimonials .rec-company {
  color: var(--accent);
  cursor: pointer;
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 2px;
}

.testimonials cite {
  margin-top: 8px;
  display: block;
  color: var(--text-muted);
  font-size: 11px;
  font-style: normal;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

/* NAV */
nav {
  position: sticky;
  top: 0;
  z-index: 30;
  background: rgba(8, 8, 8, 0.95);
  border-bottom: 1px solid var(--border);
  box-shadow: 0 1px 8px rgba(0, 0, 0, 0.4);
  -webkit-backdrop-filter: blur(16px);
  backdrop-filter: blur(16px);
}
.nav-inner {
  display: flex;
  overflow-x: auto;
}
.nav-inner::-webkit-scrollbar {
  display: none;
}
nav a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  padding: 14px 22px;
  border-right: 1px solid var(--border);
  transition: all 0.2s;
  white-space: nowrap;
}
nav a:hover {
  color: var(--accent);
  background: var(--accent-light);
}
nav a.act {
  color: var(--accent);
  background: var(--accent-light);
}

/* SECTION */
section {
  padding: 60px 0;
  border-bottom: 1px solid var(--border);
}
.shead {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-bottom: 40px;
}
.snum {
  font-size: 11px;
  color: var(--accent);
  font-weight: 700;
  letter-spacing: 0.15em;
  min-width: 26px;
}
h2 {
  font-family: "Inter", sans-serif;
  font-size: 24px;
  font-weight: 700;
  color: var(--text);
  letter-spacing: -0.02em;
}
.sline {
  flex: 1;
  height: 1px;
  background: var(--border);
}

/* STATS */
.stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 12px;
}
.stat {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px 20px;
  text-align: center;
  border-radius: 8px;
}
.sn {
  font-size: 36px;
  font-weight: 700;
  color: var(--accent);
  line-height: 1;
  letter-spacing: -0.02em;
}
.sl {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-top: 6px;
}

@media print {
  * {
    color: #111 !important;
    background: transparent !important;
    box-shadow: none !important;
  }

  body {
    background: #fff !important;
    font-size: 12px;
  }

  nav,
  .fbtns,
  .fbar,
  .pdf-btn,
  .hire-btn {
    display: none !important;
  }

  section {
    padding: 24px 0;
    border-bottom: 1px solid #d7d7d7;
  }

  .container {
    max-width: 100%;
    padding: 0 18px;
  }

  .job,
  .job.vis,
  .job.filtered {
    opacity: 1 !important;
    transform: none !important;
    animation: none !important;
    transition: none !important;
    break-inside: avoid;
    page-break-inside: avoid;
  }
}

/* TECH SKILLS TABLE */
.tech-table {
  width: 100%;
  border-collapse: collapse;
}
.tech-table tr {
  border-bottom: 1px solid var(--border);
}
.tech-table td {
  padding: 13px 16px;
  font-size: 13px;
  vertical-align: top;
}
.tech-table td:first-child {
  color: var(--accent);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  width: 200px;
  text-transform: uppercase;
}
.tech-table td:last-child {
  color: var(--text-dim);
}
.tech-table td span.yrs {
  color: var(--text-muted);
  font-size: 11px;
  margin-left: 10px;
}
.tech-skeleton-row {
  cursor: default;
}
.bar-wrap {
  margin-top: 5px;
}
.bar {
  height: 3px;
  background: var(--border);
  border-radius: 2px;
}
.bar-fill {
  height: 100%;
  background: var(--accent);
  border-radius: 2px;
}
.bar-fill-loading {
  opacity: 0.35;
}

.skeleton {
  display: block;
  border-radius: 999px;
  background: linear-gradient(
    90deg,
    rgba(184, 169, 138, 0.12) 0%,
    rgba(240, 165, 0, 0.18) 50%,
    rgba(184, 169, 138, 0.12) 100%
  );
  background-size: 200% 100%;
  animation: skeleton-shimmer 1.5s ease-in-out infinite;
}

.skeleton-label {
  height: 12px;
}

.skeleton-line {
  height: 12px;
}

@keyframes skeleton-shimmer {
  0% {
    background-position: 200% 0;
  }

  100% {
    background-position: -200% 0;
  }
}

/* FILTER BTNS */
.fbtns {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 24px;
}
.fbtn {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 6px 14px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.05em;
  cursor: pointer;
  border-radius: 20px;
  transition: all 0.18s;
}
.fbtn:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.fbtn.on {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
}
.swrap {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
}
.stag {
  background: var(--bg2);
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 5px 12px;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
}
.stag:hover {
  border-color: var(--accent);
  color: var(--accent);
}
.stag.lit {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
  font-weight: 600;
}
.stag.dim {
  opacity: 0.15;
}

.stag-skeleton {
  display: inline-flex;
  min-width: 72px;
  height: 29px;
  border-color: rgba(240, 165, 0, 0.16);
  cursor: default;
  pointer-events: none;
}

/* TIMELINE */
.tl {
  position: relative;
}
.tl::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 2px;
  background: linear-gradient(to bottom, var(--accent) 0%, var(--border) 100%);
  border-radius: 2px;
}
.job {
  padding: 0 0 40px 32px;
  position: relative;
  transition:
    opacity 0.35s,
    transform 0.35s;
}
.job::before {
  content: "";
  position: absolute;
  left: -5px;
  top: 8px;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--accent);
  border: 2px solid var(--bg);
}
.jhead {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  flex-wrap: wrap;
  gap: 10px;
  margin-bottom: 4px;
}
.jco {
  font-size: 17px;
  font-weight: 700;
  color: var(--text);
}
.jdate {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.1em;
  color: var(--bg);
  background: var(--accent);
  padding: 3px 10px;
  border-radius: 20px;
  flex-shrink: 0;
}
.jtitle {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--text-muted);
  margin-bottom: 10px;
}
.jdesc {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  color: var(--text-dim);
  line-height: 1.6;
  margin-bottom: 10px;
}
.jbuls {
  list-style: none;
  margin-bottom: 12px;
}
.jbuls li {
  font-size: 13px;
  color: var(--text-dim);
  padding: 3px 0 3px 18px;
  position: relative;
  line-height: 1.6;
  font-family: "Inter", sans-serif;
}
.jbuls li::before {
  content: "";
  position: absolute;
  left: 4px;
  top: 10px;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}
.jstack {
  display: flex;
  flex-wrap: wrap;
  gap: 5px;
  margin-top: 12px;
  padding-top: 12px;
  border-top: 1px solid var(--border);
}
.jtag {
  font-size: 11px;
  font-weight: 500;
  color: var(--accent);
  padding: 3px 9px;
  border: 1px solid var(--border);
  border-radius: 4px;
  cursor: pointer;
  transition: all 0.18s;
  background: var(--bg2);
  font-family: "Inter", sans-serif;
}
.jtag.lit {
  border-color: var(--accent);
  color: var(--bg);
  background: var(--accent);
  font-weight: 600;
}
.jtag:hover {
  background: var(--accent);
  color: var(--bg);
  border-color: var(--accent);
}
.job.filtered {
  opacity: 0.1;
}
.job.match .jco {
  color: var(--accent);
}

.job-skeleton {
  pointer-events: none;
}

.job-skeleton__body {
  display: grid;
  gap: 8px;
  margin-bottom: 12px;
}

.skeleton-company {
  height: 24px;
}

.skeleton-date {
  width: 120px;
  height: 24px;
  border-radius: 20px;
}

.skeleton-title {
  height: 12px;
  margin-bottom: 14px;
}

@media (prefers-reduced-motion: reduce) {
  .skeleton {
    animation: none;
  }
}

/* FILTER BAR */
.fbar {
  display: none;
  position: sticky;
  top: 120px;
  z-index: 15;
  align-items: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 20px;
  padding: 10px 16px;
  background: var(--bg);
  border: 1px solid var(--accent);
  border-radius: 6px;
  font-size: 12px;
  color: var(--accent);
  font-weight: 500;
}
.fbar.show {
  display: flex;
}
.fchips {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
}
.fmatch-nav {
  display: flex;
  align-items: center;
  gap: 6px;
}
.fmatch-pos {
  min-width: 36px;
  text-align: center;
  color: var(--text-dim);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.04em;
}
.fchip {
  background: var(--bg2);
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 3px 10px;
  border-radius: 999px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  transition: all 0.18s;
}
.fchip:hover {
  background: var(--accent);
  color: var(--bg);
}
.fnavbtn {
  background: transparent;
  border: 1px solid var(--border);
  color: var(--text-dim);
  padding: 5px 12px;
  border-radius: 6px;
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  transition: all 0.18s;
}
.fnavbtn:hover:not(:disabled) {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-light);
}
.fnavbtn:disabled {
  opacity: 0.45;
  cursor: not-allowed;
}
.fclear {
  background: none;
  border: none;
  color: var(--accent);
  cursor: pointer;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  margin-left: auto;
  font-weight: 600;
  text-decoration: underline;
}

/* EDUCATION */
.edugrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.educard {
  background: var(--bg2);
  border: 1px solid var(--border);
  padding: 28px;
  border-radius: 8px;
}
.edudeg {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dim);
  margin-bottom: 8px;
  line-height: 1.4;
}
.eduuni {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  color: var(--accent);
  margin-bottom: 4px;
}
.edumeta {
  font-size: 11px;
  color: var(--text-muted);
  letter-spacing: 0.08em;
  margin-bottom: 10px;
}
.edugrade {
  display: inline-block;
  padding: 3px 10px;
  background: var(--accent-light);
  border-radius: 20px;
  font-size: 11px;
  font-weight: 600;
  color: var(--accent);
  letter-spacing: 0.08em;
}
.edunote {
  margin-top: 12px;
  font-size: 12.5px;
  color: var(--text-muted);
  font-style: italic;
  line-height: 1.65;
}

/* FOOTER */
footer {
  padding: 40px 0;
  text-align: center;
  border-top: 1px solid var(--border);
}
.fname {
  font-size: 15px;
  font-weight: 700;
  color: var(--text-dim);
  letter-spacing: -0.01em;
}
.fline {
  width: 40px;
  height: 2px;
  background: var(--accent);
  margin: 12px auto;
  border-radius: 2px;
}
.finfo {
  font-size: 12px;
  color: var(--text-muted);
}
.finfo a {
  color: var(--accent);
  text-decoration: none;
}
.finfo a:hover {
  text-decoration: underline;
}

@media (max-width: 900px) {
  .edugrid {
    grid-template-columns: 1fr 1fr;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
}
@media (max-width: 720px) {
  .container {
    padding: 0 20px;
  }
  header {
    padding: 44px 0 36px;
  }
  .hire-btn {
    margin-left: 0;
  }
  .stats {
    grid-template-columns: 1fr 1fr;
  }
  .edugrid {
    grid-template-columns: 1fr;
  }
  .tech-table td:first-child {
    width: 130px;
  }
}
