:root {
  --bg-900: #070b13;
  --bg-800: #0e1620;
  --bg-700: #101b29;
  --panel: rgba(19, 29, 39, 0.92);
  --panel-strong: rgba(10, 17, 24, 0.95);
  --stroke: rgba(255,255,255,0.08);
  --text: #edf3ff;
  --muted: rgba(237,243,255,0.72);
  --soft: rgba(237,243,255,0.5);
  --gold: #f9c76b;
  --gold-soft: rgba(249, 199, 107, 0.18);
  --blue: #7cc8ff;
  --shadow: 0 30px 60px rgba(2, 6, 12, 0.55);
}

body.portfolio-landing-page {
  background:
    radial-gradient(circle at top left, rgba(249, 199, 107, 0.15), transparent 22%),
    radial-gradient(circle at bottom right, rgba(124, 200, 255, 0.1), transparent 24%),
    var(--bg-900);
  color: var(--text);
  font-family: 'Inter', sans-serif;
}

img {
  max-width: 100%;
  display: block;
}

* {
  box-sizing: border-box;
}

a {
  text-decoration: none;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(10, 14, 20, 0.86);
  backdrop-filter: blur(18px);
  border-bottom: 1px solid var(--stroke);
}

.site-header__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  min-height: 82px;
  gap: 20px;
}

.site-brand {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, rgba(249,199,107,0.25), rgba(124,200,255,0.08));
  border: 1px solid rgba(249,199,107,0.5);
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.site-nav ul {
  display: flex;
  align-items: center;
  list-style: none;
  gap: 2rem;
  padding: 0;
  margin: 0;
}

.site-nav li a {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
}

.site-nav li a.active,
.site-nav li a:hover {
  color: var(--gold);
}

.site-nav .resources-dropdown {
  position: relative;
}

.site-nav .resources-toggle {
  display: inline-flex;
  align-items: center;
  gap: 0.45rem;
  border: 0;
  padding: 0;
  background: transparent;
  color: var(--muted);
  font: inherit;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 600;
  cursor: pointer;
}

.site-nav .resources-toggle:hover,
.site-nav .resources-toggle:focus-visible,
.site-nav .resources-dropdown.active .resources-toggle {
  color: var(--gold);
}

.site-nav .resources-toggle span {
  font-size: 1rem;
  line-height: 1;
  transition: transform 0.2s ease;
}

.site-nav .resources-dropdown.active .resources-toggle span {
  transform: rotate(45deg);
}

.site-nav .resources-menu {
  display: none;
  position: absolute;
  top: calc(100% + 1.25rem);
  left: -1rem;
  min-width: 210px;
  padding: 0.6rem 0;
  background: var(--panel-strong);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
  z-index: 10;
}

.site-nav .resources-dropdown:hover .resources-menu,
.site-nav .resources-dropdown:focus-within .resources-menu,
.site-nav .resources-dropdown.active .resources-menu {
  display: block;
}

.site-nav .resources-menu li a {
  display: block;
  padding: 0.7rem 1rem;
  color: var(--muted);
  font-size: 0.75rem;
  text-transform: none;
  letter-spacing: 0.02em;
  white-space: nowrap;
}

.site-nav .resources-menu li a:hover,
.site-nav .resources-menu li a:focus-visible {
  color: var(--gold);
  background: var(--gold-soft);
}

.site-header__cta,
.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  font-weight: 700;
  transition: all 0.25s ease;
}

.site-header__cta,
.primary-btn {
  background: linear-gradient(135deg, var(--gold), #ffde8d);
  color: #07111a;
  padding: 0.8rem 1.25rem;
  box-shadow: 0 16px 30px rgba(249,199,107,0.25);
}

.secondary-btn {
  border: 1px solid rgba(249,199,107,0.55);
  color: var(--gold);
  background: rgba(249,199,107,0.05);
  padding: 0.8rem 1.25rem;
}

.site-header__cta:hover,
.primary-btn:hover,
.secondary-btn:hover {
  transform: translateY(-2px);
}

.portfolio-main {
  padding-bottom: 4rem;
}

.hero-shell {
  padding: 3rem 0 2rem;
}

.hero-shell__grid {
  display: grid;
  grid-template-columns: 1.2fr 0.95fr 1.25fr;
  align-items: center;
  gap: 2rem;
  min-height: 720px;
}

.hero-copy {
  padding-top: 2rem;
}

.eyebrow,
.section-kicker {
  margin: 0 0 1rem;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.72rem;
  font-weight: 700;
}

.hero-copy h1 {
  font-family: 'Manrope', sans-serif;
  font-size: clamp(3rem, 5vw, 5.3rem);
  line-height: 0.9;
  letter-spacing: -0.07em;
  margin: 0;
  color: var(--text);
  font-weight: 900;
}

.hero-copy h1 span {
  color: var(--gold);
}

.role {
  margin-top: 1.1rem;
  font-size: 1.35rem;
  font-weight: 600;
  color: var(--muted);
}

.lead {
  margin-top: 1rem;
  max-width: 550px;
  color: var(--muted);
  font-size: 1.02rem;
  line-height: 1.8;
}

.action-row {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  margin-top: 2rem;
}

.hero-visual {
  position: relative;
}

.portrait-wrap {
  position: relative;
  width: min(100%, 420px);
  margin: 0 auto;
  padding: 1.1rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(249,199,107,0.16), rgba(124,200,255,0.06));
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow);
}

.portrait-wrap::before {
  content: "";
  position: absolute;
  inset: -18px auto auto 12px;
  width: 90%;
  height: 90%;
  background: radial-gradient(circle, rgba(249,199,107,0.28), transparent 62%);
  z-index: 0;
}

.portrait-wrap img {
  position: relative;
  z-index: 1;
  width: 100%;
  border-radius: 22px;
  object-fit: cover;
  min-height: 560px;
  background: #111;
}

.hero-aside {
  padding: 1.4rem 1.3rem 1.2rem;
  border-radius: 26px;
  background: rgba(18, 26, 35, 0.88);
  border: 1px solid var(--stroke);
  box-shadow: var(--shadow);
}

.hero-aside h2 {
  margin: 0 0 1.1rem;
  font-size: clamp(1.6rem, 2vw, 2.2rem);
  font-weight: 700;
  line-height: 1.2;
}

.skill-cards {
  display: grid;
  gap: 0.9rem;
}

.mini-card {
  display: flex;
  gap: 0.8rem;
  padding: 0.85rem 0.7rem;
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.05);
  border-radius: 16px;
}

.card-icon {
  width: 40px;
  height: 40px;
  border-radius: 12px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: rgba(249,199,107,0.12);
  color: var(--gold);
}

.mini-card h3 {
  margin: 0 0 0.35rem;
  font-size: 0.98rem;
}

.mini-card p {
  margin: 0;
  color: var(--soft);
  line-height: 1.5;
  font-size: 0.76rem;
}

.progress-list {
  margin-top: 1.6rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--stroke);
}

