:root {
  --bg: #0b1117;
  --bg-alt: #101823;
  --panel: #111a24;
  --panel-alt: #0e1620;
  --line: rgba(148, 163, 184, 0.16);
  --line-strong: rgba(148, 163, 184, 0.28);
  --text: #e7edf4;
  --muted: #9aa7b8;
  --accent: #2dd4bf;
  --accent-2: #60a5fa;
  --accent-soft: rgba(45, 212, 191, 0.12);
  --warning: #f59e0b;
  --shadow: 0 24px 60px rgba(0, 0, 0, 0.34);
  --radius: 8px;
  --radius-sm: 6px;
  --max-width: 1180px;
}

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

html {
  scroll-behavior: smooth;
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--text);
  font: 400 16px/1.65 Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  overflow-x: hidden;
}

body::selection {
  background: rgba(45, 212, 191, 0.24);
}

a {
  color: inherit;
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent);
  text-decoration: none;
}

img {
  display: block;
  max-width: 100%;
}

main {
  display: block;
}

.container {
  width: min(100% - 2rem, var(--max-width));
}

.skip-link {
  position: absolute;
  left: 1rem;
  top: -4rem;
  z-index: 2000;
  padding: 0.75rem 1rem;
  background: #f8fafc;
  color: #0f172a;
  border-radius: 6px;
  font-weight: 700;
}

.skip-link:focus {
  top: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 15, 21, 0.86);
  backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.site-header__inner {
  min-height: 72px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.1rem;
  min-width: 0;
  color: var(--text);
}

.brand:hover,
.brand:focus {
  color: var(--text);
}

.brand__name {
  font-size: 1rem;
  font-weight: 800;
  letter-spacing: 0.01em;
}

.brand__role {
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--muted);
}

.navbar-toggle {
  margin: 0;
  padding: 0.7rem 0.8rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.03);
}

.navbar-toggle .icon-bar {
  background: var(--text);
  width: 18px;
  height: 2px;
}

.site-nav {
  display: block;
  border: 0;
  box-shadow: none;
}

.site-nav .nav {
  margin: 0;
}

.site-nav .nav > li > a {
  padding: 0.5rem 0.8rem;
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 600;
  border-radius: 999px;
  transition: background-color 0.15s ease, color 0.15s ease;
}

.site-nav .nav > li > a:hover,
.site-nav .nav > li > a:focus,
.site-nav .nav > li > a.is-active {
  color: var(--text);
  background: rgba(255, 255, 255, 0.06);
}

.hero-section {
  position: relative;
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  background:
    linear-gradient(180deg, rgba(8, 12, 17, 0.44), rgba(8, 12, 17, 0.9)),
    url("../images/home2.jpg") center / cover no-repeat;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.hero-section::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 15% 15%, rgba(96, 165, 250, 0.12), transparent 35%),
    radial-gradient(circle at 84% 18%, rgba(45, 212, 191, 0.12), transparent 32%);
  pointer-events: none;
}

.hero-shell {
  position: relative;
  z-index: 1;
  padding: 5.5rem 0 5rem;
}

.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  max-width: 100%;
  padding: 0.45rem 0.75rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 36, 0.7);
  color: #d5e2ec;
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.hero-title {
  margin: 1.15rem 0 0.9rem;
  max-width: 14ch;
  font-size: clamp(2.75rem, 5vw, 5.4rem);
  line-height: 0.98;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 72ch;
  color: #dbe4ed;
  font-size: 1.06rem;
}

.hero-copy p {
  margin: 0 0 1rem;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.6rem;
}

.site-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  min-height: 48px;
  padding: 0.86rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.22);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.05);
  color: var(--text);
  font-weight: 700;
  line-height: 1.1;
  transition: transform 0.15s ease, background-color 0.15s ease, border-color 0.15s ease;
}

.site-btn:hover,
.site-btn:focus {
  color: var(--text);
  transform: translateY(-1px);
  border-color: rgba(45, 212, 191, 0.6);
  background: rgba(45, 212, 191, 0.09);
}

