/**
* Template Name: iPortfolio
* Template URL: https://bootstrapmade.com/iportfolio-bootstrap-portfolio-websites-template/
* Updated: Jun 29 2024 with Bootstrap v5.3.3
* Author: BootstrapMade.com
* License: https://bootstrapmade.com/license/
*/

/*--------------------------------------------------------------
# Font & Color Variables
# Help: https://bootstrapmade.com/color-system/
--------------------------------------------------------------*/
/* Fonts */
:root {
  --default-font: "Roboto",  system-ui, -apple-system, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", "Liberation Sans", sans-serif, "Apple Color Emoji", "Segoe UI Emoji", "Segoe UI Symbol", "Noto Color Emoji";
  --heading-font: "Raleway",  sans-serif;
  --nav-font: "Poppins",  sans-serif;
}

/* Global Colors - The following color variables are used throughout the website. Updating them here will change the color scheme of the entire website */
:root { 
  --background-color: #ffffff; /* Background color for the entire website, including individual sections */
  --default-color: #272829; /* Default color used for the majority of the text content across the entire website */
  --heading-color: #050d18; /* Color for headings, subheadings and title throughout the website */
  --accent-color: #149ddd; /* Accent color that represents your brand on the website. It's used for buttons, links, and other elements that need to stand out */
  --surface-color: #ffffff; /* The surface color is used as a background of boxed elements within sections, such as cards, icon boxes, or other elements that require a visual separation from the global background. */
  --contrast-color: #ffffff; /* Contrast color for text, ensuring readability against backgrounds of accent, heading, or default colors. */
}

/* Nav Menu Colors - The following color variables are used specifically for the navigation menu. They are separate from the global colors to allow for more customization options */
:root {
  --nav-color: #a8a9b4;  /* The default color of the main navmenu links */
  --nav-hover-color: #ffffff; /* Applied to main navmenu links when they are hovered over or active */
  --nav-mobile-background-color: #040b14; /* Used as the background color for mobile navigation menu */
  --nav-dropdown-background-color: #040b14; /* Used as the background color for dropdown items that appear when hovering over primary navigation items */
  --nav-dropdown-color: #a8a9b4; /* Used for navigation links of the dropdown items in the navigation menu. */
  --nav-dropdown-hover-color: #ffffff; /* Similar to --nav-hover-color, this color is applied to dropdown navigation links when they are hovered over. */
}

/* Color Presets - These classes override global colors when applied to any section or element, providing reuse of the sam color scheme. */

.light-background {
  --background-color: #f4fafd;
  --surface-color: #ffffff;
}

.dark-background {
  --background-color: #040b14;
  --default-color: #ffffff;
  --heading-color: #ffffff;
  --surface-color: #151f2b;
  --contrast-color: #ffffff;
}

/* Smooth scroll */
:root {
  scroll-behavior: smooth;
}

/*--------------------------------------------------------------
# General Styling & Shared Classes
--------------------------------------------------------------*/
body {
  color: var(--default-color);
  background-color: var(--background-color);
  font-family: var(--default-font);
}

a {
  color: var(--accent-color);
  text-decoration: none;
  transition: 0.3s;
}

a:hover {
  color: color-mix(in srgb, var(--accent-color), transparent 25%);
  text-decoration: none;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  color: var(--heading-color);
  font-family: var(--heading-font);
}

/*--------------------------------------------------------------
# Global Header
--------------------------------------------------------------*/
.header {
  color: var(--default-color);
  background-color: var(--background-color);
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  padding: 0 15px;
  width: 300px;
  transition: all ease-in-out 0.3s;
  overflow-y: auto;
  z-index: 997;
  border-right: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.header .profile-img img {
  margin: 15px auto;
  display: block;
  width: 120px;
  border: 8px solid color-mix(in srgb, var(--default-color), transparent 85%);
}

.header .logo {
  line-height: 1;
  margin-bottom: 15px;
}

.header .logo img {
  max-height: 32px;
  margin-right: 8px;
}

.header .logo h1 {
  font-size: 24px;
  margin: 0;
  font-weight: 700;
  color: var(--heading-color);
}

.header .social-links {
  margin: 0 0 20px 0;
}

.header .social-links a {
  font-size: 16px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  color: var(--default-color);
  margin: 0 2px;
  border-radius: 50%;
  text-align: center;
  width: 40px;
  height: 40px;
  transition: 0.3s;
}

.header .social-links a:hover {
  color: var(--contrast-color);
  background: var(--accent-color);
}

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 300px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }
}

.header.header-show {
  left: 0;
}

.header .header-toggle {
  color: var(--contrast-color);
  background-color: var(--accent-color);
  font-size: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  cursor: pointer;
  position: fixed;
  top: 15px;
  right: 15px;
  z-index: 9999;
  transition: background-color 0.3s;
}

.header .header-toggle:hover {
  color: var(--contrast-color);
  background-color: color-mix(in srgb, var(--accent-color) 90%, white 15%);
}

/*--------------------------------------------------------------
# Navigation Menu
--------------------------------------------------------------*/
.mobile-nav-toggle {
  display: none;
}

.navmenu {
  padding: 0;
  z-index: 9997;
}

.navmenu ul {
  list-style: none;
  padding: 0 0 20px 0;
  margin: 0;
}

.navmenu a,
.navmenu a:focus {
  color: var(--nav-color);
  padding: 15px 10px;
  font-family: var(--nav-font);
  font-size: 16px;
  font-weight: 400;
  display: flex;
  align-items: center;
  white-space: nowrap;
  transition: 0.3s;
  width: 100%;
}

.navmenu a .navicon,
.navmenu a:focus .navicon {
  font-size: 20px;
  margin-right: 10px;
}

.navmenu a .toggle-dropdown,
.navmenu a:focus .toggle-dropdown {
  font-size: 12px;
  line-height: 0;
  margin-left: auto;
  width: 30px;
  height: 30px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: 0.3s;
  flex-shrink: 0;
  background-color: color-mix(in srgb, var(--accent-color), transparent 90%);
}

.navmenu a .toggle-dropdown:hover,
.navmenu a:focus .toggle-dropdown:hover {
  background-color: var(--accent-color);
  color: var(--contrast-color);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  color: var(--nav-hover-color);
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
  color: var(--accent-color);
}

.navmenu .active .toggle-dropdown,
.navmenu .active:focus .toggle-dropdown {
  background-color: var(--accent-color);
  color: var(--contrast-color);
  transform: rotate(180deg);
}

.navmenu .dropdown {
  display: block;
}

.navmenu .dropdown a,
.navmenu .dropdown a:focus {
  color: --nav-dropdown-color;
}

.navmenu .dropdown a:hover,
.navmenu .dropdown .active,
.navmenu .dropdown .active:focus {
  color: var(--nav-dropdown-hover-color);
}

.navmenu .dropdown ul {
  position: static;
  display: none;
  z-index: 99;
  padding: 5px 10px;
  margin: 5px 10px;
  background-color: var(--nav-dropdown-background-color);
  border: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
  box-shadow: none;
  transition: all 0.5s ease-in-out;
}

.navmenu .dropdown ul ul {
  background-color: rgba(33, 37, 41, 0.1);
}

.navmenu .dropdown>.dropdown-active {
  display: block;
  background-color: rgba(33, 37, 41, 0.03);
}

/*--------------------------------------------------------------
# Global Footer
--------------------------------------------------------------*/
.footer {
  color: var(--default-color);
  background-color: var(--background-color);
  font-size: 14px;
  padding: 40px 0;
  position: relative;
  border-top: 1px solid color-mix(in srgb, var(--default-color), transparent 90%);
}

.footer .copyright p {
  margin-bottom: 0;
}

.footer .credits {
  margin-top: 4px;
  font-size: 13px;
  text-align: center;
}

/*--------------------------------------------------------------
# Preloader
--------------------------------------------------------------*/
#preloader {
  position: fixed;
  inset: 0;
  z-index: 999999;
  overflow: hidden;
  background: var(--background-color);
  transition: all 0.6s ease-out;
}

#preloader:before {
  content: "";
  position: fixed;
  top: calc(50% - 30px);
  left: calc(50% - 30px);
  border: 6px solid #ffffff;
  border-color: var(--accent-color) transparent var(--accent-color) transparent;
  border-radius: 50%;
  width: 60px;
  height: 60px;
  animation: animate-preloader 1.5s linear infinite;
}

@keyframes animate-preloader {
  0% {
    transform: rotate(0deg);
  }

  100% {
    transform: rotate(360deg);
  }
}

/*--------------------------------------------------------------
# Scroll Top Button
--------------------------------------------------------------*/
.scroll-top {
  position: fixed;
  visibility: hidden;
  opacity: 0;
  right: 15px;
  bottom: -15px;
  z-index: 99999;
  background-color: var(--accent-color);
  width: 44px;
  height: 44px;
  border-radius: 50px;
  transition: all 0.4s;
}

.scroll-top i {
  font-size: 24px;
  color: var(--contrast-color);
  line-height: 0;
}

.scroll-top:hover {
  background-color: color-mix(in srgb, var(--accent-color), transparent 20%);
  color: var(--contrast-color);
}

.scroll-top.active {
  visibility: visible;
  opacity: 1;
  bottom: 15px;
}

/*--------------------------------------------------------------
# Disable aos animation delay on mobile devices
--------------------------------------------------------------*/
@media screen and (max-width: 768px) {
  [data-aos-delay] {
    transition-delay: 0 !important;
  }
}

/*--------------------------------------------------------------
# Global Page Titles & Breadcrumbs
--------------------------------------------------------------*/
.page-title {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 25px 0;
  position: relative;
}

.page-title h1 {
  font-size: 24px;
  font-weight: 700;
}

.page-title .breadcrumbs ol {
  display: flex;
  flex-wrap: wrap;
  list-style: none;
  padding: 0;
  margin: 0;
  font-size: 14px;
  font-weight: 400;
}

.page-title .breadcrumbs ol li+li {
  padding-left: 10px;
}

.page-title .breadcrumbs ol li+li::before {
  content: "/";
  display: inline-block;
  padding-right: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 70%);
}

/*--------------------------------------------------------------
# Global Sections
--------------------------------------------------------------*/
section,
.section {
  color: var(--default-color);
  background-color: var(--background-color);
  padding: 60px 0;
  overflow: clip;
}

/*--------------------------------------------------------------
# Global Section Titles
--------------------------------------------------------------*/
.section-title {
  padding-bottom: 60px;
  position: relative;
}

.section-title h2 {
  font-size: 32px;
  font-weight: 700;
  margin-bottom: 20px;
  padding-bottom: 20px;
  position: relative;
}

.section-title h2:after {
  content: "";
  position: absolute;
  display: block;
  width: 50px;
  height: 3px;
  background: var(--accent-color);
  left: 0;
  bottom: 0;
}

.section-title p {
  margin-bottom: 0;
}

/*--------------------------------------------------------------
# Hero Section
--------------------------------------------------------------*/
.hero {
  width: 100%;
  min-height: 100vh;
  position: relative;
  padding: 80px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero img {
  position: absolute;
  inset: 0;
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  transform: scale(1.08);
  z-index: 1;
}

.hero:before {
  content: "";
  background: color-mix(in srgb, var(--background-color), transparent 70%);
  position: absolute;
  inset: 0;
  z-index: 2;
}

.hero .container {
  position: relative;
  z-index: 3;
}

.hero h2 {
  margin: 0;
  font-size: 64px;
  font-weight: 700;
}

.hero p {
  margin: 5px 0 0 0;
  font-size: 26px;
}

.hero p span {
  letter-spacing: 1px;
  border-bottom: 2px solid var(--accent-color);
}

.hero .social-links {
  margin-top: 25px;
}

.hero .social-links a {
  font-size: 24px;
  display: inline-block;
  color: color-mix(in srgb, var(--default-color), transparent 50%);
  line-height: 1;
  margin-right: 20px;
  transition: 0.3s;
}

.hero .social-links a:hover {
  color: var(--accent-color);
}

@media (max-width: 768px) {
  .hero h2 {
    font-size: 32px;
  }

  .hero p {
    font-size: 20px;
  }
}

/*--------------------------------------------------------------
# About Section
--------------------------------------------------------------*/
.about .content h2 {
  font-weight: 700;
  font-size: 24px;
}

.about .content ul {
  list-style: none;
  padding: 0;
}

.about .content ul li {
  margin-bottom: 20px;
  display: flex;
  align-items: center;
}

.about .content ul strong {
  margin-right: 10px;
}

.about .content ul i {
  font-size: 16px;
  margin-right: 5px;
  color: var(--accent-color);
  line-height: 0;
}

/*--------------------------------------------------------------
# Skills Section
--------------------------------------------------------------*/
.skills .progress {
  height: 60px;
  display: block;
  background: none;
  border-radius: 0;
}

.skills .progress .skill {
  color: var(--heading-color);
  padding: 0;
  margin: 0 0 6px 0;
  text-transform: uppercase;
  display: block;
  font-weight: 600;
  font-family: var(--heading-font);
}

.skills .progress .skill .val {
  float: right;
  font-style: normal;
}

.skills .progress-bar-wrap {
  background: color-mix(in srgb, var(--default-color), transparent 90%);
  height: 10px;
}

.skills .progress-bar {
  width: 1px;
  height: 10px;
  transition: 0.9s;
  background-color: var(--accent-color);
}

/*--------------------------------------------------------------
# Contact Section
--------------------------------------------------------------*/
.contact .info-wrap {
  background-color: var(--surface-color);
  box-shadow: 0px 0px 20px rgba(0, 0, 0, 0.1);
  padding: 30px;
}

@media (max-width: 575px) {
  .contact .info-wrap {
    padding: 20px;
  }
}

.contact .info-item {
  margin-bottom: 40px;
}

.contact .info-item i {
  font-size: 20px;
  color: var(--accent-color);
  background: color-mix(in srgb, var(--accent-color), transparent 92%);
  width: 44px;
  height: 44px;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 50px;
  transition: all 0.3s ease-in-out;
  margin-right: 15px;
}

.contact .info-item h3 {
  padding: 0;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 5px;
}

.contact .info-item p {
  padding: 0;
  margin-bottom: 0;
  font-size: 14px;
}

.contact .info-item:hover i {
  background: var(--accent-color);
  color: var(--contrast-color);
}

/*--------------------------------------------------------------
# Starter Section Section
--------------------------------------------------------------*/
.starter-section {
  /* Add your styles here */
}

/*--------------------------------------------------------------
# Leopoldo Romano Custom Theme
--------------------------------------------------------------*/
:root {
  --default-font: "Space Grotesk", system-ui, sans-serif;
  --heading-font: "Fraunces", Georgia, serif;
  --nav-font: "Space Grotesk", system-ui, sans-serif;
  --background-color: #d8d7d2;
  --default-color: #34251d;
  --heading-color: #441f11;
  --accent-color: #978552;
  --accent-color-deep: #441f11;
  --accent-soft-color: #cdcece;
  --accent-alt-color: #b7a37a;
  --accent-alt-deep: #5f4d3b;
  --hud-gold-color: #978552;
  --hud-metal-color: #cdcece;
  --hud-bronze-color: #7a6240;
  --hud-burn-color: #8a6b57;
  --surface-color: rgba(248, 246, 242, 0.94);
  --card-border-color: rgba(68, 31, 17, 0.12);
  --card-shadow-color: rgba(68, 31, 17, 0.12);
  --contrast-color: #f7f4ef;
  --nav-color: rgba(247, 243, 237, 0.72);
  --nav-hover-color: #fff7ef;
  --nav-mobile-background-color: #16110e;
  --nav-dropdown-background-color: #16110e;
  --nav-dropdown-color: rgba(247, 243, 237, 0.72);
  --nav-dropdown-hover-color: #fff7ef;
}

body {
  background:
    radial-gradient(circle at top right, rgba(151, 133, 82, 0.18), transparent 30%),
    radial-gradient(circle at bottom left, rgba(205, 206, 206, 0.2), transparent 28%),
    radial-gradient(circle at center left, rgba(68, 31, 17, 0.08), transparent 38%),
    var(--background-color);
}

section,
.section {
  scroll-margin-top: 24px;
}

.dark-background {
  --background-color: #15110e;
  --default-color: #efe8df;
  --heading-color: #fff7ef;
  --surface-color: rgba(30, 22, 18, 0.94);
  --contrast-color: #fff7ef;
}

.light-background {
  --background-color: #d0d1d0;
  --surface-color: rgba(244, 241, 236, 0.98);
}

.header {
  width: 296px;
  padding: 28px 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(151, 133, 82, 0.24), transparent 36%),
    linear-gradient(180deg, #1a1512 0%, #110d0b 100%);
}

.header .profile-mark,
.header .logo,
.header .sidebar-role,
.header .social-links {
  flex-shrink: 0;
}

.header .navmenu {
  flex: 1 1 auto;
  min-height: 0;
}

.header .logo {
  margin-bottom: 6px;
}

.header .logo h1 {
  font-size: 30px;
  text-align: center;
}

.sidebar-role {
  margin: 0 0 24px;
  text-align: center;
  color: rgba(255, 244, 233, 0.78);
  font-size: 13px;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.profile-mark {
  width: 118px;
  height: 118px;
  flex: 0 0 118px;
  margin: 6px auto 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 42px;
  font-weight: 700;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-deep));
  border: 6px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 22px 44px rgba(0, 0, 0, 0.28);
}