.progress-list h3 {
  margin: 0 0 1rem;
  font-size: 0.98rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--muted);
}

.project-progress + .project-progress {
  margin-top: 1rem;
}

.project-progress__row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0.75rem;
  margin-bottom: 0.45rem;
}

.project-progress__label {
  display: flex;
  align-items: center;
  gap: 0.6rem;
  min-width: 0;
}

.project-progress__label strong {
  font-size: 0.8rem;
  color: var(--text);
}

.project-thumb {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: inline-block;
  background-size: cover;
  background-position: center;
  border: 1px solid rgba(255,255,255,0.08);
}

.progress-bar {
  display: block;
  width: 100%;
  height: 8px;
  background: rgba(255,255,255,0.06);
  border-radius: 999px;
  overflow: hidden;
}

.progress-bar i {
  display: block;
  height: 100%;
  background: linear-gradient(90deg, var(--gold), #ffca6a 70%);
  border-radius: inherit;
}

.showcase,
.dashboard,
.profile-story,
.journey-section {
  padding: 2.5rem 0;
}

.section-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.5rem;
}

.section-heading--center {
  justify-content: center;
  text-align: center;
}

.section-heading h2 {
  margin: 0;
  font-size: clamp(2rem, 2.8vw, 2.8rem);
  letter-spacing: -0.05em;
}

.view-link {
  color: var(--gold);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-size: 0.74rem;
}

.project-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
}

.project-card {
  background: rgba(16,24,31,0.96);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.project-card img {
  width: 100%;
  height: 260px;
  object-fit: cover;
}

.project-copy {
  padding: 1.1rem 1rem 1.3rem;
}

.project-tag {
  display: inline-block;
  padding: 0.35rem 0.55rem;
  border-radius: 999px;
  background: rgba(249,199,107,0.08);
  color: var(--gold);
  font-size: 0.68rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 0.7rem;
}

.project-copy h3 {
  margin: 0 0 0.5rem;
  font-size: 1.2rem;
}

.project-copy p {
  margin: 0;
  color: var(--soft);
  line-height: 1.7;
  font-size: 0.9rem;
}

.dashboard-grid {
  display: grid;
  grid-template-columns: 1.1fr 1.2fr;
  gap: 1.5rem;
}

.panel {
  background: rgba(16,24,31,0.96);
  border: 1px solid var(--stroke);
  border-radius: 24px;
  padding: 1.4rem;
  box-shadow: var(--shadow);
}

.stack-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.2rem;
}

.stack-grid span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 86px;
  padding: 0.8rem 0.95rem;
  color: var(--text);
  border-radius: 12px;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  font-weight: 600;
  font-size: 0.78rem;
}

.timeline-list {
  list-style: none;
  padding: 0;
  margin: 1.2rem 0 0;
  display: grid;
  gap: 1.1rem;
}

.timeline-list li {
  display: grid;
  grid-template-columns: 78px 1fr;
  gap: 1rem;
  align-items: start;
  padding-bottom: 0.8rem;
  border-bottom: 1px solid var(--stroke);
}

.year {
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.04em;
}

.timeline-list strong {
  display: block;
  margin-bottom: 0.2rem;
  font-size: 1rem;
}

.timeline-list p {
  margin: 0;
  color: var(--soft);
  line-height: 1.6;
  font-size: 0.86rem;
}

.story-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.2fr 0.7fr;
  gap: 1.5rem;
  align-items: center;
}

.story-image img {
  border-radius: 24px;
  width: 100%;
  min-height: 520px;
  object-fit: cover;
  box-shadow: var(--shadow);
}

.story-copy {
  padding: 0.5rem 0;
}

.story-copy h2 {
  margin: 0 0 1rem;
  font-size: clamp(2.2rem, 3vw, 3rem);
}

.story-copy p {
  color: var(--muted);
  line-height: 1.8;
}

.story-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
  margin-top: 1.5rem;
}

.story-tags span {
  padding: 0.7rem 0.9rem;
  border-radius: 999px;
  background: rgba(124,200,255,0.08);
  border: 1px solid rgba(124,200,255,0.25);
  color: var(--text);
  font-size: 0.74rem;
  font-weight: 600;
  letter-spacing: 0.04em;
}

.quote-panel {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 240px;
  padding: 1.6rem;
  border-radius: 26px;
  background: linear-gradient(135deg, rgba(124,200,255,0.12), rgba(249,199,107,0.06));
  border: 1px solid var(--stroke);
}

.quote-panel p {
  margin: 0;
  font-size: clamp(1.4rem, 2vw, 2rem);
  line-height: 1.4;
  font-weight: 700;
  color: var(--gold);
  text-align: center;
}

.journey-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.2rem;
  margin-top: 1.3rem;
}

.journey-item {
  padding: 1.4rem 1rem;
  border-radius: 20px;
  background: rgba(14,22,31,0.96);
  border: 1px solid var(--stroke);
  min-height: 220px;
}

.journey-year {
  display: inline-block;
  margin-bottom: 1rem;
  color: var(--gold);
  font-weight: 800;
  letter-spacing: 0.08em;
}

.journey-item h3 {
  margin: 0 0 0.75rem;
  font-size: 1.2rem;
}

.journey-item p {
  margin: 0;
  line-height: 1.7;
  color: var(--soft);
}

.contact-band {
  padding: 3rem 0 2rem;
}

.contact-band__inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 2rem 2.2rem;
  border-radius: 24px;
  background: linear-gradient(135deg, rgba(249,199,107,0.12), rgba(16,24,31,0.96));
  border: 1px solid rgba(249,199,107,0.26);
}

.contact-band__inner h2 {
  margin: 0;
  font-size: clamp(2rem, 3vw, 2.7rem);
}

.portfolio-footer {
  border-top: 1px solid var(--stroke);
  background: rgba(10, 17, 24, 0.96);
  padding: 1.5rem 0 2rem;
}

.footer-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.2rem;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 0.8rem;
}

.footer-brand .brand-mark {
  display: inline-flex;
  width: 38px;
  height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 12px;
  background: rgba(249,199,107,0.12);
  border: 1px solid rgba(249,199,107,0.42);
  color: var(--gold);
  font-weight: 800;
}

.footer-brand strong,
.footer-brand small {
  display: block;
}

.footer-brand small {
  color: var(--soft);
}

.footer-links {
  display: flex;
  align-items: center;
  gap: 1.25rem;
}