.site-btn--primary {
  background: linear-gradient(180deg, rgba(45, 212, 191, 0.98), rgba(20, 184, 166, 0.95));
  border-color: rgba(20, 184, 166, 0.95);
  color: #041018;
}

.site-btn--primary:hover,
.site-btn--primary:focus {
  color: #041018;
  border-color: rgba(20, 184, 166, 1);
  background: linear-gradient(180deg, rgba(74, 222, 211, 1), rgba(20, 184, 166, 1));
}

.site-btn--secondary {
  border-color: rgba(96, 165, 250, 0.38);
  background: rgba(96, 165, 250, 0.08);
}

.hero-metrics {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin-top: 1.35rem;
  padding: 0;
  list-style: none;
}

.hero-metrics li {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.45rem 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.2);
  border-radius: 999px;
  background: rgba(15, 23, 36, 0.58);
  color: #d7e1eb;
  font-size: 0.86rem;
}

.hero-metrics li i {
  color: var(--accent);
}

.site-section {
  padding: 5rem 0;
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.site-section--alt {
  background: linear-gradient(180deg, rgba(16, 24, 35, 0.45), rgba(11, 17, 23, 0.16));
}

.section-header {
  display: grid;
  gap: 0.6rem;
  margin-bottom: 2rem;
}

.section-kicker {
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.section-header h2 {
  margin: 0;
  font-size: clamp(1.7rem, 2.8vw, 2.6rem);
  line-height: 1.1;
}

.section-header p {
  margin: 0;
  max-width: 70ch;
  color: var(--muted);
}

.about-layout {
  display: grid;
  grid-template-columns: minmax(260px, 360px) minmax(0, 1fr);
  gap: 2rem;
  align-items: start;
}

.portrait {
  margin: 0;
  padding: 0;
}

.portrait-frame {
  overflow: hidden;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.portrait-frame img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.portrait-caption {
  margin-top: 0.75rem;
  color: var(--muted);
  font-size: 0.9rem;
}

.profile-copy {
  display: grid;
  gap: 1rem;
}

.profile-copy p {
  margin: 0;
  color: #dce5ee;
}

.profile-copy .intro {
  color: var(--text);
  font-size: 1.08rem;
  font-weight: 600;
}

.callout-list {
  display: grid;
  gap: 0.75rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.callout-list li {
  position: relative;
  padding-left: 1.15rem;
  color: var(--muted);
}

.callout-list li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0.62rem;
  width: 0.4rem;
  height: 0.4rem;
  border-radius: 50%;
  background: var(--accent);
}

.button-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
}

.button-row .site-btn {
  text-align: left;
}

.expertise-grid,
.project-grid,
.support-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.expertise-card,
.project-card,
.support-card,
.contact-card,
.resume-card {
  background: var(--panel);
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  box-shadow: var(--shadow);
}

.expertise-card {
  grid-column: span 12;
  padding: 1.15rem;
}

.expertise-card h3,
.project-card h3,
.support-card h3,
.contact-card h3,
.resume-card h3 {
  margin: 0 0 0.55rem;
  font-size: 1rem;
  line-height: 1.3;
}

.expertise-card p,
.project-card p,
.support-card p,
.contact-card p,
.resume-card p {
  margin: 0;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.tag-list li {
  display: inline-flex;
  align-items: center;
  min-height: 2.05rem;
  padding: 0.3rem 0.65rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.03);
  color: #d6dee7;
  font-size: 0.83rem;
}

.experience-timeline {
  display: grid;
  gap: 1rem;
}

.experience-item {
  position: relative;
  padding: 1.25rem 1.25rem 1.25rem 1.5rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background: var(--panel-alt);
}

.experience-item::before {
  content: "";
  position: absolute;
  left: 0.65rem;
  top: 1.55rem;
  width: 0.68rem;
  height: 0.68rem;
  border-radius: 50%;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(45, 212, 191, 0.08);
}

.experience-item--current {
  border-color: rgba(45, 212, 191, 0.32);
  background: linear-gradient(180deg, rgba(17, 26, 36, 0.96), rgba(15, 22, 31, 0.98));
}

.experience-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem 1rem;
  margin-top: 0.45rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.experience-meta strong {
  color: var(--text);
}

.experience-summary {
  margin: 0.9rem 0 0;
  color: #dce5ee;
}

.experience-list {
  margin: 0.85rem 0 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.experience-list li + li {
  margin-top: 0.45rem;
}

.project-card {
  grid-column: span 12;
  overflow: hidden;
}

.project-media {
  position: relative;
  overflow: hidden;
  aspect-ratio: 16 / 10;
  background: #0a0f15;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.project-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.project-body,
.support-body,
.contact-body,
.resume-body {
  padding: 1.15rem;
}

.project-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 0.45rem;
  margin: 0 0 0.8rem;
  padding: 0;
  list-style: none;
}

.project-meta li {
  display: inline-flex;
  align-items: center;
  min-height: 1.95rem;
  padding: 0.25rem 0.55rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: var(--muted);
  font-size: 0.8rem;
}

.project-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.support-grid {
  align-items: stretch;
}

.support-card {
  grid-column: span 12;
  overflow: hidden;
}

.support-figure {
  margin: 0;
  overflow: hidden;
  background: #0a0f15;
  border-bottom: 1px solid rgba(148, 163, 184, 0.14);
}

.support-figure img {
  width: 100%;
  aspect-ratio: 4 / 3;
  object-fit: cover;
}

.support-copy {
  display: grid;
  gap: 0.9rem;
}

.contact-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(280px, 0.8fr);
  gap: 1rem;
  align-items: start;
}

.contact-list {
  display: grid;
  gap: 0.8rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.contact-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  padding: 0.9rem 1rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background: var(--panel-alt);
}

.contact-list i {
  margin-top: 0.15rem;
  color: var(--accent);
  width: 1.2rem;
  text-align: center;
}

.contact-list strong {
  display: block;
  color: var(--text);
}

.contact-list span,
.contact-list a {
  color: var(--muted);
  word-break: break-word;
}

.resume-card {
  overflow: hidden;
}

.resume-card .resume-copy {
  color: #dce5ee;
}

.resume-card .resume-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem;
  margin-top: 1rem;
}

.social-row {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
  margin-top: 1rem;
}

.social-row a {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  min-height: 2.35rem;
  padding: 0.4rem 0.7rem;
  border: 1px solid rgba(148, 163, 184, 0.18);
  border-radius: 999px;
  color: var(--muted);
  background: rgba(255, 255, 255, 0.02);
}

.social-row a:hover,
.social-row a:focus {
  color: var(--text);
  border-color: rgba(45, 212, 191, 0.45);
}

.footer {
  padding: 1.5rem 0 2rem;
  border-top: 1px solid rgba(148, 163, 184, 0.12);
  color: var(--muted);
}

.footer .footer-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.footer a {
  color: var(--text);
}

.muted {
  color: var(--muted);
}

.section-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.section-list li + li {
  margin-top: 0.45rem;
}

.resume-page .site-header {
  border-bottom-color: rgba(148, 163, 184, 0.1);
}

.resume-page .hero-section {
  min-height: auto;
  padding: 1.5rem 0 0;
  background: none;
  border-bottom: 0;
}

.resume-page .hero-section::before,
.resume-page .hero-section::after {
  display: none;
}

.resume-page .resume-hero {
  padding: 0 0 1.5rem;
}

.resume-summary {
  display: grid;
  grid-template-columns: minmax(0, 1.3fr) minmax(260px, 0.7fr);
  gap: 1rem;
  align-items: start;
}

.resume-summary .resume-card img {
  width: 100%;
  aspect-ratio: 4 / 5;
  object-fit: cover;
}

.resume-summary .resume-card .project-actions,
.resume-summary .resume-card .social-row {
  margin-top: 0.85rem;
}

.resume-section {
  padding: 3.5rem 0;
}

.resume-section + .resume-section {
  border-top: 1px solid rgba(148, 163, 184, 0.1);
}

.resume-page h1,
.resume-page h2,
.resume-page h3,
.resume-page h4,
.resume-page h5,
.resume-page h6,
.site-section h1,
.site-section h2,
.site-section h3,
.site-section h4,
.site-section h5,
.site-section h6 {
  letter-spacing: 0;
}

.dashboard-page .hero-section {
  min-height: auto;
  align-items: stretch;
}

.dashboard-page .hero-shell {
  display: grid;
  grid-template-columns: minmax(0, 1.08fr) minmax(280px, 0.92fr);
  gap: 1.25rem;
  padding: 4.5rem 0 3rem;
}

.dashboard-page .hero-title {
  max-width: 16ch;
}

.dashboard-preview {
  padding: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.16);
  border-radius: 8px;
  background: rgba(15, 23, 36, 0.88);
  box-shadow: var(--shadow);
  backdrop-filter: blur(14px);
}