.profile-photo {
  overflow: hidden;
  padding: 0;
  background: #120d05 url("../img/leopoldo-romano-sidebar.jpg") center 18% / cover no-repeat !important;
}

.profile-photo img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  object-position: center 18%;
}

.header .social-links {
  margin-bottom: 24px;
}

.header .social-links a {
  background: rgba(255, 255, 255, 0.08);
  color: #f7efe4;
}

.header .social-links a:hover {
  background: var(--accent-color);
}

.navmenu a,
.navmenu a:focus {
  padding: 13px 14px;
  border-radius: 16px;
  margin-bottom: 6px;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  background: rgba(255, 255, 255, 0.06);
}

.hero {
  position: relative;
  min-height: 100vh;
  padding: 110px 0 90px;
  align-items: flex-end;
}

.hero::before {
  background: linear-gradient(135deg, rgba(19, 14, 12, 0.62), rgba(12, 9, 8, 0.94));
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 2;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 44px 44px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.4), transparent 86%);
}

.hero .container {
  max-width: 1040px;
  margin-left: clamp(24px, 4vw, 60px);
  margin-right: auto;
}

.hero h2 {
  font-size: clamp(3rem, 5.3vw, 5rem);
  line-height: 0.98;
  max-width: 14ch;
  margin-bottom: 18px;
}

.hero p {
  font-size: 1.3rem;
}

.hero p:first-of-type {
  margin-bottom: 10px;
}

.hero-intro {
  max-width: 680px;
  margin-top: 0;
  color: rgba(247, 239, 228, 0.82);
  line-height: 1.75;
}

.hero-ornament {
  position: absolute;
  border-radius: 999px;
  z-index: 1;
  opacity: 0.72;
  filter: blur(8px);
}

.hero-ornament-one {
  width: 320px;
  height: 320px;
  top: 12%;
  right: 8%;
  background: radial-gradient(circle, rgba(151, 133, 82, 0.56), transparent 70%);
}

.hero-ornament-two {
  width: 260px;
  height: 260px;
  left: 10%;
  bottom: 8%;
  background: radial-gradient(circle, rgba(205, 206, 206, 0.42), transparent 72%);
}

.eyebrow {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 10px 16px;
  border-radius: 999px;
  background: rgba(151, 133, 82, 0.14);
  border: 1px solid rgba(205, 206, 206, 0.18);
  color: rgba(255, 247, 239, 0.92);
  font-size: 13px;
  font-weight: 600;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-actions,
.contact-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-actions {
  margin-top: 32px;
}

.action-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent-color);
  color: var(--contrast-color);
  font-weight: 600;
  letter-spacing: 0.01em;
  box-shadow: 0 14px 32px rgba(151, 133, 82, 0.28);
}

.action-btn:hover {
  color: var(--contrast-color);
  transform: translateY(-2px);
}

.action-btn-outline {
  background: transparent;
  border-color: rgba(24, 19, 15, 0.16);
  color: var(--heading-color);
  box-shadow: none;
}

.action-btn-outline:hover {
  background: rgba(151, 133, 82, 0.12);
  color: var(--heading-color);
}

.hero .action-btn-outline {
  border-color: rgba(255, 255, 255, 0.28);
  color: var(--contrast-color);
}

.hero .action-btn-outline:hover {
  background: rgba(255, 255, 255, 0.08);
  color: var(--contrast-color);
}

.hero-points {
  list-style: none;
  padding: 0;
  margin: 30px 0 0;
  display: grid;
  gap: 12px;
  max-width: 700px;
}

.hero-points li {
  position: relative;
  padding-left: 28px;
  color: rgba(247, 239, 228, 0.82);
  line-height: 1.65;
}

.hero-points li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 10px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-color);
  box-shadow: 0 0 0 6px rgba(151, 133, 82, 0.18);
}

.section-title p,
.portfolio-note p,
.contact-copy {
  color: color-mix(in srgb, var(--default-color), transparent 18%);
  line-height: 1.75;
}

.about-panel,
.skill-panel,
.project-card,
.mission-board-shell,
.mission-card,
.contact .info-wrap,
.contact-panel {
  border: 1px solid var(--card-border-color);
  box-shadow: 0 18px 36px var(--card-shadow-color);
}

.about-panel {
  height: 100%;
  padding: 32px;
  border-radius: 28px;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(246, 236, 224, 0.94));
}

.about-panel h3 {
  margin-bottom: 14px;
}

.about-mark {
  width: 88px;
  height: 88px;
  margin-bottom: 24px;
  border-radius: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 34px;
  color: var(--contrast-color);
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-deep));
}

.meta-pills {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 24px;
}

.meta-pills span {
  padding: 10px 14px;
  border-radius: 999px;
  background: rgba(205, 206, 206, 0.28);
  color: var(--accent-alt-deep);
  font-size: 14px;
  font-weight: 600;
}

.about .content h2 {
  font-size: 2rem;
  line-height: 1.22;
}

.about .content ul li {
  align-items: flex-start;
}

.about .content ul strong {
  min-width: 82px;
}

.skill-tree-section {
  position: relative;
}

.skill-tree-section::before,
.skill-tree-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.skill-tree-section::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
  background-size: 34px 34px;
  opacity: 0.28;
}

.skill-tree-section::after {
  background:
    radial-gradient(circle at top right, rgba(151, 133, 82, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(205, 206, 206, 0.14), transparent 28%);
}

.skill-tree-section .container {
  position: relative;
  z-index: 1;
}

.skill-tree-shell {
  position: relative;
  padding: 38px;
  border-radius: 32px;
  border: 1px solid rgba(205, 206, 206, 0.12);
  background: linear-gradient(180deg, rgba(24, 18, 15, 0.88), rgba(11, 8, 7, 0.97));
  box-shadow: 0 28px 70px rgba(0, 0, 0, 0.34);
  overflow: hidden;
}

.skill-tree-shell::before,
.skill-tree-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.skill-tree-shell::before {
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(205, 206, 206, 0.08);
}

.skill-tree-shell::after {
  top: 132px;
  left: 50%;
  width: 1px;
  height: 56px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(151, 133, 82, 0.55), transparent);
}

.skill-tree-core {
  position: relative;
  max-width: 620px;
  margin: 0 auto 34px;
  padding: 30px 28px;
  text-align: center;
  border-radius: 24px;
  border: 1px solid rgba(205, 206, 206, 0.14);
  background:
    radial-gradient(circle at top, rgba(151, 133, 82, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(34, 26, 21, 0.96), rgba(16, 11, 10, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05), 0 18px 40px rgba(0, 0, 0, 0.24);
}

.skill-tree-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(151, 133, 82, 0.28);
  background: rgba(151, 133, 82, 0.14);
  color: #dfd3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.skill-tree-core h3 {
  margin-bottom: 12px;
  font-size: clamp(1.6rem, 2.8vw, 2.2rem);
}

.skill-tree-core p {
  max-width: 52ch;
  margin: 0 auto;
  color: rgba(247, 239, 228, 0.74);
  line-height: 1.75;
}

.skill-tree-grid {
  position: relative;
}

.skill-tree-grid::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 9%;
  right: 9%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(205, 206, 206, 0.28), transparent);
}

.skill-branch {
  --branch-accent: var(--hud-gold-color);
  --branch-glow: rgba(151, 133, 82, 0.18);
  height: 100%;
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 26px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(27, 21, 18, 0.92), rgba(13, 10, 9, 0.96));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 16px 38px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.skill-branch::before,
.skill-branch::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.skill-branch::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--branch-accent), transparent 78%);
}

.skill-branch::after {
  top: -36px;
  right: -24px;
  width: 160px;
  height: 160px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--branch-glow), transparent 72%);
}

.branch-frontend {
  --branch-accent: var(--hud-metal-color);
  --branch-glow: rgba(205, 206, 206, 0.16);
}

.branch-backend {
  --branch-accent: var(--hud-gold-color);
  --branch-glow: rgba(151, 133, 82, 0.18);
}

.branch-tooling {
  --branch-accent: var(--hud-bronze-color);
  --branch-glow: rgba(122, 98, 64, 0.18);
}

.branch-visual {
  --branch-accent: var(--hud-burn-color);
  --branch-glow: rgba(138, 107, 87, 0.18);
}

.branch-header {
  position: relative;
  z-index: 1;
  margin-bottom: 22px;
}

.branch-code {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--branch-accent), transparent 72%);
  background: color-mix(in srgb, var(--branch-accent), transparent 88%);
  color: var(--branch-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.branch-header h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.branch-header p {
  margin: 0;
  color: rgba(247, 239, 228, 0.68);
  line-height: 1.7;
}

.skill-node-list {
  position: relative;
  display: grid;
  gap: 14px;
  padding-left: 18px;
}

.skill-node-list::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 12px;
  bottom: 12px;
  width: 2px;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), var(--branch-glow), rgba(255, 255, 255, 0.04));
}

.skill-node {
  position: relative;
  display: grid;
  grid-template-columns: 60px 1fr auto;
  align-items: center;
  gap: 16px;
  padding: 14px 16px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.03);
  backdrop-filter: blur(8px);
}

.skill-node::before {
  content: "";
  position: absolute;
  left: 28px;
  top: 50%;
  width: 20px;
  height: 2px;
  transform: translateY(-50%);
  background: linear-gradient(90deg, var(--branch-accent), transparent);
}

.node-orb {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff7ef;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--branch-accent) 88%, white 12%),
      color-mix(in srgb, var(--branch-accent) 70%, black 30%));
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--branch-accent), transparent 88%),
    0 12px 26px var(--branch-glow);
}

.node-orb i {
  margin: 0;
  font-size: 20px;
}

.node-copy h4 {
  margin: 0 0 4px;
  font-size: 1rem;
}

.node-copy p {
  margin: 0;
  color: rgba(247, 239, 228, 0.64);
  font-size: 0.95rem;
  line-height: 1.55;
}

.node-state {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.06);
  color: #fff7ef;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skill-node.is-core {
  border-color: color-mix(in srgb, var(--branch-accent), transparent 62%);
  background: color-mix(in srgb, var(--branch-accent), transparent 90%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--branch-accent), transparent 82%);
}

.skill-node.is-solid {
  background: color-mix(in srgb, var(--branch-accent), transparent 93%);
}

.skill-node.is-support {
  background: rgba(255, 255, 255, 0.04);
}

.skill-node.is-learning {
  background: rgba(255, 255, 255, 0.02);
}

.skill-node.is-core .node-state {
  color: #e5e5e5;
  border-color: rgba(205, 206, 206, 0.28);
  background: rgba(205, 206, 206, 0.12);
}

.skill-node.is-solid .node-state {
  color: #d9c291;
  border-color: rgba(151, 133, 82, 0.28);
  background: rgba(151, 133, 82, 0.14);
}

.skill-node.is-support .node-state {
  color: #cfad92;
  border-color: rgba(138, 107, 87, 0.24);
  background: rgba(138, 107, 87, 0.14);
}

.skill-node.is-learning .node-state {
  color: #c3b6a8;
  border-color: rgba(195, 182, 168, 0.24);
  background: rgba(195, 182, 168, 0.12);
}

.journey-map-section {
  position: relative;
}

.journey-map-section::before,
.journey-map-section::after {
  content: "";
  position: absolute;
  inset: 0;
  pointer-events: none;
}

.journey-map-section::before {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 40px 40px;
  opacity: 0.24;
}

.journey-map-section::after {
  background:
    radial-gradient(circle at top left, rgba(151, 133, 82, 0.16), transparent 24%),
    radial-gradient(circle at bottom right, rgba(205, 206, 206, 0.12), transparent 28%);
}

.journey-map-section .container {
  position: relative;
  z-index: 1;
}

.journey-map-shell {
  position: relative;
  padding: 38px;
  border-radius: 34px;
  border: 1px solid rgba(205, 206, 206, 0.12);
  background: linear-gradient(180deg, rgba(23, 17, 14, 0.9), rgba(10, 7, 6, 0.98));
  box-shadow: 0 30px 72px rgba(0, 0, 0, 0.35);
  overflow: hidden;
}

.journey-map-shell::before,
.journey-map-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.journey-map-shell::before {
  inset: 18px;
  border-radius: 26px;
  border: 1px solid rgba(205, 206, 206, 0.07);
}

.journey-map-shell::after {
  left: 50%;
  top: 128px;
  width: 1px;
  height: 54px;
  transform: translateX(-50%);
  background: linear-gradient(180deg, rgba(205, 206, 206, 0.3), transparent);
}

.journey-map-hub {
  position: relative;
  max-width: 700px;
  margin: 0 auto 34px;
  padding: 30px 28px;
  text-align: center;
  border-radius: 26px;
  border: 1px solid rgba(205, 206, 206, 0.14);
  background:
    radial-gradient(circle at top, rgba(151, 133, 82, 0.14), transparent 58%),
    linear-gradient(180deg, rgba(32, 24, 20, 0.95), rgba(12, 9, 8, 0.94));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 20px 44px rgba(0, 0, 0, 0.24);
}

.journey-map-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(151, 133, 82, 0.28);
  background: rgba(151, 133, 82, 0.14);
  color: #dfd3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.journey-map-hub h3 {
  margin-bottom: 12px;
  font-size: clamp(1.65rem, 2.8vw, 2.25rem);
}

.journey-map-hub p {
  max-width: 58ch;
  margin: 0 auto;
  color: rgba(247, 239, 228, 0.74);
  line-height: 1.75;
}

.journey-map-legend {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 10px;
  margin-top: 22px;
}

.journey-map-legend span {
  display: inline-flex;
  align-items: center;
  padding: 9px 13px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 239, 228, 0.82);
  font-size: 13px;
  font-weight: 600;
}

.journey-path {
  --route-accent: var(--hud-gold-color);
  --route-glow: rgba(151, 133, 82, 0.18);
  height: 100%;
  position: relative;
  padding: 24px 24px 22px;
  border-radius: 28px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  background: linear-gradient(180deg, rgba(26, 20, 17, 0.94), rgba(12, 9, 8, 0.98));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 40px rgba(0, 0, 0, 0.24);
  overflow: hidden;
}