.footer-links a {
  color: var(--muted);
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.footer-copy {
  color: var(--soft);
  font-size: 0.8rem;
}

/* Desktop Navigation - Hide mobile elements on large screens */
@media (min-width: 1200px) {
  .mobile-nav-toggle {
    display: none !important;
  }

  .nav-modal-overlay,
  .nav-modal {
    display: none !important;
  }
}

@media (max-width: 1200px) {
  .hero-shell__grid {
    grid-template-columns: 1fr 0.9fr;
  }

  .hero-aside {
    grid-column: 1 / -1;
  }

  .project-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .journey-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 992px) {
  .story-grid,
  .dashboard-grid {
    grid-template-columns: 1fr;
  }

  .hero-shell__grid {
    grid-template-columns: 1fr;
    text-align: center;
  }

  .lead {
    margin-left: auto;
    margin-right: auto;
  }

  .action-row {
    justify-content: center;
  }

  .footer-inner,
  .contact-band__inner,
  .section-heading {
    flex-direction: column;
    align-items: flex-start;
  }
}

@media (max-width: 1199px) {
  .site-header__cta {
    display: none;
  }

  .site-nav ul {
    display: none;
  }

  .site-nav .resources-menu {
    display: none;
  }

  .mobile-nav-toggle {
    display: flex !important;
    align-items: center;
    justify-content: center;
    border: none;
    background: transparent;
    color: var(--text);
    font-size: 1.5rem;
    padding: 8px;
    cursor: pointer;
    transition: color 0.3s ease;
    margin-left: auto;
    width: 44px;
    height: 44px;
    line-height: 1;
  }

  .mobile-nav-toggle:hover {
    color: var(--gold);
  }

  .mobile-nav-toggle:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
    border-radius: 8px;
  }

  .mobile-nav-toggle svg {
    width: 24px;
    height: 24px;
  }

  /* Navigation Modal Overlay */
  .nav-modal-overlay {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(7, 11, 19, 0.75);
    z-index: 998;
    opacity: 0;
    transition: opacity 0.3s ease;
  }

  .nav-modal-overlay.active {
    display: block;
    opacity: 1;
  }

  /* Navigation Modal */
  .nav-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 999;
    align-items: center;
    justify-content: center;
    padding: 20px;
    overflow-y: auto;
  }

  .nav-modal.active {
    display: flex;
  }

  .nav-modal-content {
    background: linear-gradient(135deg, rgba(20, 31, 38, 0.98), rgba(16, 24, 31, 0.98));
    border-radius: 20px;
    width: 100%;
    max-width: 420px;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(249, 199, 107, 0.12);
    animation: slideInModal 0.3s ease forwards;
  }

  @keyframes slideInModal {
    from {
      opacity: 0;
      transform: scale(0.92);
    }
    to {
      opacity: 1;
      transform: scale(1);
    }
  }

  .nav-modal-header {
    display: flex;
    justify-content: flex-end;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  }

  .nav-modal-close {
    background: none;
    border: none;
    color: #ffffff;
    cursor: pointer;
    padding: 8px;
    line-height: 1;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
  }

  .nav-modal-close svg {
    width: 28px;
    height: 28px;
  }

  .nav-modal-close:hover {
    color: var(--gold);
    background: rgba(249, 199, 107, 0.1);
  }

  .nav-modal-close:focus {
    outline: 2px solid var(--gold);
    outline-offset: 2px;
  }

  .nav-modal-menu {
    padding: 20px 0;
  }

  .nav-modal-menu ul {
    display: block;
    list-style: none;
    margin: 0;
    padding: 0;
  }

  .nav-modal-menu li {
    margin: 0;
    padding: 0;
  }

  .nav-modal-menu a {
    display: block;
    color: #ffffff;
    text-decoration: none;
    padding: 16px 24px;
    font-size: 1rem;
    font-weight: 600;
    font-family: 'Inter', sans-serif;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.9rem;
  }

  .nav-modal-menu li:last-child a {
    border-bottom: none;
  }

  .nav-modal-menu a:hover {
    color: var(--gold);
    padding-left: 28px;
    background: rgba(249, 199, 107, 0.05);
  }

  .nav-modal-menu a:focus {
    outline: 2px solid var(--gold);
    outline-offset: -2px;
  }

  .nav-modal-menu .resources-toggle {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
    background: transparent;
    color: #ffffff;
    padding: 16px 24px;
    font: inherit;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    text-align: left;
    cursor: pointer;
  }

  .nav-modal-menu .resources-toggle:hover,
  .nav-modal-menu .resources-toggle:focus-visible,
  .nav-modal-menu .resources-dropdown.active > .resources-toggle {
    color: var(--gold);
    background: rgba(249, 199, 107, 0.05);
  }

  .nav-modal-menu .resources-toggle span {
    font-size: 1.25rem;
    line-height: 1;
    transition: transform 0.2s ease;
  }

  .nav-modal-menu .resources-dropdown.active .resources-toggle span {
    transform: rotate(45deg);
  }

  .nav-modal-menu .resources-menu {
    display: none;
    padding: 0;
    background: rgba(0, 0, 0, 0.14);
  }

  .nav-modal-menu .resources-dropdown.active .resources-menu {
    display: block;
  }

  .nav-modal-menu .resources-menu a {
    padding: 13px 24px 13px 40px;
    font-size: 0.78rem;
    text-transform: none;
    letter-spacing: 0.03em;
  }

  /* Prevent body scroll when modal is open */
  body.nav-modal-open {
    overflow: hidden;
  }

  .project-grid,
  .journey-grid {
    grid-template-columns: 1fr;
  }

  .portrait-wrap img {
    min-height: 420px;
  }
}

body.portfolio-subpage {
  background:
    radial-gradient(circle at top left, rgba(249, 199, 107, 0.1), transparent 18%),
    radial-gradient(circle at bottom right, rgba(124, 200, 255, 0.08), transparent 20%),
    var(--bg-900);
  color: var(--text);
}

body.portfolio-subpage .main {
  padding-top: 2rem;
}

body.portfolio-subpage .section {
  padding: 4.5rem 0;
}

.under-development {
  min-height: calc(100vh - 82px);
  display: flex;
  align-items: center;
  overflow: hidden;
}

.under-development__layout {
  display: grid;
  grid-template-columns: minmax(0, 0.85fr) minmax(360px, 1.15fr);
  align-items: center;
  gap: 4rem;
}

.under-development__copy {
  max-width: 520px;
}

.under-development__copy .eyebrow {
  margin-bottom: 1rem;
}

.under-development__copy h1 {
  margin: 0 0 1.25rem;
  color: var(--text);
  font-size: clamp(2.5rem, 5vw, 4.8rem);
  line-height: 1.02;
  letter-spacing: -0.04em;
}

.under-development__message {
  max-width: 460px;
  color: var(--muted);
  font-size: 1.05rem;
  line-height: 1.8;
}

.under-development__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.85rem;
  margin-top: 2rem;
}

.under-development__actions a {
  gap: 0.55rem;
}

.under-development__actions i {
  font-size: 1.05rem;
}

.under-development__art {
  position: relative;
  display: flex;
  justify-content: center;
}

.under-development__art::before {
  content: "";
  position: absolute;
  inset: 12% 5% 10%;
  background: radial-gradient(circle, rgba(124, 200, 255, 0.12), transparent 68%);
  pointer-events: none;
}

.under-development__art img {
  position: relative;
  width: min(100%, 620px);
  height: auto;
  filter: drop-shadow(0 24px 35px rgba(2, 6, 12, 0.35));
}

