:root {
  --bg-900: #070b13;
  --bg-800: #0e1620;
  --bg-700: #101b29;
  --panel: rgba(19, 29, 39, 0.92);
  --panel-strong: rgba(10, 17, 24, 0.95);
  --stroke: rgba(255,255,255,0.08);
  --text: #edf3ff;
  --muted: rgba(237,243,255,0.72);
  --soft: rgba(237,243,255,0.5);
  --gold: #f9c76b;
  --gold-soft: rgba(249, 199, 107, 0.18);
  --blue: #7cc8ff;
  --shadow: 0 30px 60px rgba(2, 6, 12, 0.55);
}

body.portfolio-landing-page {
  background:
    radial-gradient(circle at top left, rgba(249, 199, 107, 0.15), transparent 22%),
    radial-gradient(circle at bottom right, rgba(124, 200, 255, 0.1), transparent 24%),
    var(--bg-900);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 20, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--stroke);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249,199,107,0.25), rgba(124,200,255,0.08));
  border: 1px solid rgba(249,199,107,0.5);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.site-nav li a {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.site-nav li a.active,
.site-nav li a:hover {
  color: var(--gold);
}

.site-nav .resources-dropdown {
  position: relative;
}

.site-nav .resources-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  cursor: pointer;
}

.site-nav .resources-toggle:hover,
.site-nav .resources-toggle:focus-visible,
.site-nav .resources-dropdown.active .resources-toggle {
  color: var(--gold);
}

.site-nav .resources-toggle span {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.site-nav .resources-dropdown.active .resources-toggle span {
  transform: rotate(45deg);
}

.site-nav .resources-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1.25rem);
  left: -1rem;
  min-width: 210px;
  padding: 0.6rem 0;
  background: var(--panel-strong);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  z-index: 10;
}

.site-nav .resources-dropdown:hover .resources-menu,
.site-nav .resources-dropdown:focus-within .resources-menu,
.site-nav .resources-dropdown.active .resources-menu {
  display: block;
}

.site-nav .resources-menu li a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav .resources-menu li a:hover,
.site-nav .resources-menu li a:focus-visible {
  color: var(--gold);
  background: var(--gold-soft);
}

.site-header__cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.site-header__cta,
.primary-btn {
  background: linear-gradient(135deg, var(--gold), #ffde8d);
  color: #07111a;
  padding: 0.8rem 1.25rem;
  box-shadow: 0 16px 30px rgba(249,199,107,0.25);
}

.secondary-btn {
  border: 1px solid rgba(249,199,107,0.55);
  color: var(--gold);
  background: rgba(249,199,107,0.05);
  padding: 0.8rem 1.25rem;
}

.site-header__cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.portfolio-main {
  padding-bottom: 4rem;
}

.hero-shell {
  padding: 3rem 0 2rem;
}

.hero-shell__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 1.25fr;
  align-items: center;
  gap: 2rem;
  min-height: 720px;
}

.hero-copy {
  padding-top: 2rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-copy h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.hero-copy h1 span {
  color: var(--gold);
}

.role {
  margin-top: 1.1rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--muted);
}

.lead {
  margin-top: 1rem;
  max-width: 550px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
}

.portrait-wrap {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 1.1rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(249,199,107,0.16), rgba(124,200,255,0.06));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -18px auto auto 12px;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(249,199,107,0.28), transparent 62%);
  z-index: 0;
}

.portrait-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  min-height: 560px;
  background: #111;
}

.hero-aside {
  padding: 1.4rem 1.3rem 1.2rem;
  border-radius: 26px;
  background: rgba(18, 26, 35, 0.88);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero-aside h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.skill-cards {
  display: grid;
  gap: 0.9rem;
}

.mini-card {
  display: flex;
  gap: 0.8rem;
  padding: 0.85rem 0.7rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,199,107,0.12);
  color: var(--gold);
}

.mini-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.mini-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.5;
  font-size: 0.76rem;
}

.progress-list {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--stroke);
}