.journey-path::before,
.journey-path::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.journey-path::before {
  top: 0;
  left: 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--route-accent), transparent 78%);
}

.journey-path::after {
  top: -48px;
  right: -24px;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--route-glow), transparent 72%);
}

.path-experience {
  --route-accent: var(--hud-gold-color);
  --route-glow: rgba(151, 133, 82, 0.16);
}

.path-learning {
  --route-accent: var(--hud-metal-color);
  --route-glow: rgba(205, 206, 206, 0.16);
}

.journey-path-header {
  position: relative;
  z-index: 1;
  margin-bottom: 24px;
}

.journey-path-code {
  display: inline-flex;
  margin-bottom: 10px;
  padding: 7px 12px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--route-accent), transparent 72%);
  background: color-mix(in srgb, var(--route-accent), transparent 88%);
  color: var(--route-accent);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.journey-path-header h3 {
  margin-bottom: 10px;
  font-size: 1.35rem;
}

.journey-path-header p {
  margin: 0;
  color: rgba(247, 239, 228, 0.68);
  line-height: 1.7;
}

.journey-stage-list {
  position: relative;
  display: grid;
  gap: 18px;
  padding-left: 20px;
}

.journey-stage-list::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 16px;
  bottom: 16px;
  width: 2px;
  background:
    linear-gradient(180deg,
      rgba(255, 255, 255, 0.08),
      var(--route-glow),
      rgba(255, 255, 255, 0.04));
}

.journey-stage {
  position: relative;
  display: grid;
  grid-template-columns: 44px 1fr;
  gap: 18px;
  align-items: start;
}

.journey-stage::before {
  content: "";
  position: absolute;
  left: 22px;
  top: 24px;
  width: 18px;
  height: 2px;
  background: linear-gradient(90deg, var(--route-accent), transparent);
}

.journey-stage-marker {
  position: relative;
  z-index: 1;
  width: 44px;
  height: 44px;
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff7ef;
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--route-accent) 88%, white 12%),
      color-mix(in srgb, var(--route-accent) 72%, black 28%));
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--route-accent), transparent 88%),
    0 12px 24px var(--route-glow);
}

.journey-stage-marker i {
  margin: 0;
  font-size: 18px;
}

.journey-stage-card {
  padding: 18px 18px 16px;
  border-radius: 22px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.035);
  backdrop-filter: blur(8px);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.03);
}

.journey-stage-topline {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 10px;
}

.journey-stage-level {
  display: inline-flex;
  padding: 7px 11px;
  border-radius: 999px;
  border: 1px solid color-mix(in srgb, var(--route-accent), transparent 74%);
  background: color-mix(in srgb, var(--route-accent), transparent 90%);
  color: var(--route-accent);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-stage-date {
  color: rgba(247, 239, 228, 0.58);
  font-size: 13px;
  font-weight: 500;
}

.journey-stage-card h4 {
  margin-bottom: 8px;
  font-size: 1.08rem;
  line-height: 1.35;
}

.journey-stage-place {
  margin-bottom: 14px;
  color: rgba(247, 239, 228, 0.76);
}

.journey-stage-place em {
  font-style: normal;
  color: rgba(247, 239, 228, 0.76);
}

.journey-stage-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(247, 239, 228, 0.66);
}

.journey-stage-points li,
.journey-stage-description {
  line-height: 1.62;
}

.journey-stage-description {
  margin: 0;
  color: rgba(247, 239, 228, 0.66);
}

.journey-stage-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 14px;
}

.journey-stage-meta span {
  display: inline-flex;
  padding: 8px 11px;
  border-radius: 999px;
  border: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 239, 228, 0.82);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.journey-stage.is-current .journey-stage-card,
.journey-stage.is-elite .journey-stage-card {
  border-color: color-mix(in srgb, var(--route-accent), transparent 68%);
  background: color-mix(in srgb, var(--route-accent), transparent 92%);
  box-shadow: inset 0 0 0 1px color-mix(in srgb, var(--route-accent), transparent 84%);
}

.journey-stage.is-current .journey-stage-marker {
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--route-accent), transparent 88%),
    0 0 0 12px color-mix(in srgb, var(--route-accent), transparent 94%),
    0 14px 28px var(--route-glow);
}

.journey-stage.is-elite .journey-stage-marker {
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--route-accent), transparent 86%),
    0 0 22px color-mix(in srgb, var(--route-accent), transparent 55%);
}

.journey-stage.is-support .journey-stage-card {
  background: rgba(255, 255, 255, 0.025);
}

.skill-panel {
  height: 100%;
  padding: 28px;
  border-radius: 24px;
  background: rgba(255, 251, 246, 0.9);
}

.skill-panel h3 {
  font-size: 1.15rem;
  margin-bottom: 18px;
}

.skill-chip-list,
.project-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-chip,
.project-tags span {
  display: inline-flex;
  padding: 10px 14px;
  border-radius: 14px;
  border: 1px solid var(--card-border-color);
  background: rgba(255, 247, 239, 0.96);
  font-weight: 500;
}

.project-card {
  position: relative;
  height: 100%;
  padding: 30px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(180deg, rgba(255, 251, 246, 0.98), rgba(246, 236, 224, 0.94));
}

.project-card::before {
  content: "";
  position: absolute;
  inset: 0 0 auto;
  height: 6px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-soft-color));
}

.project-icon {
  width: 56px;
  height: 56px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-color-deep));
  color: var(--contrast-color);
  font-size: 24px;
}

.project-type {
  display: inline-flex;
  margin-bottom: 18px;
  padding: 8px 12px;
  border-radius: 999px;
  background: rgba(205, 206, 206, 0.24);
  color: var(--accent-alt-deep);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.project-card h3 {
  font-size: 24px;
  margin-bottom: 14px;
}

.project-tags {
  margin: 24px 0;
}

.project-points {
  margin: 0 0 24px 18px;
  padding: 0;
  display: grid;
  gap: 10px;
  color: color-mix(in srgb, var(--default-color), transparent 12%);
}

.project-points li {
  line-height: 1.55;
}

.action-link {
  font-weight: 700;
  color: var(--accent-color);
}

.portfolio-note {
  margin-top: 24px;
}

.mission-board-shell {
  position: relative;
  padding: 36px;
  border-radius: 32px;
  background: linear-gradient(180deg, rgba(22, 16, 13, 0.94), rgba(10, 7, 6, 0.98));
  overflow: hidden;
}

.mission-board-shell::before,
.mission-board-shell::after,
.mission-card::before,
.mission-card::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.mission-board-shell::before {
  inset: 18px;
  border-radius: 24px;
  border: 1px solid rgba(205, 206, 206, 0.08);
}

.mission-board-shell::after {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 34px 34px;
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.45), transparent 92%);
  opacity: 0.3;
}

.mission-board-hud,
.mission-board-grid {
  position: relative;
  z-index: 1;
}

.mission-board-hud {
  display: grid;
  grid-template-columns: minmax(0, 1.45fr) minmax(260px, 0.55fr);
  gap: 24px;
  margin-bottom: 28px;
}

.mission-board-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px solid rgba(151, 133, 82, 0.26);
  background: rgba(151, 133, 82, 0.12);
  color: #dfd3b8;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.mission-board-hud h3 {
  margin-bottom: 12px;
  color: var(--contrast-color);
  font-size: clamp(1.7rem, 2.9vw, 2.35rem);
  line-height: 1.12;
}

.mission-board-hud p {
  margin: 0;
  max-width: 58ch;
  color: rgba(247, 244, 239, 0.72);
  line-height: 1.78;
}

.mission-board-stats {
  display: flex;
  flex-wrap: wrap;
  align-content: flex-start;
  justify-content: flex-end;
  gap: 12px;
}

.mission-board-stats span {
  min-width: 128px;
  padding: 14px 16px;
  border-radius: 18px;
  border: 1px solid rgba(205, 206, 206, 0.1);
  background: rgba(255, 255, 255, 0.05);
  color: rgba(247, 244, 239, 0.78);
  font-size: 13px;
  font-weight: 600;
  line-height: 1.4;
}

.mission-board-stats strong {
  display: block;
  margin-bottom: 4px;
  color: var(--contrast-color);
  font-size: 1.2rem;
  font-weight: 700;
}

.mission-board-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.mission-card {
  --mission-accent: var(--hud-gold-color);
  position: relative;
  height: 100%;
  padding: 24px 24px 22px;
  border-radius: 26px;
  border: 1px solid color-mix(in srgb, var(--mission-accent), transparent 76%);
  background:
    linear-gradient(180deg,
      color-mix(in srgb, var(--mission-accent), transparent 94%),
      rgba(255, 255, 255, 0.035));
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 18px 38px rgba(0, 0, 0, 0.22);
  overflow: hidden;
}

.mission-card::before {
  inset: 0 auto auto 0;
  width: 100%;
  height: 4px;
  background: linear-gradient(90deg, var(--mission-accent), transparent 78%);
}

.mission-card::after {
  top: -42px;
  right: -20px;
  width: 150px;
  height: 150px;
  border-radius: 50%;
  background: radial-gradient(circle, color-mix(in srgb, var(--mission-accent), transparent 78%), transparent 72%);
}

.mission-card-top {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin-bottom: 18px;
}

.mission-code,
.mission-status {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 7px 11px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.mission-code {
  border: 1px solid color-mix(in srgb, var(--mission-accent), transparent 72%);
  background: color-mix(in srgb, var(--mission-accent), transparent 88%);
  color: var(--mission-accent);
}

.mission-status {
  border: 1px solid rgba(205, 206, 206, 0.12);
  background: rgba(255, 255, 255, 0.06);
  color: rgba(247, 244, 239, 0.82);
}

.mission-icon {
  position: relative;
  z-index: 1;
  width: 54px;
  height: 54px;
  margin-bottom: 18px;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--contrast-color);
  background: linear-gradient(135deg,
      color-mix(in srgb, var(--mission-accent) 90%, white 10%),
      color-mix(in srgb, var(--mission-accent) 72%, black 28%));
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--mission-accent), transparent 90%),
    0 14px 28px color-mix(in srgb, var(--mission-accent), transparent 72%);
}

.mission-icon i {
  margin: 0;
  font-size: 22px;
}

.mission-card h4,
.mission-card p,
.mission-list {
  position: relative;
  z-index: 1;
}

.mission-card h4 {
  margin-bottom: 10px;
  color: var(--contrast-color);
  font-size: 1.15rem;
}

.mission-card p {
  margin: 0;
  color: rgba(247, 244, 239, 0.7);
  line-height: 1.7;
}

.mission-list {
  margin: 18px 0 0;
  padding-left: 18px;
  display: grid;
  gap: 8px;
  color: rgba(247, 244, 239, 0.74);
}

.mission-list li {
  line-height: 1.58;
}

.mission-card-recon {
  --mission-accent: var(--hud-metal-color);
}

.mission-card-build {
  --mission-accent: var(--hud-gold-color);
}

.mission-card-visual {
  --mission-accent: var(--hud-bronze-color);
}

.mission-card-sync {
  --mission-accent: var(--hud-burn-color);
}

.contact .info-wrap,
.contact-panel {
  border-radius: 28px;
  background: rgba(255, 251, 246, 0.92);
}

.contact .info-wrap {
  padding: 30px;
}

.contact-panel {
  height: 100%;
  padding: 34px;
}

.contact-panel h3 {
  margin-bottom: 14px;
}

.contact-actions {
  margin-top: 28px;
}

.contact .info-item {
  margin-bottom: 24px;
}

.contact .info-item:last-child {
  margin-bottom: 0;
}

.contact .info-item p a,
.about .content a {
  color: inherit;
}

.contact .info-item p a:hover,
.about .content a:hover {
  color: var(--accent-color);
}

.footer {
  padding: 30px 0 40px;
  background: transparent;
}

.footer .credits {
  color: color-mix(in srgb, var(--default-color), transparent 32%);
}

@media (min-width: 1200px) {

  .header~main,
  .header~#footer {
    margin-left: 296px;
  }
}

@media (max-width: 1199px) {
  .header {
    left: -100%;
  }

  .hero {
    min-height: auto;
    padding-top: 120px;
  }

  .journey-map-shell::after,
  .skill-tree-shell::after,
  .skill-tree-grid::before {
    display: none;
  }
}

@media (max-width: 991px) {
  .mission-board-hud {
    grid-template-columns: 1fr;
  }

  .mission-board-stats {
    justify-content: flex-start;
  }

  .mission-board-grid {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .hero h2 {
    max-width: 100%;
  }

  .hero p {
    font-size: 1.1rem;
  }

  .hero .container {
    margin-left: auto;
  }

  .hero-actions,
  .contact-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .action-btn {
    width: 100%;
  }

  .about-panel,
  .mission-board-shell,
  .mission-card,
  .journey-map-shell,
  .journey-map-hub,
  .journey-path,
  .journey-stage-card,
  .skill-panel,
  .skill-tree-shell,
  .skill-branch,
  .project-card,
  .contact .info-wrap,
  .contact-panel {
    border-radius: 22px;
  }

  .mission-board-shell {
    padding: 24px 18px;
  }

  .mission-board-hud {
    margin-bottom: 22px;
  }

  .mission-board-stats span {
    min-width: 112px;
    padding: 12px 14px;
  }

  .mission-card {
    padding: 20px 18px 18px;
  }

  .journey-map-shell {
    padding: 24px 18px;
  }

  .journey-map-hub {
    margin-bottom: 24px;
    padding: 24px 18px;
  }

  .journey-path {
    padding: 20px 18px 18px;
  }

  .journey-stage-list {
    padding-left: 8px;
  }

  .journey-stage-list::before {
    left: 22px;
  }

  .journey-stage {
    grid-template-columns: 42px 1fr;
    gap: 14px;
  }

  .journey-stage::before {
    left: 22px;
    width: 12px;
  }

  .journey-stage-marker {
    width: 40px;
    height: 40px;
    border-radius: 12px;
  }

  .journey-stage-card {
    padding: 16px;
  }

  .journey-map-legend {
    justify-content: flex-start;
  }

  .skill-tree-shell {
    padding: 24px 18px;
  }

  .skill-tree-core {
    margin-bottom: 24px;
    padding: 24px 18px;
  }

  .skill-node-list {
    padding-left: 8px;
  }

  .skill-node-list::before {
    left: 22px;
  }

  .skill-node {
    grid-template-columns: 52px 1fr;
    align-items: start;
  }

  .skill-node::before {
    left: 22px;
    width: 14px;
  }

  .node-orb {
    width: 38px;
    height: 38px;
    border-radius: 12px;
  }

  .node-orb i {
    font-size: 18px;
  }

  .node-state {
    grid-column: 2;
    justify-self: start;
    margin-top: 4px;
  }
}

@media (max-width: 575px) {
  .mission-board-hud h3 {
    font-size: 1.5rem;
  }

  .mission-board-stats span {
    width: 100%;
  }

  .mission-card h4 {
    font-size: 1.05rem;
  }

  .mission-card p,
  .mission-list {
    font-size: 0.92rem;
  }

  .journey-map-hub h3,
  .skill-tree-core h3 {
    font-size: 1.45rem;
  }

  .journey-path {
    padding: 18px 14px 16px;
  }

  .journey-path-header h3 {
    font-size: 1.2rem;
  }

  .journey-stage-topline {
    align-items: flex-start;
  }

  .journey-stage-card h4 {
    font-size: 1rem;
  }

  .journey-stage-points,
  .journey-stage-description {
    font-size: 0.92rem;
  }

  .journey-stage-meta span {
    font-size: 10px;
  }

  .skill-branch {
    padding: 20px 16px 18px;
  }

  .branch-header h3 {
    font-size: 1.2rem;
  }

  .node-copy p {
    font-size: 0.9rem;
  }
}

/*--------------------------------------------------------------
# Cyberpunk 2077 Inspired Theme Override
--------------------------------------------------------------*/
:root {
  --default-font: "Rajdhani", system-ui, sans-serif;
  --heading-font: "Oxanium", "Rajdhani", sans-serif;
  --nav-font: "Oxanium", "Rajdhani", sans-serif;
  --background-color: #080511;
  --default-color: rgba(231, 226, 247, 0.84);
  --heading-color: #f7f1ff;
  --accent-color: #b34dff;
  --accent-color-deep: #6c24b8;
  --accent-soft-color: #7b61ff;
  --accent-alt-color: #ff4fd8;
  --accent-alt-deep: #d6c7ff;
  --hud-gold-color: #b34dff;
  --hud-metal-color: #7b61ff;
  --hud-bronze-color: #ff4fd8;
  --hud-burn-color: #63d4ff;
  --surface-color: rgba(12, 9, 22, 0.84);
  --surface-strong-color: rgba(10, 8, 18, 0.96);
  --card-border-color: rgba(179, 77, 255, 0.18);
  --card-shadow-color: rgba(0, 0, 0, 0.46);
  --contrast-color: #f7f1ff;
  --nav-color: rgba(222, 214, 248, 0.72);
  --nav-hover-color: #f7f1ff;
  --nav-mobile-background-color: rgba(8, 5, 17, 0.98);
  --nav-dropdown-background-color: rgba(8, 5, 17, 0.98);
  --nav-dropdown-color: rgba(222, 214, 248, 0.72);
  --nav-dropdown-hover-color: #f7f1ff;
}

::selection {
  background: var(--accent-color);
  color: #05070a;
}

html {
  scrollbar-color: var(--accent-soft-color) #05070a;
}

body {
  position: relative;
  min-height: 100vh;
  background:
    radial-gradient(circle at 12% 18%, rgba(179, 77, 255, 0.18), transparent 24%),
    radial-gradient(circle at 86% 14%, rgba(123, 97, 255, 0.16), transparent 22%),
    radial-gradient(circle at 84% 82%, rgba(255, 79, 216, 0.16), transparent 22%),
    linear-gradient(140deg, #07040e 0%, #130a22 38%, #05030a 100%);
  color: var(--default-color);
  letter-spacing: 0.02em;
}

body::before,
body::after {
  content: "";
  position: fixed;
  inset: 0;
  pointer-events: none;
  z-index: 0;
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 97, 255, 0.045) 1px, transparent 1px);
  background-size: 100% 4px, 72px 72px;
  opacity: 0.3;
}