.dashboard-signal-stack {
  display: grid;
  gap: 0.9rem;
}

.dashboard-signal {
  display: grid;
  gap: 0.35rem;
}

.dashboard-signal__meta {
  display: flex;
  justify-content: space-between;
  gap: 0.75rem;
  align-items: center;
}

.dashboard-signal__name {
  color: var(--text);
  font-weight: 700;
  font-size: 0.92rem;
}

.dashboard-signal__context {
  color: var(--muted);
  font-size: 0.84rem;
}

.signal-bar {
  height: 0.55rem;
  border-radius: 999px;
  background: rgba(148, 163, 184, 0.12);
  overflow: hidden;
}

.signal-bar span {
  display: block;
  height: 100%;
  border-radius: inherit;
}

.signal-bar--high span {
  width: 82%;
  background: linear-gradient(90deg, rgba(248, 113, 113, 0.9), rgba(245, 158, 11, 0.95));
}

.signal-bar--elevated span {
  width: 68%;
  background: linear-gradient(90deg, rgba(96, 165, 250, 0.92), rgba(45, 212, 191, 0.92));
}

.signal-bar--watch span {
  width: 52%;
  background: linear-gradient(90deg, rgba(34, 197, 94, 0.9), rgba(45, 212, 191, 0.9));
}