body.portfolio-subpage .section-title {
  text-align: left;
  padding-bottom: 2.25rem;
}

body.portfolio-subpage .section-title h2,
body.portfolio-subpage .section-title p {
  max-width: none;
  margin: 0;
}

body.portfolio-subpage .section-title h2 {
  font-size: clamp(2.1rem, 3vw, 3rem);
  margin-bottom: 0.7rem;
  color: var(--text);
}

body.portfolio-subpage .section-title p {
  color: var(--muted);
  font-size: 1rem;
  line-height: 1.7;
}

body.portfolio-subpage .info-box,
body.portfolio-subpage .resume-item,
body.portfolio-subpage .contact-form,
body.portfolio-subpage .portfolio-card,
body.portfolio-subpage .skill-box,
body.portfolio-subpage .timeline-item,
body.portfolio-subpage .skill-item,
body.portfolio-subpage .education-item,
body.portfolio-subpage .experience-item {
  background: rgba(14, 20, 29, 0.96);
  border: 1px solid var(--stroke);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

body.portfolio-subpage .info-box,
body.portfolio-subpage .contact-form,
body.portfolio-subpage .resume-item,
body.portfolio-subpage .portfolio-card,
body.portfolio-subpage .skill-box,
body.portfolio-subpage .skill-item {
  padding: 1.5rem;
}

body.portfolio-subpage .info-box h3,
body.portfolio-subpage .contact-form h3,
body.portfolio-subpage .resume-title,
body.portfolio-subpage .portfolio-info h4,
body.portfolio-subpage .skill-box h3,
body.portfolio-subpage .skill-item h3,
body.portfolio-subpage .timeline-item h4,
body.portfolio-subpage .education-item h4,
body.portfolio-subpage .experience-item h4 {
  color: var(--text);
}

body.portfolio-subpage .info-box p,
body.portfolio-subpage .content p,
body.portfolio-subpage .skill-box p,
body.portfolio-subpage .skill-item p,
body.portfolio-subpage .timeline-item p,
body.portfolio-subpage .education-item p,
body.portfolio-subpage .experience-item p,
body.portfolio-subpage .portfolio-info p,
body.portfolio-subpage .php-email-form label,
body.portfolio-subpage .php-email-form input,
body.portfolio-subpage .php-email-form textarea {
  color: var(--muted);
}

body.portfolio-subpage .portfolio-card {
  overflow: hidden;
}

body.portfolio-subpage .portfolio-info {
  padding: 1rem 1rem 1.2rem;
}

body.portfolio-subpage .portfolio-card .portfolio-img img {
  min-height: 240px;
  object-fit: cover;
}

body.portfolio-subpage .portfolio-tags span,
body.portfolio-subpage .portfolio-filters li {
  border-radius: 999px;
  border: 1px solid rgba(249,199,107,0.22);
  background: rgba(249,199,107,0.08);
  color: var(--gold);
}

body.portfolio-subpage .portfolio-filters {
  list-style: none;
  padding: 0;
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
  margin: 0 0 1.5rem;
}

body.portfolio-subpage .portfolio-filters li {
  padding: 0.7rem 1rem;
  cursor: pointer;
}

body.portfolio-subpage .portfolio-filters .filter-active {
  background: var(--gold);
  color: #101922;
  border-color: var(--gold);
}

body.portfolio-subpage .php-email-form input,
body.portfolio-subpage .php-email-form textarea {
  background: rgba(255,255,255,0.02);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 14px;
  padding: 0.9rem 1rem;
  width: 100%;
}

body.portfolio-subpage .php-email-form button,
body.portfolio-subpage .download-btn {
  border: none;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--gold), #f6d483);
  color: #07111a;
  font-weight: 800;
  padding: 0.95rem 1.6rem;
}

body.portfolio-subpage .icon-box {
  background: rgba(249,199,107,0.1);
  border: 1px solid rgba(249,199,107,0.24);
  color: var(--gold);
}

body.portfolio-subpage .experience-item ul,
body.portfolio-subpage .resume-content ul {
  padding-left: 1.1rem;
  color: var(--muted);
  line-height: 1.8;
}

body.portfolio-subpage .experience-item li,
body.portfolio-subpage .resume-content li {
  margin-bottom: 0.5rem;
}

body.portfolio-subpage .timeline-item {
  padding: 1.25rem 1rem 1rem 1.25rem;
}

body.portfolio-subpage .fact-pill,
body.portfolio-subpage .about .fact-pill,
body.portfolio-subpage .skill-item {
  background: rgba(255,255,255,0.02);
}

body.portfolio-subpage .personal-quote p,
body.portfolio-subpage .intro-content .headline,
body.portfolio-subpage .intro-content .lead,
body.portfolio-subpage .intro-content p {
  color: var(--text);
}

body.portfolio-subpage .intro-content .eyebrow {
  color: var(--gold);
}

body.portfolio-subpage .link-underline,
body.portfolio-subpage .btn-ghost,
body.portfolio-subpage .cta-group a {
  color: var(--gold);
}

body.portfolio-subpage .skills .skill-box {
  background: rgba(14,20,29,0.96);
  border: 1px solid var(--stroke);
  border-radius: 18px;
}

body.portfolio-subpage .skills .progress {
  background: rgba(255,255,255,0.06);
}