body::after {
  inset: auto 0 0 auto;
  width: min(32vw, 420px);
  height: min(32vw, 420px);
  background: radial-gradient(circle, rgba(179, 77, 255, 0.22), transparent 68%);
  filter: blur(10px);
}

main,
#footer {
  position: relative;
  z-index: 1;
}

section,
.section,
.page-title {
  background: transparent;
}

.dark-background {
  --background-color: #07040e;
  --default-color: rgba(231, 226, 247, 0.88);
  --heading-color: #fbf7ff;
  --surface-color: rgba(10, 8, 18, 0.92);
  --contrast-color: #f7f1ff;
}

.light-background {
  --background-color: rgba(14, 10, 24, 0.88);
  --surface-color: rgba(14, 10, 24, 0.94);
}

a {
  color: var(--accent-soft-color);
}

a:hover {
  color: var(--accent-color);
}

h1,
h2,
h3,
h4,
h5,
h6 {
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.section-title h2,
.page-title h1 {
  letter-spacing: 0.1em;
  text-shadow: 0 0 22px rgba(179, 77, 255, 0.22);
}

.section-title h2::after {
  width: 84px;
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-soft-color));
  box-shadow: 0 0 22px rgba(123, 97, 255, 0.36);
}

.section-title p,
.portfolio-note p,
.contact-copy,
.page-title .breadcrumbs ol,
.about .content p,
.about .content ul {
  color: rgba(212, 230, 234, 0.76);
}

.page-title {
  padding: 30px 0;
  border-bottom: 1px solid rgba(123, 97, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(12, 9, 22, 0.96), rgba(12, 9, 22, 0.72)),
    radial-gradient(circle at right top, rgba(179, 77, 255, 0.12), transparent 28%);
  box-shadow: inset 0 -1px 0 rgba(255, 79, 216, 0.08);
}

.page-title .breadcrumbs ol li+li::before {
  color: rgba(123, 97, 255, 0.56);
}

.header {
  position: fixed;
  top: 0;
  left: 0;
  bottom: 0;
  width: 296px;
  padding: 28px 18px 22px;
  border-right: 1px solid rgba(255, 255, 255, 0.08);
  background:
    radial-gradient(circle at top, rgba(179, 77, 255, 0.24), transparent 36%),
    linear-gradient(180deg, #150d22 0%, #090510 100%);
  box-shadow: 22px 0 52px rgba(0, 0, 0, 0.36);
  backdrop-filter: none;
  z-index: 997;
}

.header::before {
  display: none;
}

.header .logo h1,
.sitename {
  color: var(--heading-color);
  font-size: 30px;
  text-align: center;
}

.sidebar-role {
  color: rgba(214, 197, 255, 0.78);
  letter-spacing: 0.16em;
}

.profile-mark,
.header .profile-img img {
  position: relative;
  width: 118px;
  height: 118px;
  margin: 6px auto 20px;
  border-radius: 50%;
  border: 6px solid rgba(255, 255, 255, 0.08) !important;
  background:
    linear-gradient(135deg, var(--accent-color), var(--accent-soft-color)),
    rgba(10, 8, 18, 0.96);
  color: var(--contrast-color);
  box-shadow:
    0 22px 44px rgba(0, 0, 0, 0.28),
    0 0 30px rgba(179, 77, 255, 0.18);
  clip-path: none;
}

.profile-mark {
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--heading-font);
  font-size: 40px;
  font-weight: 800;
  text-shadow: 0 0 18px rgba(255, 79, 216, 0.24);
}

.header .profile-img img {
  object-fit: cover;
}

.header .social-links a {
  border-radius: 50%;
  border: none;
  background: rgba(255, 255, 255, 0.08);
  color: rgba(231, 226, 247, 0.86);
  box-shadow: none;
}

.header .social-links a:hover {
  background: var(--accent-color);
  color: var(--contrast-color);
  box-shadow: 0 0 22px rgba(179, 77, 255, 0.28);
}

.navmenu a,
.navmenu a:focus {
  position: relative;
  padding: 13px 14px;
  margin-bottom: 6px;
  border-radius: 16px;
  border: 1px solid transparent;
  background: rgba(255, 255, 255, 0.04);
  clip-path: none;
}

.navmenu a::before,
.navmenu a:focus::before {
  display: none;
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  border-color: rgba(179, 77, 255, 0.2);
  background: rgba(255, 255, 255, 0.08);
  color: var(--nav-hover-color);
  box-shadow: none;
}

.navmenu a:hover::before,
.navmenu .active::before,
.navmenu .active:focus::before {
  display: none;
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
  color: var(--accent-color);
}

.header .header-toggle,
.scroll-top {
  border-radius: 50%;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
  box-shadow: 0 0 24px rgba(179, 77, 255, 0.24);
  clip-path: none;
}

.header .header-toggle:hover,
.scroll-top:hover {
  background: linear-gradient(135deg, var(--accent-soft-color), var(--accent-alt-color));
  color: var(--contrast-color);
}

#preloader::before {
  border: 3px solid var(--accent-color);
  border-top-color: rgba(123, 97, 255, 0.22);
  box-shadow: 0 0 22px rgba(179, 77, 255, 0.22);
}

.hero {
  align-items: center;
  min-height: 100vh;
  padding: 110px 0 96px;
  background:
    radial-gradient(circle at top right, rgba(179, 77, 255, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 79, 216, 0.16), transparent 26%);
}

.hero::before {
  background:
    linear-gradient(110deg, rgba(8, 5, 17, 0.74), rgba(8, 5, 17, 0.94)),
    linear-gradient(180deg, rgba(179, 77, 255, 0.08), transparent 30%);
}

.hero::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(90deg, rgba(123, 97, 255, 0.06) 1px, transparent 1px),
    linear-gradient(135deg, rgba(255, 79, 216, 0.08), transparent 44%);
  background-size: 100% 4px, 54px 54px, 100% 100%;
  opacity: 0.48;
}

.hero h2 {
  max-width: 12ch;
  color: var(--heading-color);
  text-shadow:
    0 0 18px rgba(179, 77, 255, 0.22),
    0 0 44px rgba(123, 97, 255, 0.12);
}

.hero p:first-of-type {
  color: rgba(240, 248, 250, 0.92);
  font-size: clamp(1.25rem, 2.1vw, 1.5rem);
  letter-spacing: 0.05em;
}

.hero p span,
.typed-cursor {
  color: var(--accent-soft-color);
  border-bottom-color: var(--accent-color);
  text-shadow: 0 0 18px rgba(123, 97, 255, 0.24);
}

.hero-intro {
  color: rgba(212, 230, 234, 0.78);
}

.hero-ornament {
  filter: blur(18px);
  opacity: 0.85;
}

.hero-ornament-one {
  background: radial-gradient(circle, rgba(179, 77, 255, 0.72), transparent 70%);
}

.hero-ornament-two {
  background: radial-gradient(circle, rgba(255, 79, 216, 0.54), transparent 72%);
}