.signal-bar--stable span {
  width: 36%;
  background: linear-gradient(90deg, rgba(148, 163, 184, 0.72), rgba(96, 165, 250, 0.72));
}

.status-pill {
  display: inline-flex;
  align-items: center;
  min-height: 1.75rem;
  padding: 0.16rem 0.55rem;
  border-radius: 999px;
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.status-pill--high {
  color: #fecaca;
  background: rgba(248, 113, 113, 0.15);
  border: 1px solid rgba(248, 113, 113, 0.3);
}

.status-pill--elevated {
  color: #bfdbfe;
  background: rgba(96, 165, 250, 0.12);
  border: 1px solid rgba(96, 165, 250, 0.28);
}

.status-pill--watch {
  color: #fde68a;
  background: rgba(245, 158, 11, 0.14);
  border: 1px solid rgba(245, 158, 11, 0.25);
}

.status-pill--stable {
  color: #bbf7d0;
  background: rgba(34, 197, 94, 0.12);
  border: 1px solid rgba(34, 197, 94, 0.24);
}

.dashboard-grid {
  display: grid;
  grid-template-columns: repeat(12, minmax(0, 1fr));
  gap: 1rem;
}

.dashboard-card {
  grid-column: span 12;
  padding: 1.15rem;
  border: 1px solid rgba(148, 163, 184, 0.14);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow);
}

.dashboard-card__header {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
  margin-bottom: 0.9rem;
}