.progress-list h3 {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.project-progress + .project-progress {
  margin-top: 1rem;
}

.project-progress__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.project-progress__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.project-progress__label strong {
  font-size: 0.8rem;
  color: var(--text);
}

.project-thumb {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.progress-bar {
  display: block;
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #ffca6a 70%);
  border-radius: inherit;
}

.showcase,
.dashboard,
.profile-story,
.journey-section {
  padding: 2.5rem 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  letter-spacing: -0.05em;
}

.view-link {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.project-card {
  background: rgba(16,24,31,0.96);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-copy {
  padding: 1.1rem 1rem 1.3rem;
}

.project-tag {
  display: inline-block;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(249,199,107,0.08);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.project-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.project-copy p {
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
  font-size: 0.9rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 1.5rem;
}

.panel {
  background: rgba(16,24,31,0.96);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.stack-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 0.8rem 0.95rem;
  color: var(--text);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  font-size: 0.78rem;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 1.1rem;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--stroke);
}

.year {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.timeline-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.timeline-list p {
  margin: 0;
  color: var(--soft);
  line-height: 1.6;
  font-size: 0.86rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.7fr;
  gap: 1.5rem;
  align-items: center;
}

.story-image img {
  border-radius: 24px;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-copy {
  padding: 0.5rem 0;
}

.story-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.story-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.story-tags span {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(124,200,255,0.08);
  border: 1px solid rgba(124,200,255,0.25);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 1.6rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(124,200,255,0.12), rgba(249,199,107,0.06));
  border: 1px solid var(--stroke);
}

.quote-panel p {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.4;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.3rem;
}

.journey-item {
  padding: 1.4rem 1rem;
  border-radius: 20px;
  background: rgba(14,22,31,0.96);
  border: 1px solid var(--stroke);
  min-height: 220px;
}

.journey-year {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journey-item h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.journey-item p {
  margin: 0;
  line-height: 1.7;
  color: var(--soft);
}

.contact-band {
  padding: 3rem 0 2rem;
}

.contact-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 2.2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(249,199,107,0.12), rgba(16,24,31,0.96));
  border: 1px solid rgba(249,199,107,0.26);
}

.contact-band__inner h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.portfolio-footer {
  border-top: 1px solid var(--stroke);
  background: rgba(10, 17, 24, 0.96);
  padding: 1.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand .brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(249,199,107,0.12);
  border: 1px solid rgba(249,199,107,0.42);
  color: var(--gold);
  font-weight: 800;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand small {
  color: var(--soft);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-copy {
  color: var(--soft);
  font-size: 0.8rem;
}

/* Desktop Navigation - Hide mobile elements on large screens */
@media (min-width: 1200px) {
  .mobile-nav-toggle {
    display: none !important;
  }

  .nav-modal-overlay,
  .nav-modal {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .hero-shell__grid {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-aside {
    grid-column: 1 / -1;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .story-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .action-row {
    justify-content: center;
  }

  .footer-inner,
  .contact-band__inner,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1199px) {
  .site-header__cta {
    display: none;
  }

  .site-nav ul {
    display: none;
  }

  .site-nav .resources-menu {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 1.5rem;
    padding: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-left: auto;
    width: 44px;
    height: 44px;
    line-height: 1;
  }

  .mobile-nav-toggle:hover {
    color: var(--gold);
  }

  .mobile-nav-toggle:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 8px;
  }

  .mobile-nav-toggle svg {
    width: 24px;
    height: 24px;
  }

  /* Navigation Modal Overlay */
  .nav-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(7, 11, 19, 0.75);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-modal-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Navigation Modal */
  .nav-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
  }

  .nav-modal.active {
    display: flex;
  }

  .nav-modal-content {
    background: linear-gradient(135deg, rgba(20, 31, 38, 0.98), rgba(16, 24, 31, 0.98));
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(249, 199, 107, 0.12);
    animation: slideInModal 0.3s ease forwards;
  }

  @keyframes slideInModal {
    from {
      opacity: 0;
      transform: scale(0.92);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .nav-modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .nav-modal-close svg {
    width: 28px;
    height: 28px;
  }

  .nav-modal-close:hover {
    color: var(--gold);
    background: rgba(249, 199, 107, 0.1);
  }

  .nav-modal-close:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  .nav-modal-menu {
    padding: 20px 0;
  }

  .nav-modal-menu ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-modal-menu li {
    margin: 0;
    padding: 0;
  }

  .nav-modal-menu a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
  }

  .nav-modal-menu li:last-child a {
    border-bottom: none;
  }

  .nav-modal-menu a:hover {
    color: var(--gold);
    padding-left: 28px;
    background: rgba(249, 199, 107, 0.05);
  }

  .nav-modal-menu a:focus {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
  }

  .nav-modal-menu .resources-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: #ffffff;
    padding: 16px 24px;
    font: inherit;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    cursor: pointer;
  }

  .nav-modal-menu .resources-toggle:hover,
  .nav-modal-menu .resources-toggle:focus-visible,
  .nav-modal-menu .resources-dropdown.active > .resources-toggle {
    color: var(--gold);
    background: rgba(249, 199, 107, 0.05);
  }

  .nav-modal-menu .resources-toggle span {
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .nav-modal-menu .resources-dropdown.active .resources-toggle span {
    transform: rotate(45deg);
  }

  .nav-modal-menu .resources-menu {
    display: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.14);
  }

  .nav-modal-menu .resources-dropdown.active .resources-menu {
    display: block;
  }

  .nav-modal-menu .resources-menu a {
    padding: 13px 24px 13px 40px;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0.03em;
  }

  /* Prevent body scroll when modal is open */
  body.nav-modal-open {
    overflow: hidden;
  }

  .project-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .portrait-wrap img {
    min-height: 420px;
  }
}

body.portfolio-subpage {
  background:
    radial-gradient(circle at top left, rgba(249, 199, 107, 0.1), transparent 18%),
    radial-gradient(circle at bottom right, rgba(124, 200, 255, 0.08), transparent 20%),
    var(--bg-900);
  color: var(--text);
}

body.portfolio-subpage .main {
  padding-top: 2rem;
}

body.portfolio-subpage .section {
  padding: 4.5rem 0;
}

.under-development {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.under-development__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: 4rem;
}

.under-development__copy {
  max-width: 520px;
}

.under-development__copy .eyebrow {
  margin-bottom: 1rem;
}

.under-development__copy h1 {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.under-development__message {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.under-development__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.under-development__actions a {
  gap: 0.55rem;
}

.under-development__actions i {
  font-size: 1.05rem;
}

.under-development__art {
  position: relative;
  display: flex;
  justify-content: center;
}

.under-development__art::before {
  content: "";
  position: absolute;
  inset: 12% 5% 10%;
  background: radial-gradient(circle, rgba(124, 200, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.under-development__art img {
  position: relative;
  width: min(100%, 620px);
  height: auto;
  filter: drop-shadow(0 24px 35px rgba(2, 6, 12, 0.35));
}

body.portfolio-subpage .section-title {
  text-align: left;
  padding-bottom: 2.25rem;
}

body.portfolio-subpage .section-title h2,
body.portfolio-subpage .section-title p {
  max-width: none;
  margin: 0;
}

body.portfolio-subpage .section-title h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  margin-bottom: 0.7rem;
  color: var(--text);
}

body.portfolio-subpage .section-title p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

body.portfolio-subpage .info-box,
body.portfolio-subpage .resume-item,
body.portfolio-subpage .contact-form,
body.portfolio-subpage .portfolio-card,
body.portfolio-subpage .skill-box,
body.portfolio-subpage .timeline-item,
body.portfolio-subpage .skill-item,
body.portfolio-subpage .education-item,
body.portfolio-subpage .experience-item {
  background: rgba(14, 20, 29, 0.96);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

body.portfolio-subpage .info-box,
body.portfolio-subpage .contact-form,
body.portfolio-subpage .resume-item,
body.portfolio-subpage .portfolio-card,
body.portfolio-subpage .skill-box,
body.portfolio-subpage .skill-item {
  padding: 1.5rem;
}

body.portfolio-subpage .info-box h3,
body.portfolio-subpage .contact-form h3,
body.portfolio-subpage .resume-title,
body.portfolio-subpage .portfolio-info h4,
body.portfolio-subpage .skill-box h3,
body.portfolio-subpage .skill-item h3,
body.portfolio-subpage .timeline-item h4,
body.portfolio-subpage .education-item h4,
body.portfolio-subpage .experience-item h4 {
  color: var(--text);
}

body.portfolio-subpage .info-box p,
body.portfolio-subpage .content p,
body.portfolio-subpage .skill-box p,
body.portfolio-subpage .skill-item p,
body.portfolio-subpage .timeline-item p,
body.portfolio-subpage .education-item p,
body.portfolio-subpage .experience-item p,
body.portfolio-subpage .portfolio-info p,
body.portfolio-subpage .php-email-form label,
body.portfolio-subpage .php-email-form input,
body.portfolio-subpage .php-email-form textarea {
  color: var(--muted);
}

body.portfolio-subpage .portfolio-card {
  overflow: hidden;
}

body.portfolio-subpage .portfolio-info {
  padding: 1rem 1rem 1.2rem;
}

body.portfolio-subpage .portfolio-card .portfolio-img img {
  min-height: 240px;
  object-fit: cover;
}

body.portfolio-subpage .portfolio-tags span,
body.portfolio-subpage .portfolio-filters li {
  border-radius: 999px;
  border: 1px solid rgba(249,199,107,0.22);
  background: rgba(249,199,107,0.08);
  color: var(--gold);
}

body.portfolio-subpage .portfolio-filters {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
}

body.portfolio-subpage .portfolio-filters li {
  padding: 0.7rem 1rem;
  cursor: pointer;
}

body.portfolio-subpage .portfolio-filters .filter-active {
  background: var(--gold);
  color: #101922;
  border-color: var(--gold);
}

body.portfolio-subpage .php-email-form input,
body.portfolio-subpage .php-email-form textarea {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  width: 100%;
}

body.portfolio-subpage .php-email-form button,
body.portfolio-subpage .download-btn {
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #f6d483);
  color: #07111a;
  font-weight: 800;
  padding: 0.95rem 1.6rem;
}

body.portfolio-subpage .icon-box {
  background: rgba(249,199,107,0.1);
  border: 1px solid rgba(249,199,107,0.24);
  color: var(--gold);
}

body.portfolio-subpage .experience-item ul,
body.portfolio-subpage .resume-content ul {
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

body.portfolio-subpage .experience-item li,
body.portfolio-subpage .resume-content li {
  margin-bottom: 0.5rem;
}

body.portfolio-subpage .timeline-item {
  padding: 1.25rem 1rem 1rem 1.25rem;
}

body.portfolio-subpage .fact-pill,
body.portfolio-subpage .about .fact-pill,
body.portfolio-subpage .skill-item {
  background: rgba(255,255,255,0.02);
}

body.portfolio-subpage .personal-quote p,
body.portfolio-subpage .intro-content .headline,
body.portfolio-subpage .intro-content .lead,
body.portfolio-subpage .intro-content p {
  color: var(--text);
}

body.portfolio-subpage .intro-content .eyebrow {
  color: var(--gold);
}

body.portfolio-subpage .link-underline,
body.portfolio-subpage .btn-ghost,
body.portfolio-subpage .cta-group a {
  color: var(--gold);
}

body.portfolio-subpage .skills .skill-box {
  background: rgba(14,20,29,0.96);
  border: 1px solid var(--stroke);
  border-radius: 18px;
}

body.portfolio-subpage .skills .progress {
  background: rgba(255,255,255,0.06);
}

body.portfolio-subpage .skills .progress-bar {
  background: linear-gradient(90deg, var(--gold), #ffdd8e);
}

@media (max-width: 768px) {
  body.portfolio-subpage .section-title {
    text-align: center;
  }

  .under-development {
    min-height: auto;
    padding: 3rem 0 4rem !important;
  }

  .under-development__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .under-development__copy {
    margin: 0 auto;
  }

  .under-development__message {
    margin-left: auto;
    margin-right: auto;
  }

  .under-development__actions {
    justify-content: center;
  }

  .under-development__art {
    order: -1;
  }
}