.eyebrow,
.skill-tree-tag,
.journey-map-tag,
.mission-board-tag,
.project-type,
.journey-path-code,
.mission-code,
.mission-status,
.journey-stage-level {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.eyebrow {
  background: rgba(179, 77, 255, 0.14);
  border: 1px solid rgba(179, 77, 255, 0.3);
  color: var(--heading-color);
  letter-spacing: 0.16em;
  box-shadow: 0 0 22px rgba(179, 77, 255, 0.12);
}

.hero-points li {
  color: rgba(212, 230, 234, 0.76);
}

.hero-points li::before {
  top: 11px;
  width: 12px;
  height: 12px;
  border-radius: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  box-shadow: 0 0 0 5px rgba(123, 97, 255, 0.12);
  transform: rotate(45deg);
}

.action-btn {
  position: relative;
  border-radius: 0;
  border: 1px solid rgba(179, 77, 255, 0.28);
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
  font-family: var(--heading-font);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  box-shadow: 0 0 26px rgba(179, 77, 255, 0.24);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.action-btn:hover {
  color: var(--contrast-color);
  box-shadow: 0 0 32px rgba(179, 77, 255, 0.32);
}

.action-btn-outline {
  border-color: rgba(123, 97, 255, 0.34);
  background: rgba(10, 8, 18, 0.68);
  color: var(--accent-soft-color);
  box-shadow: inset 0 0 0 1px rgba(123, 97, 255, 0.08);
}

.action-btn-outline:hover,
.hero .action-btn-outline:hover {
  background: rgba(123, 97, 255, 0.16);
  color: var(--heading-color);
  border-color: rgba(179, 77, 255, 0.36);
}

.about-panel,
.skill-panel,
.project-card,
.mission-board-shell,
.mission-card,
.contact .info-wrap,
.contact-panel {
  background:
    linear-gradient(180deg, rgba(13, 10, 24, 0.96), rgba(8, 5, 16, 0.94));
  border: 1px solid rgba(179, 77, 255, 0.18);
  box-shadow:
    inset 0 0 0 1px rgba(255, 79, 216, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.34);
}

.about-panel,
.skill-panel,
.project-card,
.contact .info-wrap,
.contact-panel {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.about-mark,
.project-icon,
.mission-icon,
.journey-stage-marker,
.node-orb,
.contact .info-item i {
  border-radius: 0;
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
}

.about-mark,
.project-icon {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
  box-shadow: 0 0 24px rgba(179, 77, 255, 0.24);
}

.meta-pills span,
.skill-chip,
.project-tags span,
.journey-stage-meta span,
.mission-board-stats span {
  border-radius: 0;
  border: 1px solid rgba(123, 97, 255, 0.2);
  background: rgba(123, 97, 255, 0.1);
  color: rgba(225, 240, 243, 0.84);
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.meta-pills span,
.skill-chip,
.project-tags span {
  font-weight: 600;
}

.about .content h2 {
  color: var(--heading-color);
  text-shadow: 0 0 18px rgba(179, 77, 255, 0.16);
}

.about .content ul li strong,
.service-details ul i,
.contact .info-item h3 {
  color: var(--heading-color);
}

.about .content ul li i,
.service-details ul i,
.contact .info-item i {
  color: var(--accent-color);
}

.skill-tree-section::before,
.journey-map-section::before,
.mission-board-shell::after {
  opacity: 0.42;
  background-size: 32px 32px;
}

.skill-tree-section::after,
.journey-map-section::after {
  background:
    radial-gradient(circle at top right, rgba(179, 77, 255, 0.16), transparent 24%),
    radial-gradient(circle at bottom left, rgba(255, 79, 216, 0.14), transparent 28%);
}

.skill-tree-shell,
.journey-map-shell,
.mission-board-shell {
  border-radius: 0;
  border: 1px solid rgba(123, 97, 255, 0.18);
  background:
    linear-gradient(180deg, rgba(12, 9, 22, 0.98), rgba(6, 4, 12, 0.98));
  box-shadow:
    inset 0 0 0 1px rgba(255, 79, 216, 0.04),
    0 32px 72px rgba(0, 0, 0, 0.4);
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
}

.skill-tree-shell::before,
.journey-map-shell::before,
.mission-board-shell::before {
  border-color: rgba(179, 77, 255, 0.1);
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.skill-tree-core,
.journey-map-hub {
  border-radius: 0;
  border: 1px solid rgba(179, 77, 255, 0.16);
  background:
    linear-gradient(180deg, rgba(16, 11, 29, 0.94), rgba(9, 6, 18, 0.96));
  box-shadow: inset 0 0 0 1px rgba(123, 97, 255, 0.06);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.skill-tree-tag,
.journey-map-tag,
.mission-board-tag,
.project-type {
  border: 1px solid rgba(179, 77, 255, 0.28);
  background: rgba(179, 77, 255, 0.14);
  color: var(--heading-color);
  letter-spacing: 0.12em;
}

.skill-tree-core p,
.journey-map-hub p,
.mission-board-hud p,
.branch-header p,
.journey-path-header p,
.mission-card p,
.node-copy p,
.journey-stage-description,
.journey-stage-points,
.mission-list,
.project-points {
  color: rgba(212, 230, 234, 0.72);
}

.skill-branch,
.journey-path,
.mission-card {
  border-radius: 0;
  border-color: rgba(123, 97, 255, 0.14);
  background:
    linear-gradient(180deg, rgba(13, 10, 24, 0.94), rgba(8, 5, 16, 0.92));
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.02),
    0 22px 42px rgba(0, 0, 0, 0.28);
  clip-path: polygon(0 0, calc(100% - 22px) 0, 100% 22px, 100% 100%, 22px 100%, 0 calc(100% - 22px));
}

.branch-code,
.journey-path-code,
.mission-code {
  border: 1px solid color-mix(in srgb, var(--route-accent, var(--branch-accent, var(--mission-accent, var(--accent-soft-color)))), transparent 70%);
  background: color-mix(in srgb, var(--route-accent, var(--branch-accent, var(--mission-accent, var(--accent-soft-color)))), transparent 88%);
  color: var(--route-accent, var(--branch-accent, var(--mission-accent, var(--accent-soft-color))));
}

.mission-status,
.journey-stage-level {
  border: 1px solid rgba(123, 97, 255, 0.16);
  background: rgba(123, 97, 255, 0.08);
  color: rgba(225, 240, 243, 0.88);
}

.skill-node,
.journey-stage-card {
  border-radius: 0;
  border-color: rgba(123, 97, 255, 0.12);
  background: rgba(12, 9, 22, 0.72);
  box-shadow: inset 0 0 0 1px rgba(255, 79, 216, 0.03);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.skill-node::before,
.journey-stage::before {
  background: linear-gradient(90deg, currentColor, transparent);
  color: var(--branch-accent, var(--route-accent));
}

.skill-node-list::before,
.journey-stage-list::before {
  background:
    linear-gradient(180deg,
      rgba(123, 97, 255, 0.16),
      color-mix(in srgb, var(--branch-accent, var(--route-accent)), transparent 58%),
      rgba(255, 79, 216, 0.08));
}

.node-orb,
.journey-stage-marker,
.mission-icon {
  color: #05070a;
  box-shadow:
    0 0 0 6px color-mix(in srgb, var(--branch-accent, var(--route-accent, var(--mission-accent))), transparent 88%),
    0 0 28px color-mix(in srgb, var(--branch-accent, var(--route-accent, var(--mission-accent))), transparent 74%);
}

.node-copy h4,
.journey-stage-card h4,
.mission-card h4,
.project-card h3,
.mission-board-hud h3,
.journey-map-hub h3,
.skill-tree-core h3,
.branch-header h3 {
  color: var(--heading-color);
}

.node-state {
  border-radius: 0;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.skill-node.is-core {
  border-color: color-mix(in srgb, var(--branch-accent), transparent 58%);
  background: color-mix(in srgb, var(--branch-accent), transparent 90%);
}

.skill-node.is-solid,
.journey-stage.is-current .journey-stage-card,
.journey-stage.is-elite .journey-stage-card {
  background: color-mix(in srgb, var(--branch-accent, var(--route-accent)), transparent 92%);
}

.skill-node.is-support,
.journey-stage.is-support .journey-stage-card {
  background: rgba(123, 97, 255, 0.06);
}

.skill-node.is-learning {
  background: rgba(255, 73, 110, 0.08);
}

.project-card::before,
.journey-path::before,
.mission-card::before {
  height: 4px;
  background: linear-gradient(90deg, var(--accent-color), var(--accent-soft-color) 58%, transparent);
  box-shadow: 0 0 18px rgba(179, 77, 255, 0.28);
}

.project-card {
  background:
    linear-gradient(180deg, rgba(13, 10, 24, 0.96), rgba(8, 5, 16, 0.94));
}

.project-type {
  background: rgba(255, 79, 216, 0.12);
  border-color: rgba(255, 79, 216, 0.24);
  color: #ffd8f5;
}

.action-link,
.portfolio-note a {
  color: var(--accent-color);
}

.action-link:hover,
.portfolio-note a:hover {
  color: var(--accent-soft-color);
}

.mission-board-stats strong {
  color: var(--heading-color);
}

.contact .info-wrap,
.contact-panel {
  background:
    linear-gradient(180deg, rgba(10, 14, 19, 0.96), rgba(6, 9, 13, 0.94));
}

.contact .info-item i {
  background: rgba(123, 97, 255, 0.12);
  border: 1px solid rgba(123, 97, 255, 0.26);
  box-shadow: 0 0 20px rgba(123, 97, 255, 0.14);
}

.contact .info-item:hover i {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
}

.footer {
  padding: 34px 0 40px;
  border-top: 1px solid rgba(123, 97, 255, 0.12);
  background:
    linear-gradient(180deg, rgba(12, 9, 22, 0.88), rgba(7, 4, 14, 0.98));
}

.footer .copyright,
.footer .credits,
.footer .credits a {
  color: rgba(212, 230, 234, 0.62);
}

.footer .credits a:hover {
  color: var(--accent-color);
}

@media (min-width: 992px) {
  .header {
    left: calc(-296px - 36px);
    width: 296px;
  }

  .header.header-show {
    left: 0;
  }

  .header .header-toggle {
    display: flex;
  }

  .header~main,
  .header~#footer {
    transition: margin-left 0.3s ease;
    margin-left: 0;
  }

  .header.header-show~main,
  .header.header-show~#footer {
    margin-left: 296px;
  }
}

@media (max-width: 991px) {
  .header {
    left: -100%;
    width: min(304px, 84vw);
  }

  .header.header-show {
    left: 0;
  }

  .header .header-toggle {
    display: flex;
  }

  .header~main,
  .header~#footer {
    margin-left: 0;
  }

  .skill-tree-shell,
  .journey-map-shell,
  .mission-board-shell {
    clip-path: none;
  }
}

@media (max-width: 768px) {
  body::after {
    width: 220px;
    height: 220px;
  }

  .hero {
    padding-top: 120px;
  }

  .header::before,
  .about-panel,
  .skill-panel,
  .project-card,
  .mission-board-shell,
  .mission-card,
  .contact .info-wrap,
  .contact-panel,
  .action-btn,
  .navmenu a,
  .eyebrow,
  .skill-tree-tag,
  .journey-map-tag,
  .mission-board-tag,
  .project-type,
  .journey-path-code,
  .mission-code,
  .mission-status,
  .journey-stage-level {
    clip-path: none;
  }

  .hero h2 {
    max-width: 100%;
  }
}

/*--------------------------------------------------------------
# Yellow Green Menu HUD Override
--------------------------------------------------------------*/
:root {
  --background-color: #090506;
  --default-color: rgba(241, 243, 191, 0.86);
  --heading-color: #ffff8f;
  --accent-color: #fff24a;
  --accent-color-deep: #c8b100;
  --accent-soft-color: #d8ff4b;
  --accent-alt-color: #f4ff68;
  --accent-alt-deep: #f6ffbf;
  --hud-gold-color: #fff24a;
  --hud-metal-color: #d8ff4b;
  --hud-bronze-color: #f3ff70;
  --hud-burn-color: #ffe95f;
  --surface-color: rgba(11, 8, 9, 0.88);
  --surface-strong-color: rgba(10, 7, 8, 0.97);
  --card-border-color: rgba(255, 214, 51, 0.24);
  --card-shadow-color: rgba(0, 0, 0, 0.5);
  --contrast-color: #061005;
  --nav-color: rgba(230, 238, 171, 0.78);
  --nav-hover-color: #ffff8f;
  --nav-mobile-background-color: rgba(9, 5, 6, 0.98);
  --nav-dropdown-background-color: rgba(9, 5, 6, 0.98);
  --nav-dropdown-color: rgba(230, 238, 171, 0.78);
  --nav-dropdown-hover-color: #ffff8f;
  --frame-color: rgba(255, 214, 51, 0.3);
  --frame-strong-color: rgba(255, 214, 51, 0.54);
}

::selection {
  background: var(--accent-color);
  color: var(--contrast-color);
}

html {
  scrollbar-color: var(--accent-soft-color) #070506;
}

body {
  background:
    radial-gradient(circle at 14% 18%, rgba(255, 244, 92, 0.16), transparent 24%),
    radial-gradient(circle at 82% 18%, rgba(216, 255, 75, 0.16), transparent 22%),
    radial-gradient(circle at 82% 84%, rgba(255, 214, 51, 0.14), transparent 22%),
    linear-gradient(145deg, #070405 0%, #130707 38%, #040304 100%);
  color: var(--default-color);
}

body::before {
  background:
    linear-gradient(rgba(255, 255, 255, 0.022) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 214, 51, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(216, 255, 75, 0.028), transparent 22%);
  background-size: 100% 4px, 72px 72px, 100% 100%;
  opacity: 0.34;
}

body::after {
  background: radial-gradient(circle, rgba(255, 244, 92, 0.2), transparent 68%);
}

.dark-background {
  --background-color: #080405;
  --default-color: rgba(241, 243, 191, 0.9);
  --heading-color: #ffffc7;
  --surface-color: rgba(11, 8, 9, 0.92);
  --contrast-color: #061005;
}

.light-background {
  --background-color: rgba(13, 8, 9, 0.9);
  --surface-color: rgba(13, 8, 9, 0.95);
}

a {
  color: var(--accent-soft-color);
}

a:hover {
  color: var(--accent-color);
}

.section-title h2,
.page-title h1,
.header .logo h1,
.sitename {
  color: var(--heading-color);
  text-shadow:
    0 0 14px rgba(255, 244, 92, 0.18),
    0 0 28px rgba(216, 255, 75, 0.1);
}

.section-title h2::after {
  background: linear-gradient(90deg, var(--accent-color), var(--accent-soft-color));
  box-shadow: 0 0 18px rgba(255, 244, 92, 0.22);
}

.page-title {
  border-bottom: 1px solid var(--frame-color);
  background:
    linear-gradient(180deg, rgba(14, 8, 9, 0.96), rgba(10, 6, 7, 0.78)),
    radial-gradient(circle at right top, rgba(255, 244, 92, 0.1), transparent 26%);
  box-shadow: inset 0 -1px 0 rgba(255, 214, 51, 0.14);
}

.page-title .breadcrumbs ol li+li::before {
  color: rgba(216, 255, 75, 0.6);
}

.header {
  border-right: 1px solid var(--frame-color);
  background:
    linear-gradient(180deg, rgba(15, 8, 9, 0.98), rgba(8, 5, 6, 0.99)),
    radial-gradient(circle at top, rgba(255, 244, 92, 0.11), transparent 28%);
  box-shadow: 16px 0 42px rgba(0, 0, 0, 0.42);
}

.header::before {
  display: block;
  content: "";
  position: absolute;
  inset: 16px 14px;
  border: 1px solid rgba(255, 214, 51, 0.2);
  pointer-events: none;
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
}

.sidebar-role {
  color: rgba(216, 255, 75, 0.84);
  letter-spacing: 0.2em;
}

.profile-mark,
.header .profile-img img {
  border-radius: 0;
  border: 1px solid rgba(255, 214, 51, 0.44) !important;
  background:
    linear-gradient(135deg, rgba(255, 244, 92, 0.95), rgba(216, 255, 75, 0.82)),
    rgba(11, 8, 9, 0.96);
  color: var(--contrast-color);
  box-shadow:
    0 0 0 1px rgba(255, 214, 51, 0.24),
    0 0 28px rgba(255, 244, 92, 0.14);
  clip-path: polygon(14% 0, 100% 0, 100% 86%, 86% 100%, 0 100%, 0 14%);
}

.profile-mark {
  text-shadow: none;
}

.header .social-links a {
  border-radius: 0;
  border: 1px solid var(--frame-color);
  background: rgba(11, 8, 9, 0.88);
  color: rgba(214, 232, 180, 0.84);
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
}

.header .social-links a:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
  box-shadow: 0 0 18px rgba(255, 244, 92, 0.16);
}

.navmenu a,
.navmenu a:focus {
  padding: 14px 16px;
  border-radius: 0;
  border: 1px solid var(--frame-color);
  background:
    linear-gradient(90deg, rgba(255, 214, 51, 0.08), rgba(11, 8, 9, 0.92));
  color: rgba(230, 238, 171, 0.84);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.navmenu a::before,
.navmenu a:focus::before {
  display: block;
  content: "";
  position: absolute;
  left: 18px;
  right: 18px;
  top: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 51, 0.82) 18%, rgba(216, 255, 75, 0.82) 82%, transparent);
}

.navmenu a:hover,
.navmenu .active,
.navmenu .active:focus {
  border-color: rgba(255, 214, 51, 0.5);
  background:
    linear-gradient(90deg, rgba(255, 214, 51, 0.2), rgba(216, 255, 75, 0.12));
  color: var(--nav-hover-color);
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 92, 0.06),
    0 0 20px rgba(255, 244, 92, 0.1);
}

.navmenu a:hover .navicon,
.navmenu .active .navicon,
.navmenu .active:focus .navicon {
  color: var(--accent-soft-color);
}

.header .header-toggle,
.scroll-top {
  border: 0;
  border-radius: 0;
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
  box-shadow: 0 0 20px rgba(255, 244, 92, 0.16);
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
}

.header .header-toggle:hover,
.scroll-top:hover {
  background: linear-gradient(135deg, var(--accent-soft-color), var(--accent-color));
}

.header .header-toggle {
  top: 20px;
  left: 20px;
  right: auto;
  width: auto;
  min-width: 132px;
  height: 52px;
  padding: 0 16px 0 18px;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  border: 1px solid rgba(255, 214, 51, 0.22);
  background:
    linear-gradient(135deg, rgba(23, 16, 10, 0.42), rgba(10, 7, 8, 0.18)),
    rgba(8, 6, 7, 0.14);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  color: #fff6cd;
  font-family: var(--heading-font);
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 92, 0.04),
    0 14px 30px rgba(0, 0, 0, 0.18);
  clip-path: polygon(0 0, calc(100% - 16px) 0, 100% 16px, 100% 100%, 16px 100%, 0 calc(100% - 16px));
  transition: background 0.3s ease, box-shadow 0.3s ease, left 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
}

.header .header-toggle:focus-visible {
  outline: 1px solid rgba(255, 244, 92, 0.64);
  outline-offset: 4px;
}

.header .header-toggle::before {
  content: "";
  position: absolute;
  left: 12px;
  right: 12px;
  top: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 51, 0.72), rgba(216, 255, 75, 0.38), transparent);
  pointer-events: none;
}

.header .header-toggle:hover,
.header .header-toggle.is-open {
  border-color: rgba(255, 214, 51, 0.38);
  background:
    linear-gradient(135deg, rgba(255, 214, 51, 0.18), rgba(216, 255, 75, 0.08)),
    rgba(8, 6, 7, 0.22);
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 92, 0.08),
    0 18px 36px rgba(0, 0, 0, 0.24);
}

.header .header-toggle.is-open {
  width: 52px;
  min-width: 52px;
  padding: 0;
  justify-content: center;
}

.header-toggle-label {
  line-height: 1;
  white-space: nowrap;
  transition: opacity 0.2s ease, width 0.2s ease, margin 0.2s ease;
}

.header-toggle-icon {
  font-size: 1rem;
  line-height: 1;
  color: var(--accent-soft-color);
  transition: transform 0.28s ease, color 0.28s ease;
}

.header .header-toggle.is-open .header-toggle-icon {
  transform: rotate(90deg);
  color: var(--heading-color);
}

.header .header-toggle.is-open .header-toggle-label {
  width: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
}

#preloader::before {
  border-top-color: rgba(216, 255, 75, 0.24);
  box-shadow: 0 0 18px rgba(255, 244, 92, 0.18);
}

.hero {
  background:
    radial-gradient(circle at top right, rgba(255, 244, 92, 0.14), transparent 24%),
    radial-gradient(circle at bottom left, rgba(216, 255, 75, 0.12), transparent 26%);
}

.hero::before {
  background:
    linear-gradient(110deg, rgba(9, 5, 6, 0.76), rgba(9, 5, 6, 0.94)),
    linear-gradient(180deg, rgba(255, 214, 51, 0.08), transparent 30%);
}

.hero::after {
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 214, 51, 0.05) 1px, transparent 1px),
    linear-gradient(135deg, rgba(216, 255, 75, 0.07), transparent 44%);
}

.hero h2 {
  color: var(--heading-color);
  text-shadow:
    0 0 18px rgba(255, 244, 92, 0.16),
    0 0 34px rgba(216, 255, 75, 0.1);
}

.hero .hero-name {
  max-width: 100%;
  margin-bottom: 10px;
}

.hero .hero-role {
  margin: 0 0 18px;
  color: rgba(232, 239, 179, 0.9);
  font-size: clamp(0.96rem, 1.6vw, 1.2rem);
  font-weight: 700;
  letter-spacing: 0.18em;
  line-height: 1.2;
  text-transform: uppercase;
}

.hero p span,
.typed-cursor {
  color: var(--accent-soft-color);
  border-bottom-color: var(--accent-color);
  text-shadow: none;
}