.dashboard-card__eyebrow {
  display: block;
  color: var(--accent);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.dashboard-card__title {
  margin: 0.25rem 0 0;
  font-size: 1rem;
  line-height: 1.3;
}

.dashboard-card--third,
.dashboard-card--half {
  grid-column: span 12;
}

.dashboard-alert {
  display: grid;
  gap: 0.9rem;
}

.dashboard-alert__head {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: flex-start;
}

.dashboard-alert__source {
  display: block;
  color: var(--accent);
  font-size: 0.72rem;
  font-weight: 800;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.dashboard-alert h3 {
  margin: 0.3rem 0 0;
  font-size: 1rem;
  line-height: 1.3;
}

.dashboard-alert p {
  margin: 0.55rem 0 0;
  color: var(--muted);
}

.dashboard-alert .tag-list {
  margin-top: 0.2rem;
}

.dashboard-step {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.8rem;
  align-items: start;
}

.dashboard-step__index {
  width: 2.1rem;
  height: 2.1rem;
  border-radius: 50%;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent-soft);
  color: var(--accent);
  font-weight: 800;
}

.dashboard-step__title {
  margin: 0;
  font-size: 1rem;
  line-height: 1.3;
}

.dashboard-step p {
  margin: 0.35rem 0 0;
  color: var(--muted);
}

@media (min-width: 768px) {
  .expertise-card,
  .project-card,
  .support-card {
    grid-column: span 6;
  }

  .dashboard-card--third,
  .dashboard-card--half {
    grid-column: span 6;
  }
}

@media (min-width: 992px) {
  .navbar-toggle {
    display: none;
  }

  .site-nav {
    display: flex;
    align-items: center;
  }

  .site-nav .nav {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    float: none;
    margin: 0;
  }

  .site-nav .navbar-right {
    float: none !important;
  }

  .site-nav .nav > li {
    float: none;
  }

  .expertise-card {
    grid-column: span 4;
  }

  .project-card,
  .support-card {
    grid-column: span 4;
  }

  .dashboard-page .hero-shell {
    padding-top: 5rem;
  }

  .dashboard-card--third {
    grid-column: span 4;
  }

  .dashboard-card--half {
    grid-column: span 6;
  }
}

@media (max-width: 991px) {
  .site-header__inner {
    flex-wrap: wrap;
    padding: 0.5rem 0;
  }

  .site-nav {
    width: 100%;
  }

  .site-nav.collapse {
    display: none;
  }

  .site-nav.collapse.in {
    display: block;
    padding: 0.5rem 0 1rem;
  }

  .site-nav .nav {
    display: grid;
    gap: 0.25rem;
  }

  .site-nav .nav > li > a {
    display: block;
    padding: 0.8rem 0.9rem;
    border-radius: 8px;
  }

  .hero-section {
    min-height: 0;
  }

  .hero-shell {
    padding: 4.5rem 0 4rem;
  }

  .hero-title {
    max-width: 13ch;
  }

  .about-layout,
  .contact-grid,
  .resume-summary {
    grid-template-columns: 1fr;
  }

  .dashboard-page .hero-shell {
    grid-template-columns: 1fr;
  }

  .hero-actions,
  .button-row,
  .project-actions {
    gap: 0.6rem;
  }
}

@media (max-width: 767px) {
  .container {
    width: min(100% - 1.3rem, var(--max-width));
  }

  .hero-title {
    max-width: 12ch;
    font-size: clamp(2.4rem, 12vw, 3.6rem);
  }

  .hero-copy {
    font-size: 1rem;
  }

  .dashboard-page .hero-title {
    max-width: 13ch;
  }

  .site-btn {
    width: 100%;
    justify-content: flex-start;
  }

  .section-header {
    margin-bottom: 1.5rem;
  }

  .site-section {
    padding: 4rem 0;
  }
}

@media print {
  .site-header,
  .hero-section,
  .footer,
  .site-btn,
  .navbar-toggle,
  .skip-link {
    display: none !important;
  }

  body {
    background: #fff;
    color: #000;
  }

  .site-section,
  .resume-section {
    padding: 1.25rem 0;
    border: 0;
  }

  .expertise-card,
  .project-card,
  .support-card,
  .contact-card,
  .resume-card,
  .experience-item {
    box-shadow: none;
    background: #fff;
    color: #000;
  }

  .muted,
  .section-header p,
  .profile-copy p,
  .project-card p,
  .support-card p,
  .contact-card p,
  .resume-card p,
  .experience-summary,
  .experience-list,
  .contact-list span,
  .contact-list a {
    color: #222;
  }
}