body.portfolio-subpage .skills .progress-bar {
  background: linear-gradient(90deg, var(--gold), #ffdd8e);
}

@media (max-width: 768px) {
  body.portfolio-subpage .section-title {
    text-align: center;
  }

  .under-development {
    min-height: auto;
    padding: 3rem 0 4rem !important;
  }

  .under-development__layout {
    grid-template-columns: 1fr;
    gap: 2rem;
    text-align: center;
  }

  .under-development__copy {
    margin: 0 auto;
  }

  .under-development__message {
    margin-left: auto;
    margin-right: auto;
  }

  .under-development__actions {
    justify-content: center;
  }

  .under-development__art {
    order: -1;
  }
}

.shop-page {
  background: radial-gradient(circle at 8% 8%, rgba(249, 199, 107, 0.13), transparent 25%), radial-gradient(circle at 92% 22%, rgba(124, 200, 255, 0.1), transparent 24%), var(--bg-900);
}

.shop-hero { padding: 5.5rem 0 3.5rem; }
.shop-hero__layout { display: grid; grid-template-columns: minmax(0, 1.35fr) minmax(260px, 0.65fr); align-items: end; gap: 4rem; }
.shop-hero h1 { max-width: 760px; margin: 0; color: var(--text); font-family: 'Manrope', sans-serif; font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: 0.95; letter-spacing: -0.06em; }
.shop-hero__intro { max-width: 650px; margin: 1.5rem 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.shop-hero__note { display: grid; gap: 0.65rem; padding: 1.4rem; border-left: 2px solid var(--gold); background: rgba(255, 255, 255, 0.035); color: var(--muted); line-height: 1.6; }
.shop-hero__note i { color: var(--gold); font-size: 1.5rem; }
.shop-hero__note strong { color: var(--text); }
.shop-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--stroke); }
.shop-filters { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.shop-filter, .cart-button, .add-to-cart { border: 1px solid var(--stroke); border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 0.8rem; font-weight: 700; transition: 0.2s ease; }
.shop-filter { padding: 0.6rem 0.9rem; }
.shop-filter:hover, .shop-filter.is-active { border-color: var(--gold); color: var(--gold); background: var(--gold-soft); }
.cart-button { display: inline-flex; align-items: center; gap: 0.55rem; flex-shrink: 0; padding: 0.7rem 1rem; color: var(--text); }
.cart-button span { display: inline-grid; min-width: 1.35rem; min-height: 1.35rem; place-items: center; border-radius: 50%; background: var(--gold); color: #07111a; font-size: 0.7rem; }
.shop-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.shop-product { display: flex; min-width: 0; flex-direction: column; overflow: hidden; border: 1px solid var(--stroke); background: rgba(18, 26, 35, 0.88); transition: transform 0.25s ease, border-color 0.25s ease; }
.shop-product:hover { transform: translateY(-5px); border-color: rgba(249, 199, 107, 0.5); }
.product-art { display: grid; min-height: 190px; place-items: center; color: var(--text); font-size: 4rem; }
.product-art--stand { background: linear-gradient(135deg, #284756, #10232e); }
.product-art--light { background: linear-gradient(135deg, #775b35, #261d1a); }
.product-art--hub { background: linear-gradient(135deg, #31556e, #111b29); }
.product-art--mic { background: linear-gradient(135deg, #594653, #211a28); }
.product-content { display: flex; flex: 1; flex-direction: column; padding: 1.2rem; }
.product-category { color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.product-content h2 { margin: 0.65rem 0 0.5rem; color: var(--text); font-size: 1.15rem; }
.product-content p { margin: 0; color: var(--muted); font-size: 0.88rem; line-height: 1.6; }
.product-buy { display: flex; align-items: center; justify-content: space-between; gap: 0.7rem; margin-top: auto; padding-top: 1.4rem; }
.product-buy strong { color: var(--text); }
.add-to-cart { display: inline-flex; align-items: center; gap: 0.35rem; padding: 0.55rem 0.75rem; color: var(--gold); }
.add-to-cart:hover { background: var(--gold-soft); }
.shop-cart-backdrop { position: fixed; inset: 0; z-index: 1090; background: rgba(3, 7, 12, 0.65); opacity: 0; pointer-events: none; transition: opacity 0.25s ease; }
.shop-cart-backdrop.is-visible { opacity: 1; pointer-events: auto; }
.shop-cart { position: fixed; top: 0; right: 0; bottom: 0; z-index: 1100; display: flex; width: min(420px, 100%); flex-direction: column; padding: 2rem; background: #101923; box-shadow: -20px 0 60px rgba(0, 0, 0, 0.35); transform: translateX(100%); transition: transform 0.3s ease; }
.shop-cart.is-open { transform: translateX(0); }
.shop-cart__header, .shop-cart__footer > div, .cart-item, .cart-item__controls { display: flex; align-items: center; justify-content: space-between; gap: 1rem; }
.shop-cart__header h2 { margin: 0.35rem 0 0; color: var(--text); font-size: 1.5rem; }
.shop-cart__header button, .cart-item__controls button { border: 0; background: transparent; color: var(--muted); cursor: pointer; }
.shop-cart__header button { font-size: 1.2rem; }
.shop-cart__items { flex: 1; overflow-y: auto; padding: 2rem 0; }
.cart-empty { color: var(--muted); }
.cart-item { padding: 1rem 0; border-bottom: 1px solid var(--stroke); }
.cart-item strong, .cart-item span { display: block; }
.cart-item strong { color: var(--text); font-size: 0.9rem; }
.cart-item span { margin-top: 0.35rem; color: var(--soft); font-size: 0.8rem; }
.cart-item__controls { gap: 0.5rem; }
.cart-item__controls button { padding: 0.3rem; color: var(--gold); }
.shop-cart__footer { display: grid; gap: 1rem; border-top: 1px solid var(--stroke); padding-top: 1.2rem; }
.shop-cart__footer > div span { color: var(--muted); }
.shop-cart__footer > div strong { color: var(--text); font-size: 1.2rem; }
.shop-cart__footer .primary-btn { justify-content: center; }
.shop-cart__footer small { color: var(--soft); line-height: 1.5; }

@media (max-width: 992px) {
  .shop-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .shop-hero__layout { grid-template-columns: 1fr; gap: 2rem; }
}

@media (max-width: 576px) {
  .shop-hero { padding: 3.5rem 0 2.5rem; }
  .shop-toolbar { align-items: flex-start; flex-direction: column; }
  .shop-grid { grid-template-columns: 1fr; }
  .product-art { min-height: 150px; }
  .shop-cart { padding: 1.5rem; }
}

.journal-page {
  background: radial-gradient(circle at 12% 8%, rgba(124, 200, 255, 0.12), transparent 25%), radial-gradient(circle at 88% 35%, rgba(249, 199, 107, 0.1), transparent 24%), var(--bg-900);
}
.journal-hero { padding: 5.5rem 0 3.5rem; }
.journal-hero__layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(250px, 0.7fr); align-items: end; gap: 4rem; }
.journal-hero h1 { max-width: 800px; margin: 0; color: var(--text); font-family: 'Manrope', sans-serif; font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: 0.95; letter-spacing: -0.06em; }
.journal-hero__intro { max-width: 650px; margin: 1.5rem 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.journal-hero__signal { display: grid; gap: 0.7rem; padding: 1.4rem; border-left: 2px solid var(--blue); background: rgba(255,255,255,0.035); color: var(--text); line-height: 1.6; }
.journal-hero__signal span { color: var(--blue); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.journal-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--stroke); }
.journal-filters { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.journal-filter { padding: 0.6rem 0.9rem; border: 1px solid var(--stroke); border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 0.8rem; font-weight: 700; }
.journal-filter:hover, .journal-filter.is-active { border-color: var(--blue); background: rgba(124,200,255,0.12); color: var(--blue); }
.journal-search { display: flex; align-items: center; gap: 0.6rem; min-width: 210px; padding: 0.65rem 0.8rem; border-bottom: 1px solid var(--stroke); color: var(--soft); }
.journal-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font: inherit; }
.journal-search input::placeholder { color: var(--soft); }
.journal-feature { display: grid; grid-template-columns: 0.75fr 1.25fr; margin-bottom: 1rem; border: 1px solid var(--stroke); background: rgba(18,26,35,0.88); }
.journal-feature__art { display: grid; min-height: 330px; place-items: center; align-content: center; gap: 2rem; background: linear-gradient(140deg, #173f50, #111a29); color: var(--blue); font-size: 5rem; }
.journal-feature__art span { color: var(--muted); font-size: 0.7rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.journal-feature__copy { padding: 2.5rem; }
.article-meta { color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.journal-feature h2 { max-width: 650px; margin: 0.8rem 0; color: var(--text); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.1; }
.journal-feature p, .journal-card p { color: var(--muted); line-height: 1.75; }
.journal-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.journal-card { display: flex; min-width: 0; flex-direction: column; border: 1px solid var(--stroke); background: rgba(18,26,35,0.88); }
.journal-card__art { display: grid; min-height: 150px; place-items: center; color: var(--text); font-size: 3rem; }
.journal-card__art--design { background: linear-gradient(135deg, #574d37, #242027); }
.journal-card__art--build { background: linear-gradient(135deg, #28545a, #14252d); }
.journal-card__art--mindset { background: linear-gradient(135deg, #4b4569, #202032); }
.journal-card__art--brand { background: linear-gradient(135deg, #71423e, #291d26); }
.journal-card__copy { display: flex; flex: 1; flex-direction: column; padding: 1.3rem; }
.journal-card h2 { margin: 0.65rem 0 0.45rem; color: var(--text); font-size: 1.25rem; line-height: 1.25; }
.journal-card p { margin: 0; font-size: 0.9rem; }
details { margin-top: auto; padding-top: 1.2rem; }
summary { display: flex; align-items: center; justify-content: space-between; gap: 1rem; color: var(--gold); cursor: pointer; font-size: 0.82rem; font-weight: 700; list-style: none; }
summary::-webkit-details-marker { display: none; }
.article-body { padding-top: 0.7rem; }
.article-body p { margin: 0.7rem 0 0; font-size: 0.88rem; }
.journal-empty { padding: 2rem 0; color: var(--muted); }

@media (max-width: 992px) {
  .journal-hero__layout { grid-template-columns: 1fr; gap: 2rem; }
  .journal-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 576px) {
  .journal-hero { padding: 3.5rem 0 2.5rem; }
  .journal-toolbar { align-items: stretch; flex-direction: column; }
  .journal-search { min-width: 0; }
  .journal-feature, .journal-grid { grid-template-columns: 1fr; }
  .journal-feature__art { min-height: 200px; }
  .journal-feature__copy { padding: 1.5rem; }
}

.article-link { display: inline-flex; align-items: center; justify-content: space-between; gap: 1rem; margin-top: auto; padding-top: 1.2rem; color: var(--gold); font-size: 0.82rem; font-weight: 700; }
.article-link:hover { color: var(--text); }
.article-detail { padding: 5.5rem 0 6rem; }
.article-detail__layout { display: grid; grid-template-columns: minmax(160px, 0.35fr) minmax(0, 1fr); gap: 4rem; max-width: 1040px; }
.article-detail__aside { display: grid; align-content: start; gap: 2rem; }
.article-back { display: inline-flex; align-items: center; gap: 0.55rem; color: var(--muted); font-size: 0.85rem; font-weight: 700; }
.article-back:hover { color: var(--gold); }
.article-detail__body { max-width: 720px; }
.article-detail__body h1 { margin: 0.4rem 0 1.5rem; color: var(--text); font-family: 'Manrope', sans-serif; font-size: clamp(2.4rem, 5vw, 4.8rem); line-height: 1; letter-spacing: -0.06em; }
.article-detail__intro { margin: 0 0 3rem; color: var(--muted); font-size: 1.15rem; line-height: 1.8; }
.article-detail__body section { padding: 1.6rem 0; border-top: 1px solid var(--stroke); }
.article-detail__body section h2 { margin: 0 0 0.7rem; color: var(--text); font-size: 1.35rem; }
.article-detail__body section p { margin: 0; color: var(--muted); font-size: 1rem; line-height: 1.9; }
.article-next { margin-top: 2rem; }

@media (max-width: 768px) {
  .article-detail { padding: 3.5rem 0 4rem; }
  .article-detail__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .article-detail__aside { gap: 1rem; }
}

.affiliate-page {
  background: radial-gradient(circle at 88% 10%, rgba(249, 199, 107, 0.14), transparent 25%), radial-gradient(circle at 8% 40%, rgba(124, 200, 255, 0.1), transparent 24%), var(--bg-900);
}
.affiliate-hero { padding: 5.5rem 0 4.5rem; }
.affiliate-hero__layout { display: grid; grid-template-columns: minmax(0, 1.25fr) minmax(280px, 0.75fr); align-items: center; gap: 4rem; }
.affiliate-hero h1 { max-width: 760px; margin: 0; color: var(--text); font-family: 'Manrope', sans-serif; font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: 0.95; letter-spacing: -0.06em; }
.affiliate-hero__intro { max-width: 650px; margin: 1.5rem 0 2rem; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.affiliate-hero__cta { gap: 0.7rem; }
.affiliate-disclosure { display: flex; align-items: flex-start; gap: 0.5rem; max-width: 560px; margin: 1.2rem 0 0; color: var(--soft); font-size: 0.78rem; line-height: 1.5; }
.affiliate-disclosure i { flex-shrink: 0; color: var(--gold); }
.affiliate-hero__visual { display: grid; align-content: center; min-height: 340px; gap: 1rem; padding: 2.2rem; border: 1px solid rgba(249,199,107,0.35); background: linear-gradient(145deg, rgba(249,199,107,0.14), rgba(124,200,255,0.07)); box-shadow: var(--shadow); }
.affiliate-hero__visual i { color: var(--gold); font-size: 5rem; }
.affiliate-hero__visual strong { color: var(--text); font-family: 'Manrope', sans-serif; font-size: 1.8rem; }
.affiliate-hero__visual > span:last-child { color: var(--muted); line-height: 1.7; }
.affiliate-hero__badge { color: var(--gold); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.affiliate-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 1.5rem; }
.affiliate-section-heading h2 { max-width: 530px; margin: 0; color: var(--text); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.05; }
.affiliate-section-heading > p { max-width: 430px; margin: 0; color: var(--muted); line-height: 1.7; }
.affiliate-benefit-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.affiliate-benefit-grid article { padding: 1.5rem; border-top: 2px solid var(--stroke); background: rgba(255,255,255,0.025); }
.affiliate-benefit-grid article:hover { border-top-color: var(--gold); }
.affiliate-benefit-grid i { color: var(--gold); font-size: 1.5rem; }
.affiliate-benefit-grid h3 { margin: 1.2rem 0 0.5rem; color: var(--text); font-size: 1.15rem; }
.affiliate-benefit-grid p { margin: 0; color: var(--muted); line-height: 1.7; }
.affiliate-coming-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.affiliate-coming-grid > div { display: grid; gap: 0.6rem; padding: 1.4rem; border: 1px dashed var(--stroke); color: var(--muted); }
.affiliate-coming-grid i { color: var(--blue); font-size: 1.4rem; }
.affiliate-coming-grid strong { color: var(--text); }
.affiliate-coming-grid span { color: var(--soft); font-size: 0.8rem; }

@media (max-width: 992px) {
  .affiliate-hero__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .affiliate-hero__visual { min-height: 260px; }
  .affiliate-section-heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
}
@media (max-width: 576px) {
  .affiliate-hero { padding: 3.5rem 0 3rem; }
  .affiliate-benefit-grid, .affiliate-coming-grid { grid-template-columns: 1fr; }
  .affiliate-hero__visual { min-height: 240px; padding: 1.5rem; }
}

.advertising-page {
  background: radial-gradient(circle at 10% 12%, rgba(124, 200, 255, 0.12), transparent 24%), radial-gradient(circle at 90% 58%, rgba(249, 199, 107, 0.1), transparent 26%), var(--bg-900);
}
.advertising-hero { padding: 5.5rem 0 4.5rem; }
.advertising-hero__layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr); align-items: center; gap: 4rem; }
.advertising-hero h1 { max-width: 780px; margin: 0; color: var(--text); font-family: 'Manrope', sans-serif; font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: 0.95; letter-spacing: -0.06em; }
.advertising-hero__intro { max-width: 650px; margin: 1.5rem 0 2rem; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.advertising-hero__signal { display: grid; gap: 0.8rem; min-height: 300px; align-content: center; padding: 2rem; border: 1px solid rgba(124,200,255,0.35); background: linear-gradient(145deg, rgba(124,200,255,0.13), rgba(249,199,107,0.06)); }
.advertising-hero__signal i { color: var(--blue); font-size: 2rem; }
.advertising-hero__signal span { color: var(--blue); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.advertising-hero__signal strong { color: var(--text); font-family: 'Manrope', sans-serif; font-size: 1.8rem; }
.advertising-hero__signal p { margin: 0; color: var(--muted); line-height: 1.7; }
.advertising-section-heading { display: flex; align-items: end; justify-content: space-between; gap: 3rem; margin-bottom: 1.5rem; }
.advertising-section-heading h2 { max-width: 560px; margin: 0; color: var(--text); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.05; }
.advertising-section-heading > p { max-width: 430px; margin: 0; color: var(--muted); line-height: 1.7; }
.advertising-offer-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1rem; }
.advertising-offer-grid article { position: relative; display: flex; min-height: 300px; flex-direction: column; padding: 1.5rem; border: 1px solid var(--stroke); background: rgba(18,26,35,0.88); }
.advertising-offer-grid article:hover { border-color: rgba(124,200,255,0.45); transform: translateY(-4px); transition: 0.25s ease; }
.advertising-offer__number { position: absolute; top: 1.4rem; right: 1.4rem; color: var(--soft); font-size: 0.75rem; }
.advertising-offer-grid article > i { margin-top: 2.5rem; color: var(--blue); font-size: 1.7rem; }
.advertising-offer-grid h3 { margin: 1.2rem 0 0.5rem; color: var(--text); font-size: 1.25rem; }
.advertising-offer-grid p { margin: 0; color: var(--muted); line-height: 1.7; }
.advertising-offer-grid a { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; padding-top: 1.5rem; color: var(--gold); font-size: 0.82rem; font-weight: 700; }
.advertising-fit__layout { display: grid; grid-template-columns: 0.9fr 1.1fr; align-items: start; gap: 4rem; padding: 3rem 0; border-top: 1px solid var(--stroke); border-bottom: 1px solid var(--stroke); }
.advertising-fit h2 { max-width: 520px; margin: 0; color: var(--text); font-size: clamp(1.8rem, 3vw, 3rem); line-height: 1.05; }
.advertising-fit ul { display: grid; gap: 1rem; margin: 0; padding: 0; list-style: none; color: var(--muted); }
.advertising-fit li { display: flex; align-items: center; gap: 0.8rem; padding-bottom: 1rem; border-bottom: 1px solid var(--stroke); }
.advertising-fit li i { color: var(--gold); font-size: 1.2rem; }
.advertising-process__steps { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 2rem; }
.advertising-process__steps > div { border-top: 2px solid var(--blue); padding-top: 1rem; }
.advertising-process__steps strong { color: var(--blue); font-size: 0.75rem; }
.advertising-process__steps h3 { margin: 1rem 0 0.5rem; color: var(--text); font-size: 1.15rem; }
.advertising-process__steps p { margin: 0; color: var(--muted); line-height: 1.7; }

@media (max-width: 992px) {
  .advertising-hero__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .advertising-section-heading { align-items: flex-start; flex-direction: column; gap: 1rem; }
  .advertising-fit__layout { grid-template-columns: 1fr; gap: 2rem; }
}
@media (max-width: 576px) {
  .advertising-hero { padding: 3.5rem 0 3rem; }
  .advertising-offer-grid, .advertising-process__steps { grid-template-columns: 1fr; }
  .advertising-hero__signal { min-height: 240px; padding: 1.5rem; }
}

.resources-page { background: radial-gradient(circle at 10% 10%, rgba(124,200,255,0.12), transparent 25%), radial-gradient(circle at 90% 58%, rgba(249,199,107,0.1), transparent 25%), var(--bg-900); }
.resources-hero { padding: 5.5rem 0 4rem; }
.resources-hero__layout { display: grid; grid-template-columns: minmax(0, 1.3fr) minmax(280px, 0.7fr); align-items: center; gap: 4rem; }
.resources-hero h1 { max-width: 780px; margin: 0; color: var(--text); font-family: 'Manrope', sans-serif; font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: 0.95; letter-spacing: -0.06em; }
.resources-hero__intro { max-width: 650px; margin: 1.5rem 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.resources-hero__signal { display: grid; gap: 0.8rem; min-height: 280px; align-content: center; padding: 2rem; border: 1px solid rgba(124,200,255,0.35); background: linear-gradient(145deg, rgba(124,200,255,0.12), rgba(249,199,107,0.06)); }
.resources-hero__signal i { color: var(--blue); font-size: 2rem; }
.resources-hero__signal span { color: var(--blue); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.resources-hero__signal strong { color: var(--text); font-family: 'Manrope', sans-serif; font-size: 1.8rem; }
.resources-hero__signal p { margin: 0; color: var(--muted); line-height: 1.7; }
.resources-toolbar { display: flex; align-items: center; justify-content: space-between; gap: 1.5rem; margin-bottom: 1.5rem; padding-bottom: 1rem; border-bottom: 1px solid var(--stroke); }
.resources-filters { display: flex; flex-wrap: wrap; gap: 0.55rem; }
.resource-filter { padding: 0.6rem 0.9rem; border: 1px solid var(--stroke); border-radius: 999px; background: transparent; color: var(--muted); cursor: pointer; font: inherit; font-size: 0.8rem; font-weight: 700; }
.resource-filter:hover, .resource-filter.is-active { border-color: var(--gold); background: var(--gold-soft); color: var(--gold); }
.resource-search { display: flex; align-items: center; gap: 0.6rem; min-width: 210px; padding: 0.65rem 0.8rem; border-bottom: 1px solid var(--stroke); color: var(--soft); }
.resource-search input { width: 100%; border: 0; outline: 0; background: transparent; color: var(--text); font: inherit; }
.resource-search input::placeholder { color: var(--soft); }
.resource-grid { display: grid; grid-template-columns: repeat(4, minmax(0, 1fr)); gap: 1rem; }
.resource-card { display: flex; min-width: 0; min-height: 275px; flex-direction: column; padding: 1.4rem; border: 1px solid var(--stroke); background: rgba(18,26,35,0.88); }
.resource-card:hover { border-color: rgba(249,199,107,0.5); transform: translateY(-4px); transition: 0.25s ease; }
.resource-card--featured { grid-column: span 2; flex-direction: row; gap: 1.5rem; background: linear-gradient(145deg, rgba(249,199,107,0.14), rgba(18,26,35,0.9)); }
.resource-card__mark { display: grid; width: 150px; flex-shrink: 0; min-height: 180px; place-items: center; align-content: center; gap: 1rem; border: 1px solid rgba(249,199,107,0.3); color: var(--gold); font-size: 3.2rem; }
.resource-card__mark span { font-size: 0.65rem; font-weight: 700; letter-spacing: 0.13em; text-transform: uppercase; }
.resource-card__body { display: flex; flex: 1; flex-direction: column; }
.resource-type { color: var(--gold); font-size: 0.66rem; font-weight: 700; letter-spacing: 0.12em; text-transform: uppercase; }
.resource-card h2 { margin: 0.7rem 0 0.5rem; color: var(--text); font-size: 1.25rem; }
.resource-card p { margin: 0; color: var(--muted); font-size: 0.9rem; line-height: 1.7; }
.resource-card a { display: inline-flex; align-items: center; gap: 0.5rem; margin-top: auto; padding-top: 1.3rem; color: var(--gold); font-size: 0.82rem; font-weight: 700; }
.resource-card small { margin-top: 0.9rem; color: var(--soft); font-size: 0.7rem; line-height: 1.5; }
.resource-card__icon { display: grid; width: 48px; height: 48px; place-items: center; margin-bottom: 2.5rem; color: var(--text); font-size: 1.7rem; }
.resource-card__icon--gold { color: var(--gold); }
.resource-card__icon--blue { color: var(--blue); }
.resource-card__icon--rose { color: #e994a7; }
.resources-empty { padding: 2rem 0; color: var(--muted); }

@media (max-width: 992px) {
  .resources-hero__layout { grid-template-columns: 1fr; gap: 2.5rem; }
  .resource-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}
@media (max-width: 576px) {
  .resources-hero { padding: 3.5rem 0 3rem; }
  .resources-toolbar { align-items: stretch; flex-direction: column; }
  .resource-search { min-width: 0; }
  .resource-grid { grid-template-columns: 1fr; }
  .resource-card--featured { grid-column: auto; flex-direction: column; }
  .resource-card__mark { width: 100%; min-height: 145px; }
}

.contact-refresh {
  background: radial-gradient(circle at 88% 12%, rgba(124, 200, 255, 0.12), transparent 24%), radial-gradient(circle at 10% 62%, rgba(249, 199, 107, 0.1), transparent 25%), var(--bg-900);
}
.contact-refresh__section { padding: 5.5rem 0 6rem; }
.contact-refresh__intro { max-width: 850px; margin-bottom: 3rem; }
.contact-refresh__intro h1 { max-width: 780px; margin: 0; color: var(--text); font-family: 'Manrope', sans-serif; font-size: clamp(2.8rem, 6vw, 5.8rem); line-height: 0.95; letter-spacing: -0.06em; }
.contact-refresh__intro > p:last-child { max-width: 620px; margin: 1.5rem 0 0; color: var(--muted); font-size: 1.05rem; line-height: 1.8; }
.contact-refresh__layout { display: grid; grid-template-columns: minmax(240px, 0.75fr) minmax(0, 1.25fr); gap: 1rem; }
.contact-refresh__details, .contact-refresh__form { border: 1px solid var(--stroke); background: rgba(18, 26, 35, 0.88); }
.contact-refresh__details { display: flex; flex-direction: column; padding: 1.5rem; }
.contact-refresh__availability { display: flex; align-items: center; gap: 0.55rem; margin-bottom: 2rem; color: var(--muted); font-size: 0.8rem; }
.contact-refresh__availability i { color: #7fdb9b; font-size: 0.48rem; }
.contact-refresh__channel, .contact-refresh__location { display: flex; align-items: center; gap: 0.9rem; padding: 1rem 0; border-top: 1px solid var(--stroke); color: var(--muted); }
.contact-refresh__channel:hover { color: var(--gold); }
.contact-refresh__channel > i:first-child, .contact-refresh__location > i { color: var(--gold); font-size: 1.2rem; }
.contact-refresh__channel > i:last-child { margin-left: auto; color: var(--soft); }
.contact-refresh__channel span, .contact-refresh__location span { display: grid; gap: 0.25rem; }
.contact-refresh__channel small, .contact-refresh__location small { color: var(--soft); font-size: 0.7rem; text-transform: uppercase; letter-spacing: 0.1em; }
.contact-refresh__channel strong, .contact-refresh__location strong { color: var(--text); font-size: 0.9rem; font-weight: 600; }
.contact-refresh__note { margin: auto 0 0; padding-top: 2rem; color: var(--muted); font-size: 0.86rem; line-height: 1.7; }
.contact-refresh__form { padding: 2rem; }
.contact-refresh__form-heading { margin-bottom: 1.5rem; }
.contact-refresh__form-heading > span { color: var(--blue); font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; }
.contact-refresh__form-heading h2 { margin: 0.5rem 0; color: var(--text); font-size: 1.8rem; }
.contact-refresh__form-heading p { margin: 0; color: var(--muted); }
.contact-refresh__form label { display: block; margin-bottom: 0.45rem; color: var(--muted); font-size: 0.78rem; font-weight: 600; }
.contact-refresh__form .form-control { min-height: 48px; border: 1px solid var(--stroke); border-radius: 0; background: rgba(255,255,255,0.035); color: var(--text); }
.contact-refresh__form textarea.form-control { min-height: 150px; resize: vertical; }
.contact-refresh__form .form-control::placeholder { color: var(--soft); }
.contact-refresh__form .form-control:focus { border-color: var(--gold); box-shadow: 0 0 0 3px rgba(249,199,107,0.12); }
.contact-refresh__submit { display: grid; justify-items: start; gap: 0.8rem; }
.contact-refresh__submit .primary-btn { border: 0; cursor: pointer; }

@media (max-width: 768px) {
  .contact-refresh__section { padding: 3.5rem 0 4rem; }
  .contact-refresh__layout { grid-template-columns: 1fr; }
  .contact-refresh__note { margin-top: 1rem; }
  .contact-refresh__form { padding: 1.5rem; }
}