.hero-ornament-one {
  background: radial-gradient(circle, rgba(255, 244, 92, 0.62), transparent 70%);
}

.hero-ornament-two {
  background: radial-gradient(circle, rgba(216, 255, 75, 0.42), transparent 72%);
}

.eyebrow,
.skill-tree-tag,
.journey-map-tag,
.mission-board-tag,
.project-type,
.journey-path-code,
.mission-code,
.mission-status,
.journey-stage-level {
  border: 1px solid var(--frame-color);
  background: rgba(255, 214, 51, 0.12);
  color: var(--heading-color);
  box-shadow: none;
}

.hero .eyebrow {
  width: fit-content;
  min-width: 0;
  max-width: 100%;
  margin-bottom: 22px;
  padding: 18px 24px 17px;
  justify-content: flex-start;
  border-color: rgba(255, 214, 51, 0.28);
  background: linear-gradient(90deg, rgba(255, 214, 51, 0.16), rgba(216, 255, 75, 0.08) 72%, rgba(255, 214, 51, 0.04));
  color: #fff6cd;
  font-size: 0.96rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  line-height: 1;
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.hero-points li::before {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  box-shadow: 0 0 0 5px rgba(255, 244, 92, 0.1);
}

.hero-lead {
  margin-bottom: 16px;
  color: rgba(245, 246, 214, 0.88);
  font-size: clamp(1.2rem, 2.3vw, 1.6rem);
  line-height: 1.35;
}

.hero-signal-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  padding-top: 10px;
  margin-bottom: 20px;
}

.hero-signal-strip span {
  display: inline-flex;
  align-items: center;
  padding: 9px 14px;
  border: 1px solid rgba(255, 214, 51, 0.28);
  background: rgba(255, 214, 51, 0.09);
  color: rgba(235, 241, 191, 0.86);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.action-btn {
  border: 1px solid rgba(255, 214, 51, 0.4);
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
  box-shadow: 0 0 20px rgba(255, 244, 92, 0.18);
}

.action-btn-outline {
  border-color: rgba(255, 214, 51, 0.6);
  background:
    linear-gradient(180deg, rgba(255, 214, 51, 0.18), rgba(255, 214, 51, 0.08)),
    rgba(11, 8, 9, 0.92);
  color: var(--heading-color);
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 92, 0.14),
    0 0 22px rgba(255, 244, 92, 0.1);
}

.hero .action-btn-outline,
.action-btn-outline-strong {
  border-color: rgba(255, 214, 51, 0.72);
  background:
    linear-gradient(180deg, rgba(255, 214, 51, 0.22), rgba(255, 214, 51, 0.1)),
    rgba(9, 7, 8, 0.94);
  color: var(--heading-color);
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 92, 0.18),
    0 0 26px rgba(255, 244, 92, 0.14);
}

.action-btn-outline:hover,
.hero .action-btn-outline:hover {
  background: linear-gradient(135deg, var(--accent-soft-color), var(--accent-color));
  color: #120d05;
  border-color: rgba(255, 214, 51, 0.82);
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 92, 0.18),
    0 0 28px rgba(255, 244, 92, 0.16);
}

.portfolio-note .action-btn-outline-strong:hover,
.portfolio-note .action-btn-outline-strong:focus-visible {
  color: #120d05;
}

.about-panel,
.skill-panel,
.project-card,
.mission-board-shell,
.mission-card,
.contact .info-wrap,
.contact-panel {
  border: 1px solid var(--frame-color);
  background:
    linear-gradient(180deg, rgba(14, 9, 10, 0.96), rgba(8, 5, 6, 0.94));
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 92, 0.04),
    0 24px 48px rgba(0, 0, 0, 0.36);
}

.about-mark,
.project-icon,
.mission-icon,
.journey-stage-marker,
.node-orb,
.contact .info-item i {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
  box-shadow: 0 0 18px rgba(255, 244, 92, 0.16);
}

.about-mark {
  font-family: var(--heading-font);
  font-weight: 700;
}

.meta-pills span,
.skill-chip,
.project-tags span,
.project-role-strip span,
.journey-stage-meta span,
.mission-board-stats span,
.node-state {
  border: 1px solid var(--frame-color);
  background: rgba(255, 214, 51, 0.1);
  color: rgba(225, 238, 202, 0.86);
}

.about .content h2,
.node-copy h4,
.journey-stage-card h4,
.mission-card h4,
.project-card h3,
.mission-board-hud h3,
.journey-map-hub h3,
.skill-tree-core h3,
.branch-header h3 {
  color: var(--heading-color);
  text-shadow: 0 0 14px rgba(255, 244, 92, 0.12);
}

.skill-tree-section::after,
.journey-map-section::after {
  background:
    radial-gradient(circle at top right, rgba(255, 244, 92, 0.12), transparent 24%),
    radial-gradient(circle at bottom left, rgba(216, 255, 75, 0.08), transparent 28%);
}

.journey-map-section::before,
.journey-map-section::after {
  display: none;
}

.skill-tree-shell,
.journey-map-shell,
.mission-board-shell,
.skill-tree-core,
.journey-map-hub,
.skill-branch,
.journey-path,
.mission-card,
.skill-node,
.journey-stage-card {
  border-color: var(--frame-color);
  background:
    linear-gradient(180deg, rgba(14, 9, 10, 0.96), rgba(8, 5, 6, 0.94));
}

.skill-tree-shell::before,
.journey-map-shell::before,
.mission-board-shell::before {
  border-color: rgba(255, 214, 51, 0.2);
}

.skill-node-list::before,
.journey-stage-list::before {
  background:
    linear-gradient(180deg,
      rgba(255, 214, 51, 0.2),
      color-mix(in srgb, var(--branch-accent, var(--route-accent)), transparent 58%),
      rgba(216, 255, 75, 0.08));
}

.project-card::before,
.journey-path::before,
.mission-card::before {
  background: linear-gradient(90deg, rgba(255, 214, 51, 0.86), var(--accent-soft-color) 58%, transparent);
  box-shadow: 0 0 12px rgba(255, 244, 92, 0.14);
}

.project-type {
  background: rgba(255, 214, 51, 0.12);
  border-color: rgba(255, 214, 51, 0.26);
  color: #ffffb7;
}

.action-link,
.portfolio-note a,
.contact .info-item i {
  color: var(--accent-soft-color);
}

.project-role-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin: 0 0 16px;
}

.project-role-strip span {
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.project-contribution {
  margin: 0 0 18px;
  color: rgba(238, 241, 205, 0.82);
  line-height: 1.65;
}

.project-contribution strong {
  color: var(--heading-color);
  font-weight: 700;
}

.contact-cta-note {
  margin: 18px 0 0;
  color: rgba(234, 240, 193, 0.74);
  line-height: 1.6;
}

.contact .info-item i {
  border: 1px solid var(--frame-color);
  background: rgba(216, 255, 75, 0.12);
  box-shadow: 0 0 16px rgba(255, 244, 92, 0.12);
}

.contact .info-item:hover i {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
}

.footer {
  border-top: 1px solid var(--frame-color);
  background:
    linear-gradient(180deg, rgba(14, 9, 10, 0.9), rgba(8, 5, 6, 0.98));
}

.footer .credits a:hover {
  color: var(--accent-soft-color);
}

@media (min-width: 992px) {
  body.sidebar-open .header .header-toggle {
    left: 316px;
  }
}

@media (max-width: 991px) {
  body.sidebar-open {
    overflow: hidden;
  }

  .header .header-toggle {
    left: auto;
    right: 15px;
  }
}

@media (max-width: 768px) {
  .header::before,
  .profile-mark,
  .header .profile-img img,
  .header .social-links a,
  .navmenu a,
  .action-btn,
  .eyebrow,
  .skill-tree-tag,
  .journey-map-tag,
  .mission-board-tag,
  .project-type,
  .journey-path-code,
  .mission-code,
  .mission-status,
  .journey-stage-level,
  .about-panel,
  .skill-panel,
  .project-card,
  .mission-board-shell,
  .mission-card,
  .contact .info-wrap,
  .contact-panel {
    clip-path: none;
  }
}

/*--------------------------------------------------------------
# Expandable Section Menus
--------------------------------------------------------------*/
.expandable-section {
  padding: 18px 0;
  overflow: visible;
}

.expandable-section-menu {
  position: relative;
  z-index: 3;
}

.expandable-section-toggle {
  position: relative;
  width: 100%;
  padding: 22px 24px;
  border: 1px solid var(--frame-color);
  background-image:
    linear-gradient(90deg, rgba(255, 214, 51, 0.18), rgba(216, 255, 75, 0.08)),
    linear-gradient(180deg, rgba(10, 7, 8, 0.96), rgba(10, 7, 8, 0.98));
  background-position: left top, left top;
  background-size: 24% 100%, 100% 100%;
  background-repeat: no-repeat;
  color: var(--default-color);
  display: grid;
  gap: 14px;
  text-align: left;
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  transition: border-color 0.3s ease, background-size 0.55s cubic-bezier(0.22, 1, 0.36, 1), box-shadow 0.3s ease, transform 0.3s ease;
}

.expandable-section-toggle::before,
.expandable-section-toggle::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.expandable-section-toggle::before {
  left: 22px;
  right: 22px;
  top: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 51, 0.88) 20%, rgba(216, 255, 75, 0.82) 80%, transparent);
}

.expandable-section-toggle::after {
  right: 18px;
  bottom: 16px;
  width: 88px;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(216, 255, 75, 0.58));
}

.expandable-section-kicker {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  color: rgba(216, 255, 75, 0.84);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.expandable-section-kicker::before {
  content: "";
  width: 14px;
  height: 14px;
  border: 1px solid var(--frame-color);
  background: linear-gradient(135deg, rgba(255, 242, 74, 0.7), rgba(216, 255, 75, 0.2));
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
}

.expandable-section-main {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
}

.expandable-section-title-wrap {
  display: grid;
  gap: 8px;
  min-width: 0;
}

.expandable-section-title {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(1.28rem, 2vw, 1.8rem);
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-shadow: 0 0 14px rgba(255, 244, 92, 0.12);
}

.expandable-section-summary {
  color: rgba(230, 238, 171, 0.72);
  font-size: 1rem;
  line-height: 1.55;
  max-width: 68ch;
}

.expandable-section-state {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  color: var(--accent-soft-color);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.expandable-section-state i {
  width: 44px;
  height: 44px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--frame-color);
  background: rgba(255, 214, 51, 0.12);
  color: var(--heading-color);
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
  transition: background 0.3s ease, color 0.3s ease, transform 0.3s ease;
}

.expandable-section-toggle:hover,
.expandable-section-toggle:focus-visible,
.expandable-section.is-expanded .expandable-section-toggle {
  border-color: var(--frame-strong-color);
  background-size: 100% 100%, 100% 100%;
  box-shadow:
    inset 0 0 0 1px rgba(255, 244, 92, 0.05),
    0 0 24px rgba(255, 244, 92, 0.08);
  transform: translateY(-1px);
}

.expandable-section-toggle:hover .expandable-section-state i,
.expandable-section-toggle:focus-visible .expandable-section-state i,
.expandable-section.is-expanded .expandable-section-state i {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
  transform: scale(1.02);
}

.expandable-section-panel {
  display: grid;
  grid-template-rows: 0fr;
  opacity: 0;
  margin-top: 0;
  transition: grid-template-rows 0.4s ease, opacity 0.28s ease, margin-top 0.28s ease;
}

.expandable-section-panel-inner {
  min-height: 0;
  overflow: hidden;
}

.expandable-section.is-expanded .expandable-section-panel {
  grid-template-rows: 1fr;
  opacity: 1;
  margin-top: 18px;
}

.expandable-section-panel-inner>.container:first-child,
.expandable-section-panel-inner>.mission-board-shell:first-child {
  padding-top: 4px;
}

.expandable-section.is-collapsed .expandable-section-panel {
  pointer-events: none;
}

@media (max-width: 991px) {
  .expandable-section-main {
    grid-template-columns: 1fr;
  }

  .expandable-section-state {
    justify-content: space-between;
  }
}

@media (max-width: 768px) {
  .expandable-section {
    padding: 14px 0;
  }

  .expandable-section-toggle,
  .expandable-section-state i,
  .expandable-section-kicker::before {
    clip-path: none;
  }

  .expandable-section-toggle {
    padding: 18px;
  }

  .expandable-section-kicker {
    font-size: 0.76rem;
    letter-spacing: 0.14em;
  }

  .expandable-section-summary {
    font-size: 0.95rem;
  }
}

/*--------------------------------------------------------------
# Skill Hub
--------------------------------------------------------------*/
.skills-hub-section {
  padding-bottom: 28px;
}

.skills-hud-shell {
  position: relative;
  padding: 28px;
  border: 1px solid var(--frame-color);
  background:
    radial-gradient(circle at top, rgba(255, 242, 74, 0.08), transparent 26%),
    linear-gradient(180deg, rgba(14, 9, 10, 0.96), rgba(8, 5, 6, 0.98));
  clip-path: polygon(0 0, calc(100% - 24px) 0, 100% 24px, 100% 100%, 24px 100%, 0 calc(100% - 24px));
  box-shadow:
    inset 0 0 0 1px rgba(255, 242, 74, 0.04),
    0 30px 56px rgba(0, 0, 0, 0.34);
}

.skills-hud-shell::before,
.skills-hud-shell::after {
  content: "";
  position: absolute;
  pointer-events: none;
}

.skills-hud-shell::before {
  inset: 18px;
  border: 1px solid rgba(255, 214, 51, 0.16);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.skills-hud-shell::after {
  inset: 0;
  background:
    linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 214, 51, 0.05) 1px, transparent 1px);
  background-size: 100% 4px, 54px 54px;
  opacity: 0.18;
}

.skills-hud-topbar,
.skills-hub-grid {
  position: relative;
  z-index: 1;
}

.skills-hud-topbar {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 26px;
}

.skills-hud-topbar span {
  display: inline-flex;
  gap: 8px;
  align-items: center;
  padding: 10px 14px;
  border: 1px solid var(--frame-color);
  background: rgba(255, 214, 51, 0.08);
  color: rgba(232, 239, 179, 0.82);
  font-size: 0.84rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 12px) 0, 100% 12px, 100% 100%, 12px 100%, 0 calc(100% - 12px));
}

.skills-hud-topbar strong {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-weight: 700;
}

.skills-hub-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  grid-template-rows: auto auto auto auto;
  gap: 20px;
  align-items: stretch;
}

.skills-hub-grid::before {
  content: "";
  position: absolute;
  inset: 12% 18%;
  pointer-events: none;
  background:
    linear-gradient(var(--frame-color), var(--frame-color)) 50% 45% / 2px 38% no-repeat,
    linear-gradient(90deg, var(--frame-color), transparent 72%) 34% 23% / 24% 2px no-repeat,
    linear-gradient(90deg, transparent 28%, var(--frame-color)) 66% 23% / 24% 2px no-repeat,
    linear-gradient(90deg, var(--frame-color), transparent 72%) 34% 66% / 24% 2px no-repeat,
    linear-gradient(90deg, transparent 28%, var(--frame-color)) 66% 66% / 24% 2px no-repeat,
    linear-gradient(var(--frame-color), transparent 72%) 50% 82% / 2px 18% no-repeat;
  opacity: 0.48;
}

.skill-path-trigger,
.skills-hub-core {
  position: relative;
  padding: 20px 18px;
  border: 1px solid var(--frame-color);
  background:
    linear-gradient(180deg, rgba(16, 11, 12, 0.94), rgba(8, 5, 6, 0.96));
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.skill-path-trigger {
  display: grid;
  gap: 10px;
  text-align: left;
  color: var(--default-color);
  transition: transform 0.28s ease, border-color 0.28s ease, box-shadow 0.28s ease, background 0.28s ease;
}

.skill-path-trigger::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 51, 0.82) 22%, rgba(216, 255, 75, 0.82) 78%, transparent);
}

.skill-path-trigger:hover {
  transform: translateY(-2px);
  border-color: var(--frame-strong-color);
  box-shadow: 0 0 22px rgba(255, 242, 74, 0.08);
  background:
    linear-gradient(180deg, rgba(26, 17, 10, 0.96), rgba(10, 6, 7, 0.96));
}

.path-frontend {
  grid-column: 1;
  grid-row: 1;
}

.path-backend {
  grid-column: 3;
  grid-row: 1;
}

.path-workflow {
  grid-column: 2;
  grid-row: 1;
}

.skills-hub-core {
  grid-column: 2;
  grid-row: 2 / span 2;
  align-self: stretch;
  display: grid;
  align-content: center;
  gap: 18px;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 242, 74, 0.05),
    0 0 28px rgba(255, 242, 74, 0.06);
}

.path-tooling {
  grid-column: 1;
  grid-row: 3;
}

.path-visual {
  grid-column: 3;
  grid-row: 3;
}

.path-soft {
  grid-column: 2;
  grid-row: 4;
}

.skill-path-slot,
.skills-hub-core-kicker {
  color: rgba(216, 255, 75, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.skill-path-name {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.3rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skill-path-meta {
  color: rgba(232, 239, 179, 0.74);
  line-height: 1.45;
}

.skill-path-level {
  display: inline-flex;
  justify-self: start;
  padding: 8px 12px;
  border: 1px solid rgba(255, 214, 51, 0.28);
  background: rgba(255, 214, 51, 0.12);
  color: var(--heading-color);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.skills-hub-core-frame {
  width: min(220px, 100%);
  aspect-ratio: 1;
  margin: 0 auto;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--frame-color);
  background:
    linear-gradient(180deg, rgba(255, 214, 51, 0.12), rgba(255, 214, 51, 0.04)),
    rgba(8, 5, 6, 0.94);
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  box-shadow:
    0 0 0 1px rgba(255, 242, 74, 0.06),
    0 0 28px rgba(255, 242, 74, 0.08);
}

.skills-hub-core-level {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(2.3rem, 4vw, 3rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.skills-hub-core-label {
  color: rgba(232, 239, 179, 0.78);
  font-size: 0.88rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.skills-hub-core h3 {
  color: var(--heading-color);
  font-size: 1.18rem;
  letter-spacing: 0.08em;
}

.skills-hub-core p {
  margin: 0;
  color: rgba(232, 239, 179, 0.72);
  line-height: 1.65;
}

@keyframes skills-orbit-spin {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) rotate(-28deg) scale(0.9);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) rotate(360deg);
  }
}

@keyframes skills-core-reveal {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.78);
  }

  to {
    opacity: 1;
    transform: translate(-50%, -50%) scale(1);
  }
}

@keyframes skills-path-deploy {
  from {
    opacity: 0;
    transform: translate(-50%, -50%) scale(0.18);
  }

  45% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: var(--orbit-transform);
  }
}

@media (min-width: 992px) {
  .skills-hub-grid {
    --orbit-radius: 380px;
    min-height: 1000px;
    display: block;
  }

  .skills-hub-grid::before,
  .skills-hub-grid::after {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    pointer-events: none;
  }

  .skills-hub-grid::before {
    width: 800px;
    height: 800px;
    border: 1px solid rgba(255, 214, 51, 0.14);
    box-shadow:
      inset 0 0 40px rgba(255, 214, 51, 0.05),
      0 0 0 1px rgba(255, 214, 51, 0.05);
    transform: translate(-50%, -50%);
    background: radial-gradient(circle, rgba(255, 242, 74, 0.04), transparent 72%);
    opacity: 0.9;
  }

  .skills-hub-grid::after {
    width: 690px;
    height: 690px;
    border: 1px dashed rgba(216, 255, 75, 0.22);
    box-shadow: 0 0 26px rgba(255, 242, 74, 0.08);
    transform: translate(-50%, -50%);
    transform-origin: center;
    will-change: transform;
  }

  .skill-path-trigger,
  .skills-hub-core {
    position: absolute;
    margin: 0;
  }

  .skills-hub-core {
    top: 50%;
    left: 50%;
    width: 300px;
    min-height: 300px;
    padding: 28px 24px;
    transform: translate(-50%, -50%);
    z-index: 4;
  }

  .skills-hub-core h3 {
    max-width: 16ch;
    margin: 0 auto;
  }

  .skill-path-trigger {
    --orbit-transform: translate(-50%, -50%) rotate(var(--orbit-angle)) translateY(calc(var(--orbit-radius) * -1)) rotate(calc(var(--orbit-angle) * -1));
    top: 50%;
    left: 50%;
    width: 220px;
    min-height: 170px;
    align-content: start;
    padding: 22px 18px 18px;
    transform: var(--orbit-transform);
    z-index: 3;
  }

  .skill-path-trigger:hover {
    transform: var(--orbit-transform) scale(1.03);
  }

  .path-workflow {
    --deploy-delay: 0.6s;
    --orbit-angle: 300deg;
  }

  .path-backend {
    --deploy-delay: 0.28s;
    --orbit-angle: 60deg;
  }

  .path-visual {
    --deploy-delay: 0.36s;
    --orbit-angle: 120deg;
  }

  .path-soft {
    --deploy-delay: 0.44s;
    --orbit-angle: 180deg;
  }

  .path-tooling {
    --deploy-delay: 0.52s;
    --orbit-angle: 240deg;
  }

  .path-frontend {
    --deploy-delay: 0.2s;
    --orbit-angle: 0deg;
  }

  .skills-hub-section.is-orbit-animating .skills-hub-grid::after {
    animation: skills-orbit-spin 1.1s cubic-bezier(0.22, 1, 0.36, 1) 1 both;
  }

  .skills-hub-section.is-orbit-animating .skills-hub-core {
    animation: skills-core-reveal 0.38s cubic-bezier(0.22, 1, 0.36, 1) both;
  }

  .skills-hub-section.is-orbit-animating .skill-path-trigger {
    animation: skills-path-deploy 0.78s cubic-bezier(0.22, 1, 0.36, 1) var(--deploy-delay) both;
  }
}

body.skills-modal-open {
  overflow: hidden;
}

@keyframes shared-modal-backdrop-reveal {
  from {
    opacity: 0;
  }

  to {
    opacity: 1;
  }
}

@keyframes shared-modal-dialog-reveal {
  from {
    opacity: 0;
    transform: translateY(34px) scale(0.96);
    filter: blur(12px);
  }

  60% {
    opacity: 1;
    filter: blur(0);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@keyframes shared-modal-frame-load {
  0% {
    opacity: 0;
    background-size:
      0 1px,
      1px 0,
      0 1px,
      1px 0;
  }

  18% {
    opacity: 1;
  }

  34% {
    background-size:
      calc(100% - var(--frame-cut)) 1px,
      1px 0,
      0 1px,
      1px 0;
  }

  56% {
    background-size:
      calc(100% - var(--frame-cut)) 1px,
      1px calc(100% - var(--frame-cut)),
      0 1px,
      1px 0;
  }

  78% {
    background-size:
      calc(100% - var(--frame-cut)) 1px,
      1px calc(100% - var(--frame-cut)),
      calc(100% - var(--frame-cut)) 1px,
      1px 0;
  }

  100% {
    opacity: 1;
    background-size:
      calc(100% - var(--frame-cut)) 1px,
      1px calc(100% - var(--frame-cut)),
      calc(100% - var(--frame-cut)) 1px,
      1px calc(100% - var(--frame-cut));
  }
}

@keyframes shared-modal-scanline {
  from {
    opacity: 0;
    transform: translateX(-18px) scaleX(0.4);
  }

  18% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateX(calc(100% - 154px)) scaleX(1);
  }
}

@keyframes shared-modal-content-reveal {
  from {
    opacity: 0;
    transform: translateY(14px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes shared-modal-close-reveal {
  from {
    opacity: 0;
    transform: translateY(-10px) rotate(-10deg) scale(0.92);
  }

  to {
    opacity: 1;
    transform: translateY(0) rotate(0deg) scale(1);
  }
}

.skills-modal {
  position: fixed;
  inset: 0;
  display: grid;
  place-items: center;
  padding: 24px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity 0.28s ease, visibility 0.28s ease;
  z-index: 1200;
}

.skills-modal.is-open {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
}

.skills-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(4, 3, 4, 0.78);
  backdrop-filter: blur(6px);
  opacity: 0;
}

.skills-modal-dialog {
  position: relative;
  display: flex;
  flex-direction: column;
  width: min(920px, 100%);
  max-height: min(86vh, 920px);
  overflow: hidden;
  padding: 28px;
  border: 1px solid transparent;
  background:
    radial-gradient(circle at top, rgba(255, 242, 74, 0.08), transparent 24%),
    linear-gradient(180deg, rgba(16, 10, 11, 0.98), rgba(8, 5, 6, 0.98));
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  box-shadow:
    0 0 0 1px rgba(255, 242, 74, 0.05),
    0 30px 70px rgba(0, 0, 0, 0.42);
  z-index: 1;
  opacity: 0;
  transform: translateY(34px) scale(0.96);
  filter: blur(12px);
}

.skills-modal-frame {
  position: absolute;
  inset: 0;
  background-repeat: no-repeat;
  pointer-events: none;
  opacity: 0;
}

.skills-modal-dialog::after {
  content: "";
  position: absolute;
  top: 0;
  left: 22px;
  width: 136px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 92, 0.94), rgba(216, 255, 75, 0.86), transparent);
  box-shadow: 0 0 16px rgba(255, 244, 92, 0.16);
  pointer-events: none;
  opacity: 0;
  z-index: 2;
}

.skills-modal-frame-outer {
  --frame-cut: 26px;
  inset: 0;
  background-image:
    linear-gradient(90deg, rgba(255, 214, 51, 0.88), rgba(216, 255, 75, 0.96)),
    linear-gradient(180deg, rgba(255, 214, 51, 0.88), rgba(216, 255, 75, 0.96)),
    linear-gradient(90deg, rgba(255, 214, 51, 0.88), rgba(216, 255, 75, 0.96)),
    linear-gradient(180deg, rgba(255, 214, 51, 0.88), rgba(216, 255, 75, 0.96));
  background-position:
    left top,
    right top,
    right bottom,
    left bottom;
  clip-path: polygon(0 0, calc(100% - 26px) 0, 100% 26px, 100% 100%, 26px 100%, 0 calc(100% - 26px));
  box-shadow: inset 0 0 0 1px rgba(255, 242, 74, 0.05);
  z-index: 1;
}

.skills-modal-frame-inner {
  --frame-cut: 18px;
  inset: 18px;
  background-image:
    linear-gradient(90deg, rgba(255, 214, 51, 0.26), rgba(216, 255, 75, 0.52)),
    linear-gradient(180deg, rgba(255, 214, 51, 0.26), rgba(216, 255, 75, 0.52)),
    linear-gradient(90deg, rgba(255, 214, 51, 0.26), rgba(216, 255, 75, 0.52)),
    linear-gradient(180deg, rgba(255, 214, 51, 0.26), rgba(216, 255, 75, 0.52));
  background-position:
    left top,
    right top,
    right bottom,
    left bottom;
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  z-index: 1;
}

.skills-modal-close {
  position: absolute;
  top: 18px;
  right: 18px;
  width: 54px;
  height: 54px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--frame-color);
  background: rgba(255, 214, 51, 0.12);
  color: var(--heading-color);
  clip-path: polygon(18% 0, 100% 0, 100% 82%, 82% 100%, 0 100%, 0 18%);
  box-shadow:
    0 0 0 1px rgba(255, 242, 74, 0.05),
    0 0 18px rgba(255, 244, 92, 0.12);
  cursor: pointer;
  touch-action: manipulation;
  z-index: 6;
  opacity: 0;
  transition: transform 0.24s ease, background 0.24s ease, color 0.24s ease, box-shadow 0.24s ease;
}

.skills-modal-close::before {
  content: "";
  position: absolute;
  inset: -10px;
}

.skills-modal-close:hover {
  background: linear-gradient(135deg, var(--accent-color), var(--accent-soft-color));
  color: var(--contrast-color);
  transform: scale(1.04);
}

.skills-modal-close:focus-visible {
  outline: 1px solid rgba(255, 244, 92, 0.72);
  outline-offset: 2px;
}

.skills-modal-body {
  flex: 1 1 auto;
  min-height: 0;
  overflow: hidden;
  padding-right: 0;
  position: relative;
  z-index: 3;
}

.skills-modal.is-open .skills-modal-backdrop {
  animation: shared-modal-backdrop-reveal 0.3s ease both;
}

.skills-modal.is-open .skills-modal-dialog {
  animation: shared-modal-dialog-reveal 0.44s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

.skills-modal.is-open .skills-modal-frame-outer {
  animation: shared-modal-frame-load 0.48s cubic-bezier(0.22, 1, 0.36, 1) 0.06s both;
}

.skills-modal.is-open .skills-modal-frame-inner {
  animation: shared-modal-frame-load 0.44s cubic-bezier(0.22, 1, 0.36, 1) 0.18s both;
}

.skills-modal.is-open .skills-modal-dialog::after {
  animation: shared-modal-scanline 0.56s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.skills-modal.is-open .skills-modal-close {
  animation: shared-modal-close-reveal 0.32s cubic-bezier(0.22, 1, 0.36, 1) 0.22s both;
}

.skills-modal.is-open .skills-modal-body > * {
  animation: shared-modal-content-reveal 0.38s cubic-bezier(0.22, 1, 0.36, 1) 0.28s both;
}

.journey-modal .skills-modal-dialog {
  width: min(980px, 100%);
  max-height: min(90vh, 980px);
  padding: 32px 30px 28px;
}

.journey-modal .skills-modal-frame-outer {
  --frame-cut: 30px;
  clip-path: polygon(0 0, calc(100% - 30px) 0, 100% 30px, 100% 100%, 30px 100%, 0 calc(100% - 30px));
}

.journey-modal .skills-modal-frame-inner {
  display: none;
}

.journey-modal .skills-modal-dialog::after {
  left: 28px;
  width: 188px;
}

.journey-modal .skills-modal-body {
  overflow: auto;
  padding-right: 10px;
}

.skill-modal-header-copy {
  margin-bottom: 22px;
  padding-right: 64px;
}

.skill-modal-tag {
  display: inline-flex;
  margin-bottom: 14px;
  padding: 8px 12px;
  border: 1px solid var(--frame-color);
  background: rgba(255, 214, 51, 0.12);
  color: rgba(216, 255, 75, 0.84);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.skill-modal-header-copy h3 {
  margin-bottom: 10px;
  color: var(--heading-color);
  font-size: clamp(1.8rem, 3vw, 2.4rem);
  letter-spacing: 0.08em;
}

.skill-modal-header-copy p {
  margin: 0;
  color: rgba(232, 239, 179, 0.74);
  line-height: 1.7;
  max-width: 60ch;
}

.skill-modal-columns {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 18px;
}

.skill-modal-panel {
  padding: 20px;
  border: 1px solid var(--frame-color);
  background: rgba(255, 214, 51, 0.06);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.skill-modal-panel h4 {
  margin-bottom: 14px;
  color: var(--heading-color);
  font-size: 1rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.skill-modal-chip-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.skill-modal-chip-list span {
  display: inline-flex;
  padding: 9px 12px;
  border: 1px solid var(--frame-color);
  background: rgba(255, 214, 51, 0.1);
  color: rgba(236, 242, 185, 0.86);
  font-weight: 600;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.skill-modal-points {
  margin: 0;
  padding-left: 18px;
  display: grid;
  gap: 10px;
  color: rgba(232, 239, 179, 0.78);
  line-height: 1.6;
}

@media (max-width: 991px) {
  .skills-hub-grid {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: auto;
  }

  .skills-hub-grid::before {
    display: none;
  }

  .path-frontend,
  .path-backend,
  .path-workflow,
  .path-tooling,
  .path-visual,
  .path-soft,
  .skills-hub-core {
    grid-column: auto;
    grid-row: auto;
  }

  .skills-hub-core {
    order: -1;
  }

  .skill-modal-columns {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 768px) {
  .skills-hud-shell,
  .skills-hud-shell::before,
  .skills-hud-topbar span,
  .skill-path-trigger,
  .skill-path-level,
  .skills-hub-core,
  .skills-modal-dialog,
  .skills-modal-frame,
  .skills-modal-close,
  .skill-modal-tag,
  .skill-modal-panel,
  .skill-modal-chip-list span {
    clip-path: none;
  }

  .skills-hud-shell {
    padding: 20px 18px;
  }

  .skills-hub-grid {
    grid-template-columns: 1fr;
  }

  .skills-hub-core-frame {
    width: 180px;
    clip-path: none;
    aspect-ratio: auto;
    padding: 24px 18px;
  }

  .skills-modal {
    padding: 14px;
  }

  .skills-modal-dialog {
    padding: 20px 16px;
  }

  .skills-modal-body,
  .journey-modal .skills-modal-body {
    padding-right: 0;
  }

  .skills-modal-close {
    top: 14px;
    right: 14px;
    width: 48px;
    height: 48px;
  }

  .skill-modal-header-copy {
    padding-right: 0;
  }
}

/*--------------------------------------------------------------
# Journey Hub
--------------------------------------------------------------*/
.journey-hud-shell {
  position: relative;
  padding: 30px;
  border: 1px solid var(--frame-color);
  background:
    linear-gradient(180deg, rgba(255, 214, 51, 0.06), rgba(216, 255, 75, 0.03)),
    rgba(8, 5, 6, 0.92);
  clip-path: polygon(0 0, calc(100% - 28px) 0, 100% 28px, 100% 100%, 28px 100%, 0 calc(100% - 28px));
  box-shadow:
    inset 0 0 0 1px rgba(255, 242, 74, 0.03),
    0 0 36px rgba(255, 214, 51, 0.07);
}

.journey-hud-shell::before {
  content: "";
  position: absolute;
  inset: 14px;
  border: 1px solid rgba(255, 214, 51, 0.12);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
  pointer-events: none;
}

.journey-hud-topbar {
  position: relative;
  z-index: 1;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-bottom: 24px;
}

.journey-hud-topbar span {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 14px;
  border: 1px solid rgba(255, 214, 51, 0.22);
  background: rgba(255, 214, 51, 0.08);
  color: rgba(232, 239, 179, 0.78);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.journey-hud-topbar strong {
  color: var(--heading-color);
  font-weight: 700;
}

.journey-hub-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.15fr) minmax(260px, 0.9fr) minmax(0, 1.15fr);
  align-items: center;
  gap: 22px;
}

.journey-hub-grid::before,
.journey-hub-grid::after {
  content: "";
  position: absolute;
  top: 50%;
  width: calc(50% - 170px);
  height: 1px;
  background: linear-gradient(90deg, rgba(255, 214, 51, 0.05), rgba(255, 214, 51, 0.35), rgba(216, 255, 75, 0.45));
  pointer-events: none;
}

.journey-hub-grid::before {
  left: 32px;
}

.journey-hub-grid::after {
  right: 32px;
  transform: scaleX(-1);
}

.journey-route-trigger,
.journey-hub-core {
  position: relative;
  z-index: 1;
  min-height: 230px;
  padding: 24px;
  border: 1px solid var(--frame-color);
  background:
    linear-gradient(180deg, rgba(255, 214, 51, 0.08), rgba(216, 255, 75, 0.02)),
    rgba(10, 6, 7, 0.94);
  clip-path: polygon(0 0, calc(100% - 20px) 0, 100% 20px, 100% 100%, 20px 100%, 0 calc(100% - 20px));
}

.journey-route-trigger {
  display: grid;
  align-content: start;
  gap: 16px;
  width: 100%;
  color: inherit;
  text-align: left;
  font: inherit;
  transition: transform 0.24s ease, border-color 0.24s ease, box-shadow 0.24s ease, background 0.24s ease;
}

.journey-route-trigger::before {
  content: "";
  position: absolute;
  left: 16px;
  right: 16px;
  top: -1px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 51, 0.92) 20%, rgba(216, 255, 75, 0.78) 80%, transparent);
}

.journey-route-trigger:hover {
  transform: translateY(-3px);
  border-color: var(--frame-strong-color);
  box-shadow: 0 0 26px rgba(255, 242, 74, 0.09);
  background:
    linear-gradient(180deg, rgba(26, 17, 10, 0.96), rgba(10, 6, 7, 0.96));
}

.journey-route-slot,
.journey-hub-core-kicker {
  color: rgba(216, 255, 75, 0.82);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
}

.journey-route-name {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: 1.42rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.journey-route-meta {
  color: rgba(232, 239, 179, 0.74);
  line-height: 1.55;
}

.journey-route-level {
  display: inline-flex;
  justify-self: start;
  padding: 8px 12px;
  border: 1px solid rgba(255, 214, 51, 0.28);
  background: rgba(255, 214, 51, 0.12);
  color: var(--heading-color);
  font-size: 0.76rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  clip-path: polygon(0 0, calc(100% - 10px) 0, 100% 10px, 100% 100%, 10px 100%, 0 calc(100% - 10px));
}

.journey-hub-core {
  display: grid;
  z-index: 3;
  align-content: center;
  justify-items: center;
  gap: 16px;
  text-align: center;
  box-shadow:
    inset 0 0 0 1px rgba(255, 242, 74, 0.05),
    0 0 26px rgba(255, 242, 74, 0.06);
}

.journey-hub-core-frame {
  width: min(190px, 100%);
  aspect-ratio: 1;
  display: grid;
  align-content: center;
  gap: 8px;
  border: 1px solid var(--frame-color);
  background:
    linear-gradient(180deg, rgba(255, 214, 51, 0.1), rgba(255, 214, 51, 0.03)),
    rgba(8, 5, 6, 0.94);
  clip-path: polygon(50% 0, 100% 26%, 100% 74%, 50% 100%, 0 74%, 0 26%);
  box-shadow:
    0 0 0 1px rgba(255, 242, 74, 0.06),
    0 0 24px rgba(255, 242, 74, 0.08);
}

.journey-hub-core-level {
  color: var(--heading-color);
  font-family: var(--heading-font);
  font-size: clamp(2rem, 3.8vw, 2.7rem);
  font-weight: 700;
  letter-spacing: 0.08em;
}

.journey-hub-core-label {
  color: rgba(232, 239, 179, 0.78);
  font-size: 0.82rem;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
}

.journey-hub-core h3 {
  margin: 0;
  color: var(--heading-color);
  font-size: 1.15rem;
  letter-spacing: 0.08em;
}

.journey-hub-core p {
  margin: 0;
  color: rgba(232, 239, 179, 0.72);
  line-height: 1.65;
  max-width: 34ch;
}

@keyframes journey-link-reveal-left {
  from {
    opacity: 0;
    transform: translateX(26px) scaleX(0.2);
  }

  to {
    opacity: 1;
    transform: translateX(0) scaleX(1);
  }
}

@keyframes journey-link-reveal-right {
  from {
    opacity: 0;
    transform: scaleX(-0.2) translateX(26px);
  }

  to {
    opacity: 1;
    transform: scaleX(-1) translateX(0);
  }
}

@keyframes journey-route-deploy-left {
  from {
    opacity: 0;
    transform: translate(176px, 88px) scale(0.9);
  }

  55% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes journey-route-deploy-right {
  from {
    opacity: 0;
    transform: translate(-176px, 88px) scale(0.9);
  }

  55% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: translate(0, 0) scale(1);
  }
}

@keyframes journey-core-deploy {
  from {
    opacity: 0;
    transform: translateY(82px) scale(0.9);
  }

  55% {
    opacity: 1;
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

.route-experience {
  --journey-deploy-delay: 0.28s;
}

.journey-hub-core {
  --journey-deploy-delay: 0s;
}

.route-learning {
  --journey-deploy-delay: 0.4s;
}

.journey-map-section.is-journey-animating .journey-hub-grid::before {
  animation: journey-link-reveal-left 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.journey-map-section.is-journey-animating .journey-hub-grid::after {
  animation: journey-link-reveal-right 0.52s cubic-bezier(0.22, 1, 0.36, 1) 0.24s both;
}

.journey-map-section.is-journey-animating .journey-hub-core {
  animation: journey-core-deploy 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--journey-deploy-delay) both;
}

.journey-map-section.is-journey-animating .route-experience {
  animation: journey-route-deploy-left 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--journey-deploy-delay) both;
}

.journey-map-section.is-journey-animating .route-learning {
  animation: journey-route-deploy-right 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--journey-deploy-delay) both;
}

@keyframes project-archive-grid-pulse {
  from {
    opacity: 0;
    transform: scaleX(0.68);
  }

  55% {
    opacity: 0.9;
  }

  to {
    opacity: 0.5;
    transform: scaleX(1);
  }
}

@keyframes project-archive-scan {
  from {
    opacity: 0;
    transform: translateX(-24px) scaleX(0.45);
  }

  20% {
    opacity: 1;
  }

  82% {
    opacity: 1;
  }

  to {
    opacity: 0;
    transform: translateX(calc(100% - 164px)) scaleX(1);
  }
}

@keyframes project-archive-card-deploy {
  from {
    opacity: 0;
    transform: translateY(42px) scale(0.96);
    filter: blur(10px) saturate(0.72);
  }

  58% {
    opacity: 1;
    filter: blur(0) saturate(1);
  }

  to {
    opacity: 1;
    transform: translateY(0) scale(1);
    filter: none;
  }
}

@keyframes project-archive-trace {
  from {
    opacity: 0;
    transform: scaleX(0.2);
  }

  to {
    opacity: 1;
    transform: scaleX(1);
  }
}

@keyframes project-archive-detail-reveal {
  from {
    opacity: 0;
    transform: translateY(12px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes project-archive-footer-reveal {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

.project-archive-grid {
  position: relative;
  isolation: isolate;
  --project-archive-inset: 16px;
}

.project-archive-grid::before,
.project-archive-grid::after {
  content: "";
  position: absolute;
  pointer-events: none;
  opacity: 0;
  z-index: 0;
}

.project-archive-grid::before {
  top: -16px;
  left: var(--project-archive-inset);
  right: var(--project-archive-inset);
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(255, 214, 51, 0.26), rgba(216, 255, 75, 0.78), rgba(255, 214, 51, 0.26), transparent);
  box-shadow: 0 0 16px rgba(255, 244, 92, 0.12);
  transform-origin: center;
}

.project-archive-grid::after {
  top: -17px;
  left: var(--project-archive-inset);
  width: 148px;
  height: 3px;
  background: linear-gradient(90deg, transparent, rgba(255, 244, 92, 0.94), rgba(216, 255, 75, 0.86), transparent);
  box-shadow: 0 0 22px rgba(255, 244, 92, 0.18);
  transform-origin: left center;
}

.project-archive-grid > [class*="col-"] {
  position: relative;
  z-index: 1;
  --project-deploy-delay: 0.16s;
}

.project-archive-grid > [class*="col-"]:nth-child(1) {
  --project-deploy-delay: 0.16s;
}

.project-archive-grid > [class*="col-"]:nth-child(2) {
  --project-deploy-delay: 0.28s;
}

.project-archive-grid > [class*="col-"]:nth-child(3) {
  --project-deploy-delay: 0.4s;
}

.project-card::before {
  transform-origin: left center;
}

.portfolio.is-portfolio-animating .project-archive-grid::before {
  animation: project-archive-grid-pulse 0.46s cubic-bezier(0.22, 1, 0.36, 1) 0.04s both;
}

.portfolio.is-portfolio-animating .project-archive-grid::after {
  animation: project-archive-scan 0.68s cubic-bezier(0.22, 1, 0.36, 1) 0.08s both;
}

.portfolio.is-portfolio-animating .project-archive-grid > [class*="col-"] {
  animation: project-archive-card-deploy 0.72s cubic-bezier(0.22, 1, 0.36, 1) var(--project-deploy-delay) both;
  will-change: transform, opacity, filter;
}

.portfolio.is-portfolio-animating .project-card::before {
  animation: project-archive-trace 0.42s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--project-deploy-delay) + 0.16s) both;
}

.portfolio.is-portfolio-animating .project-card .project-role-strip,
.portfolio.is-portfolio-animating .project-card .project-contribution,
.portfolio.is-portfolio-animating .project-card .project-tags,
.portfolio.is-portfolio-animating .project-card .project-points,
.portfolio.is-portfolio-animating .project-card .action-link {
  animation: project-archive-detail-reveal 0.46s cubic-bezier(0.22, 1, 0.36, 1) calc(var(--project-deploy-delay) + 0.2s) both;
}

.portfolio.is-portfolio-animating .project-archive-footer {
  animation: project-archive-footer-reveal 0.56s cubic-bezier(0.22, 1, 0.36, 1) 0.62s both;
}

.journey-modal-stage-list {
  display: grid;
  gap: 16px;
}

.journey-modal-stage {
  padding: 18px 18px 20px;
  border: 1px solid rgba(255, 214, 51, 0.18);
  background:
    linear-gradient(180deg, rgba(255, 214, 51, 0.06), rgba(216, 255, 75, 0.02)),
    rgba(11, 7, 8, 0.9);
  clip-path: polygon(0 0, calc(100% - 18px) 0, 100% 18px, 100% 100%, 18px 100%, 0 calc(100% - 18px));
}

.journey-modal-stage-top {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 10px 14px;
  margin-bottom: 10px;
}

.journey-modal-stage-code,
.journey-modal-stage-date {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 7px 11px;
  border: 1px solid rgba(255, 214, 51, 0.22);
  background: rgba(255, 214, 51, 0.08);
  font-size: 0.74rem;
  font-weight: 700;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.journey-modal-stage-code {
  color: rgba(216, 255, 75, 0.86);
}

.journey-modal-stage-date {
  color: rgba(232, 239, 179, 0.72);
}

.journey-modal-stage h4 {
  margin-bottom: 8px;
  color: var(--heading-color);
  font-size: 1.08rem;
  letter-spacing: 0.04em;
}

.journey-modal-stage-place {
  margin-bottom: 12px;
  color: rgba(232, 239, 179, 0.72);
}

.journey-modal-stage-place em {
  font-style: normal;
  color: rgba(255, 242, 74, 0.9);
}

@media (max-width: 991px) {
  .journey-hub-grid {
    grid-template-columns: 1fr;
  }

  .journey-hub-grid::before,
  .journey-hub-grid::after {
    display: none;
  }

  .journey-route-trigger,
  .journey-hub-core {
    min-height: auto;
  }

  .journey-hub-core {
    order: -1;
  }
}

@media (max-width: 768px) {
  .hero img {
    object-position: 89% 18%;
    transform: scale(1.00);
  }

  .journey-hud-shell,
  .journey-hud-shell::before,
  .journey-hud-topbar span,
  .journey-route-trigger,
  .journey-route-level,
  .journey-hub-core,
  .journey-hub-core-frame,
  .journey-modal-stage,
  .journey-modal-stage-code,
  .journey-modal-stage-date {
    clip-path: none;
  }

  .journey-hud-shell {
    padding: 20px 18px;
  }

  .hero-signal-strip span {
    clip-path: none;
  }

  .journey-modal-stage-top {
    flex-direction: column;
    align-items: flex-start;
  }
}
