/* Generated by tools/build.py. Edit src/styles/, not this file. */
@layer reset, tokens, base, layout, components, pages, theme, overrides, utilities, accessibility;

/* source: src/styles/core/00-tokens.css */
@layer tokens {
  :root {
    color-scheme: dark;

    --bg: #070916;
    --bg-soft: #0d1022;
    --surface: rgba(13, 16, 34, 0.74);
    --surface-strong: rgba(18, 22, 44, 0.88);
    --surface-muted: rgba(25, 30, 58, 0.74);

    --line: rgba(191, 219, 254, 0.15);
    --line-strong: rgba(191, 219, 254, 0.28);

    --text: #f8fbff;
    --muted: #bcc7dc;
    --muted-2: #8d9ab4;

    --accent: #93c5fd;
    --accent-strong: #60a5fa;
    --accent-soft: rgba(96, 165, 250, 0.13);
    --violet: #818cf8;
    --gold: #f2d37b;
    --success: #a5b4fc;

    --glass-bg: rgba(13, 16, 34, 0.22);
    --glass-bg-hover: rgba(13, 16, 34, 0.32);
    --glass-border: rgba(191, 219, 254, 0.20);
    --glass-border-hover: rgba(147, 197, 253, 0.40);

    --shadow: 0 28px 80px rgba(0, 0, 0, 0.42);
    --radius-xl: 28px;
    --radius-lg: 22px;
    --radius-md: 16px;
    --radius-sm: 12px;
    --container: 1180px;

    --heading-weight: 500;
    --page-title-size: 2.25rem;
    --page-title-size-mobile: 1.85rem;
    --section-title-size: 1.95rem;
    --section-title-size-mobile: 1.6rem;
    --card-title-size: 1.35rem;

    --motion-fast: 180ms;
    --reference-width: 1536px;
    --reference-scale: 1;
  }
}

/* source: src/styles/core/10-foundation.css */
@layer base {
  *,
  *::before,
  *::after {
    box-sizing: border-box;
  }

  html {
    scroll-behavior: smooth;
    scrollbar-width: thin;
    scrollbar-color: rgba(147, 197, 253, 0.38) rgba(7, 9, 22, 0.72);
  }

  body {
    margin: 0;
    min-height: 100vh;
    background:
      radial-gradient(ellipse at 78% 18%, rgba(93, 95, 239, 0.16), transparent 34rem),
      radial-gradient(ellipse at 18% 22%, rgba(14, 165, 233, 0.10), transparent 30rem),
      radial-gradient(ellipse at 52% 112%, rgba(30, 64, 175, 0.13), transparent 36rem),
      linear-gradient(135deg, #01030a 0%, #050717 38%, #0b1024 66%, #02040c 100%);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.65;
    letter-spacing: -0.01em;
  }

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

  body::before {
    background:
      linear-gradient(116deg, transparent 5%, rgba(191, 219, 254, 0.045) 26%, rgba(129, 140, 248, 0.052) 43%, transparent 67%),
      radial-gradient(ellipse at 74% 18%, rgba(147, 197, 253, 0.14), transparent 36rem),
      radial-gradient(ellipse at 18% 30%, rgba(56, 189, 248, 0.08), transparent 30rem),
      radial-gradient(ellipse at 55% 72%, rgba(99, 102, 241, 0.10), transparent 38rem);
    opacity: 0.82;
  }

  body::after {
    opacity: 0.46;
    background-image:
      radial-gradient(circle at 18px 32px, rgba(255, 255, 255, 0.82) 0 1px, transparent 1.6px),
      radial-gradient(circle at 140px 90px, rgba(191, 219, 254, 0.70) 0 1px, transparent 1.7px),
      radial-gradient(circle at 260px 36px, rgba(255, 255, 255, 0.56) 0 0.8px, transparent 1.5px),
      radial-gradient(circle at 78px 170px, rgba(147, 197, 253, 0.52) 0 0.9px, transparent 1.6px),
      radial-gradient(circle at 310px 210px, rgba(255, 255, 255, 0.64) 0 1.1px, transparent 1.8px),
      radial-gradient(circle at 440px 120px, rgba(216, 180, 254, 0.42) 0 1px, transparent 1.8px);
    background-size:
      360px 240px,
      420px 310px,
      520px 360px,
      470px 290px,
      610px 430px,
      680px 520px;
    background-position:
      0 0,
      48px 28px,
      110px 80px,
      22px 140px,
      160px 60px,
      80px 210px;
  }

  img,
  iframe,
  video,
  picture {
    max-width: 100%;
  }

  img,
  video,
  picture {
    display: block;
  }

  img {
    height: auto;
  }

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

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

  button,
  input,
  select,
  textarea {
    font: inherit;
  }

  button {
    color: inherit;
  }

  p {
    margin: 0 0 1rem;
    color: var(--muted);
  }

  h1,
  h2,
  h3,
  h4 {
    margin: 0;
    color: var(--text);
    font-weight: var(--heading-weight);
    line-height: 1.08;
    letter-spacing: -0.045em;
  }

  h1 {
    max-width: 11ch;
    font-size: clamp(2.75rem, 7vw, 6.25rem);
  }

  h2 {
    font-size: clamp(2rem, 4vw, 3.45rem);
  }

  h3 {
    font-size: 1.3rem;
  }

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

  li + li {
    margin-top: 0.35rem;
  }

  ::-webkit-scrollbar {
    width: 9px;
  }

  ::-webkit-scrollbar-track {
    background: rgba(7, 9, 22, 0.9);
  }

  ::-webkit-scrollbar-thumb {
    border: 2px solid rgba(7, 9, 22, 0.9);
    border-radius: 999px;
    background: rgba(147, 197, 253, 0.52);
  }

  ::-webkit-scrollbar-thumb:hover {
    background: rgba(167, 139, 250, 0.72);
  }

  @media (min-width: 900px) {
    html {
      font-size: 80%;
    }
  }

  @media (max-width: 680px) {
    body {
      font-size: 15.5px;
    }

    h1 {
      max-width: 12ch;
    }
  }
}

/* source: src/styles/core/20-layout.css */
@layer layout {
  .container {
    width: min(100% - 2rem, var(--container));
    margin-inline: auto;
  }

  main,
  .footer {
    position: relative;
    z-index: 2;
  }

  .section {
    padding: clamp(3.25rem, 6vw, 5.5rem) 0;
  }

  .section.compact {
    padding: clamp(2.25rem, 5vw, 4rem) 0;
  }

  .section-heading {
    display: grid;
    gap: 0.8rem;
    max-width: 800px;
    margin-bottom: 1.75rem;
  }

  .section-heading.center {
    margin-inline: auto;
    text-align: center;
  }

  .section-heading p {
    max-width: 70ch;
    margin: 0;
  }

  .page-hero {
    padding: clamp(4rem, 7vw, 6.5rem) 0 clamp(2.5rem, 5vw, 4rem);
  }

  .page-hero-inner {
    display: grid;
    gap: 1.2rem;
    max-width: 860px;
  }

  .page-hero h1 {
    max-width: 12ch;
  }

  .page-hero .lead {
    max-width: 760px;
    font-size: clamp(1.05rem, 2vw, 1.22rem);
  }

  .footer {
    padding: 1.4rem 0 1.1rem;
    border-top: 1px solid rgba(191, 219, 254, 0.12);
    background: rgba(7, 9, 22, 0.24);
    backdrop-filter: blur(8px);
  }

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

  .footer p {
    margin: 0;
    color: var(--muted-2);
    font-size: 0.85rem;
  }

  .footer a {
    color: var(--muted);
    font-weight: 800;
  }

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

  @media (min-width: 900px) {
    .section {
      padding: 4rem 0;
    }

    .section.compact {
      padding: 3rem 0;
    }
  }

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

    .footer-inner {
      align-items: flex-start;
      flex-direction: column;
    }
  }
}

/* source: src/styles/core/30-header.css */
@layer components {
  .site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    border-bottom: 1px solid transparent;
    background: rgba(5, 9, 20, 0.72);
    backdrop-filter: blur(18px);
    transition:
      border-color var(--motion-fast) ease,
      background var(--motion-fast) ease;
  }

  .site-header.is-scrolled {
    border-color: rgba(220, 210, 255, 0.16);
    background: rgba(10, 7, 24, 0.9);
  }

  .header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 82px;
    gap: 1.5rem;
  }

  .brand-area {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 0.9rem;
  }

  .brand {
    display: inline-flex;
    align-items: center;
    min-width: 0;
    gap: 0.85rem;
  }

  .brand-copy {
    display: grid;
    gap: 0.05rem;
  }

  .brand-name-row {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
  }

  .brand-name {
    font-weight: 850;
    line-height: 1.1;
  }

  .brand-subtitle {
    color: var(--muted-2);
    font-size: 0.82rem;
    letter-spacing: 0.02em;
  }

  .header-social {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
  }

  .header-social a {
    display: grid;
    width: 34px;
    height: 34px;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    color: var(--muted);
    transition:
      color var(--motion-fast) ease,
      border-color var(--motion-fast) ease,
      background var(--motion-fast) ease,
      transform var(--motion-fast) ease;
  }

  .header-social a:hover {
    transform: translateY(-2px);
    border-color: rgba(216, 180, 254, 0.55);
    background: rgba(125, 211, 252, 0.1);
    color: var(--accent);
  }

  .header-social svg {
    width: 17px;
    height: 17px;
    fill: currentColor;
  }

  .header-right {
    display: inline-flex;
    align-items: center;
    margin-left: auto;
    gap: 0.75rem;
  }

  .primary-nav {
    display: flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem;
    border: 1px solid rgba(220, 210, 255, 0.16);
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.055);
  }

  .nav-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    color: var(--muted);
    font-size: 0.92rem;
    font-weight: 700;
    white-space: nowrap;
    transition:
      color var(--motion-fast) ease,
      background var(--motion-fast) ease,
      border-color var(--motion-fast) ease;
  }

  .nav-link:hover,
  .nav-link.is-active {
    background: rgba(216, 180, 254, 0.12);
    color: #ffffff;
  }

  .nav-toggle {
    display: none;
    padding: 0.75rem 1rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.78);
    color: var(--text);
    font-weight: 800;
    cursor: pointer;
  }

  .lang-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    gap: 0.45rem;
    padding: 0.55rem 0.82rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.62);
    color: var(--muted);
    font-size: 0.88rem;
    font-weight: 850;
    cursor: pointer;
    white-space: nowrap;
    transition:
      color var(--motion-fast) ease,
      border-color var(--motion-fast) ease,
      background var(--motion-fast) ease,
      transform var(--motion-fast) ease;
  }

  .lang-toggle:hover {
    transform: translateY(-2px);
    border-color: rgba(147, 197, 253, 0.42);
    background: rgba(147, 197, 253, 0.1);
    color: var(--text);
  }

  .lang-flag {
    position: relative;
    display: inline-block;
    flex: 0 0 24px;
    width: 24px;
    height: 16px;
    overflow: hidden;
    border-radius: 3px;
    box-shadow:
      inset 0 0 0 1px rgba(255, 255, 255, 0.22),
      0 2px 8px rgba(0, 0, 0, 0.18);
  }

  html[data-lang="en"] .lang-flag {
    background:
      linear-gradient(
        to bottom,
        #000000 0 33.333%,
        #dd0000 33.333% 66.666%,
        #ffce00 66.666% 100%
      );
  }

  html[data-lang="de"] .lang-flag {
    background:
      linear-gradient(to bottom, transparent 42%, #c8102e 42% 58%, transparent 58%),
      linear-gradient(to right, transparent 44%, #c8102e 44% 56%, transparent 56%),
      linear-gradient(to bottom, transparent 34%, #ffffff 34% 66%, transparent 66%),
      linear-gradient(to right, transparent 38%, #ffffff 38% 62%, transparent 62%),
      linear-gradient(34deg, transparent 43%, #ffffff 43% 49%, #c8102e 49% 54%, #ffffff 54% 60%, transparent 60%),
      linear-gradient(-34deg, transparent 43%, #ffffff 43% 49%, #c8102e 49% 54%, #ffffff 54% 60%, transparent 60%),
      #012169;
  }

  .lang-code {
    font-size: 0;
    line-height: 1;
    letter-spacing: 0.04em;
  }

  .lang-code::after {
    font-size: 0.88rem;
  }

  html[data-lang="en"] .lang-code::after {
    content: "DE";
  }

  html[data-lang="de"] .lang-code::after {
    content: "EN";
  }

  html[data-i18n-pending] .site-header [data-i18n],
  html[data-i18n-pending] .site-header [data-i18n-aria-label] {
    visibility: hidden;
  }

  @media (max-width: 980px) {
    .header-inner {
      min-height: 72px;
    }

    .header-right {
      gap: 0.55rem;
    }

    .nav-toggle {
      display: inline-flex;
      z-index: 70;
    }

    .primary-nav {
      position: fixed;
      top: 84px;
      right: 1rem;
      left: 1rem;
      display: grid;
      gap: 0.35rem;
      padding: 0.6rem;
      border-radius: 22px;
      background: rgba(10, 16, 32, 0.96);
      box-shadow: var(--shadow);
      transform: translateY(-1rem);
      visibility: hidden;
      opacity: 0;
      pointer-events: none;
      transition:
        transform var(--motion-fast) ease,
        opacity var(--motion-fast) ease,
        visibility var(--motion-fast) ease;
    }

    body.nav-open .primary-nav {
      transform: translateY(0);
      visibility: visible;
      opacity: 1;
      pointer-events: auto;
    }

    .nav-link {
      justify-content: flex-start;
      padding-inline: 1rem;
    }

    .lang-toggle {
      min-height: 40px;
      padding: 0.5rem 0.72rem;
    }

    .lang-code {
      display: none;
    }
  }

  @media (max-width: 680px) {
    .brand-area {
      gap: 0.55rem;
    }

    .brand-subtitle {
      display: none;
    }

    .header-social a {
      width: 31px;
      height: 31px;
    }

    .header-social svg {
      width: 15px;
      height: 15px;
    }
  }
}

/* source: src/styles/core/40-components.css */
@layer components {
  .skip-link {
    position: absolute;
    top: 0.75rem;
    left: 1rem;
    z-index: 999;
    padding: 0.65rem 1rem;
    border-radius: 999px;
    background: var(--text);
    color: #07101f;
    font-weight: 800;
    transform: translateY(-140%);
    transition: transform var(--motion-fast) ease;
  }

  .skip-link:focus {
    transform: translateY(0);
  }

  .eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.55rem;
    margin: 0 0 1.05rem;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 850;
    letter-spacing: 0.13em;
    text-transform: uppercase;
  }

  .eyebrow::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--accent);
    box-shadow: 0 0 0 6px rgba(125, 211, 252, 0.12);
  }

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

  .anchor-row {
    margin-top: 0.25rem;
  }

  .button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0.8rem 1.05rem;
    border: 1px solid var(--line-strong);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.86);
    color: var(--text);
    font-weight: 850;
    letter-spacing: -0.015em;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.06);
    transition:
      transform var(--motion-fast) ease,
      border-color var(--motion-fast) ease,
      background var(--motion-fast) ease;
  }

  .button:hover {
    transform: translateY(-2px);
    border-color: rgba(216, 180, 254, 0.55);
    background: rgba(125, 211, 252, 0.1);
    color: var(--text);
  }

  .button.primary {
    border-color: rgba(125, 211, 252, 0.5);
    background: linear-gradient(135deg, rgba(56, 189, 248, 0.25), rgba(167, 139, 250, 0.18));
  }

  .compact-action {
    width: fit-content;
    min-height: 38px;
    gap: 0.45rem;
    padding: 0.55rem 0.85rem;
    border: 1px solid rgba(125, 211, 252, 0.28);
    border-radius: 999px;
    background:
      linear-gradient(135deg, rgba(125, 211, 252, 0.11), rgba(167, 139, 250, 0.09)),
      rgba(15, 23, 42, 0.62);
    color: rgba(248, 250, 252, 0.92);
    font-size: 0.82rem;
    font-weight: 750;
    letter-spacing: 0.01em;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.06),
      0 10px 24px rgba(0, 0, 0, 0.12);
    transition:
      transform var(--motion-fast) ease,
      border-color var(--motion-fast) ease,
      background var(--motion-fast) ease,
      color var(--motion-fast) ease,
      box-shadow var(--motion-fast) ease;
  }

  .compact-action::after {
    content: "↗";
    font-size: 0.78rem;
    line-height: 1;
    opacity: 0.7;
    transform: translateY(-1px);
    transition:
      transform var(--motion-fast) ease,
      opacity var(--motion-fast) ease;
  }

  .compact-action:hover {
    transform: translateY(-1px);
    border-color: rgba(216, 180, 254, 0.48);
    background:
      linear-gradient(135deg, rgba(125, 211, 252, 0.16), rgba(216, 180, 254, 0.13)),
      rgba(15, 23, 42, 0.78);
    color: #ffffff;
    box-shadow:
      inset 0 1px 0 rgba(255, 255, 255, 0.08),
      0 14px 30px rgba(0, 0, 0, 0.18);
  }

  .compact-action:hover::after {
    opacity: 1;
    transform: translate(2px, -2px);
  }

  .button.subtle {
    min-height: 42px;
    padding: 0.65rem 0.9rem;
    font-size: 0.9rem;
  }

  .stack-wrap {
    display: flex;
    flex-wrap: wrap;
    gap: 0.6rem;
  }

  .chip {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.7rem;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: rgba(15, 23, 42, 0.58);
    color: #cbd8ea;
    font-size: 0.9rem;
    font-weight: 750;
  }

  .chip.highlight {
    border-color: rgba(125, 211, 252, 0.35);
    background: rgba(125, 211, 252, 0.09);
    color: var(--text);
  }

  a[data-disabled-link="true"],
  a[aria-disabled="true"] {
    cursor: not-allowed;
  }

  .nav-link[data-disabled-link="true"],
  .nav-link[aria-disabled="true"] {
    opacity: 0.68;
  }

  .nav-link[data-disabled-link="true"]:hover,
  .nav-link[data-disabled-link="true"].is-active,
  .nav-link[aria-disabled="true"]:hover,
  .nav-link[aria-disabled="true"].is-active {
    background: rgba(148, 163, 184, 0.08);
    color: var(--muted);
  }

  .site-status {
    position: fixed;
    right: 1rem;
    bottom: 1rem;
    z-index: 200;
    max-width: min(28rem, calc(100vw - 2rem));
    padding: 0.8rem 1rem;
    border: 1px solid var(--glass-border-hover);
    border-radius: var(--radius-sm);
    background: rgba(10, 16, 32, 0.96);
    color: var(--text);
    box-shadow: var(--shadow);
    opacity: 0;
    transform: translateY(0.75rem);
    visibility: hidden;
    pointer-events: none;
    transition:
      opacity var(--motion-fast) ease,
      transform var(--motion-fast) ease,
      visibility var(--motion-fast) ease;
  }

  .site-status.is-visible {
    opacity: 1;
    transform: translateY(0);
    visibility: visible;
  }

  @media (max-width: 680px) {
    .button,
    .button-group .button {
      width: 100%;
    }

    .button.compact-action,
    .button-group .button.compact-action {
      width: fit-content;
    }
  }
}

/* source: src/styles/core/50-theme-glass.css */
@layer theme {
  :where(
    .hero-note,
    .profile-card,
    .stat-card,
    .value-flow,
    .value-card,
    .cv-overview-card,
    .recommendation-card,
    .explore-card,
    .split-panel,
    .timeline-content,
    .skill-card,
    .hobby-card,
    .quote-panel,
    .project-section,
    .project-media,
    .projects-hero-visual,
    .certificate-card,
    .certificate-image,
    .bi-integration-panel,
    .bi-hero-visual,
    .powerbi-embed-frame,
    .button,
    .chip,
    .badge,
    .lang-toggle,
    .header-social a,
    .application-status-panel,
    .application-status-copy,
    .application-progress-item,
    .application-scope-card,
    .application-coming-next,
    .scope-label,
    .application-status-pill
  ) {
    border-color: var(--glass-border);
    background: var(--glass-bg);
    background-image: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  :where(
    .value-card,
    .cv-overview-card,
    .recommendation-card,
    .explore-card,
    .timeline-content,
    .skill-card,
    .hobby-card,
    .project-section,
    .project-media,
    .projects-hero-visual,
    .certificate-card,
    .certificate-image,
    .bi-integration-panel,
    .bi-hero-visual,
    .powerbi-embed-frame,
    .button,
    .chip,
    .badge,
    .lang-toggle,
    .header-social a,
    .application-status-copy,
    .application-progress-item,
    .application-scope-card,
    .application-coming-next,
    .scope-label,
    .application-status-pill
  ):hover {
    border-color: var(--glass-border-hover);
    background: var(--glass-bg-hover);
    background-image: none;
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.12);
  }

  :where(
    .profile-card,
    .recommendation-card,
    .explore-card,
    .value-card
  )::before,
  :where(
    .recommendation-card,
    .explore-card,
    .value-card
  )::after {
    opacity: 0;
  }

  :where(
    .recommendation-icon,
    .value-icon,
    .cv-big-label,
    .cv-card-arrow
  ) {
    border-color: rgba(147, 197, 253, 0.16);
    background: rgba(147, 197, 253, 0.055);
    background-image: none;
    box-shadow: none;
  }

  :where(
    .cv-overview-panel,
    .recommendations-showcase,
    .explore-showcase,
    .powerbi-embed-panel
  ) {
    border: 0;
    background: transparent;
    background-image: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  :where(
    .project-media img,
    .projects-hero-visual img,
    .certificate-image img,
    .bi-hero-visual img,
    .bi-hero-visual video
  ) {
    background: transparent;
    box-shadow: none;
    filter: none;
  }

  .powerbi-embed-panel {
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    background-image: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  #main .application-gear-card.application-gear-card-minimal {
    display: grid;
    min-height: 300px;
    place-items: center;
    align-content: center;
    gap: 1.4rem;
    padding: 0;
    border: 0;
    border-radius: 0;
    outline: 0;
    background: transparent;
    background-image: none;
    box-shadow: none;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
  }

  #main .application-gear-card.application-gear-card-minimal::before,
  #main .application-gear-card.application-gear-card-minimal::after {
    content: none;
    display: none;
  }

  #main .application-gear-wrap {
    border: 0;
    background: transparent;
    background-image: none;
    box-shadow: none;
  }

  .cv-card-list .cv-overview-card::before {
    opacity: 1;
  }

  .gear-core {
    opacity: 0.85;
  }

  .gear-core path {
    fill: var(--gold);
  }

  .gear-inner-ring {
    stroke: rgba(242, 211, 123, 0.32);
  }

  .gear-center,
  .gear-orbit-dot {
    fill: var(--gold);
  }

  .gear-orbit-ring {
    stroke: rgba(242, 211, 123, 0.24);
  }

  .cv-overview-card.is-disabled,
  .cv-overview-card.is-disabled:hover {
    cursor: not-allowed;
    opacity: 0.66;
    transform: none;
    border-color: rgba(191, 219, 254, 0.14);
    box-shadow: none;
  }

  .cv-overview-card.is-disabled::before {
    animation: none;
    opacity: 0.18;
  }

  @media (max-width: 980px) {
    .primary-nav {
      background: rgba(10, 16, 32, 0.96);
      backdrop-filter: blur(14px);
      -webkit-backdrop-filter: blur(14px);
    }
  }
}

/* source: src/styles/core/60-title-system.css */
@layer overrides {
  h1,
  h2,
  h3,
  h4 {
    font-weight: var(--heading-weight);
  }

  :is(
    .hero,
    .page-hero,
    .subpage-hero,
    .showcase-hero,
    .project-hero,
    .projects-hero,
    .bi-hero,
    .bi-showcase-hero,
    .about-hero,
    .credentials-hero,
    .application-hero
  ) h1,
  main > section:first-child h1 {
    max-width: 820px;
    font-size: var(--page-title-size);
    line-height: 1.08;
    letter-spacing: -0.055em;
  }

  .section-title-small,
  .credentials-section-heading h2,
  .section-heading h2,
  .cv-overview-copy h2,
  .recommendations-copy h2,
  .explore-header h2,
  .value-heading h2,
  .powerbi-embed-copy h2,
  .bi-integration-panel h2,
  .application-coming-next h2 {
    max-width: 820px;
    font-size: var(--section-title-size);
    line-height: 1.13;
    letter-spacing: -0.045em;
  }

  .project-copy h2,
  .certificate-body h2,
  .application-scope-card h3 {
    font-weight: var(--heading-weight);
  }

  .project-copy h2 {
    font-size: 1.65rem;
    line-height: 1.15;
    letter-spacing: -0.035em;
  }

  .page-hero h1,
  .projects-hero-copy h1,
  .bi-hero-copy h1,
  .application-hero-copy h1,
  .section-title-small,
  .credentials-section-heading h2 {
    margin-bottom: 0.75rem;
  }

  @media (max-width: 680px) {
    :is(
      .hero,
      .page-hero,
      .subpage-hero,
      .showcase-hero,
      .project-hero,
      .projects-hero,
      .bi-hero,
      .bi-showcase-hero,
      .about-hero,
      .credentials-hero,
      .application-hero
    ) h1,
    main > section:first-child h1 {
      font-size: var(--page-title-size-mobile);
      line-height: 1.12;
    }

    .section-title-small,
    .credentials-section-heading h2,
    .section-heading h2,
    .cv-overview-copy h2,
    .recommendations-copy h2,
    .explore-header h2,
    .value-heading h2,
    .powerbi-embed-copy h2,
    .bi-integration-panel h2,
    .application-coming-next h2 {
      font-size: var(--section-title-size-mobile);
      line-height: 1.17;
    }

    .project-copy h2 {
      font-size: 1.4rem;
      line-height: 1.18;
    }
  }
}

/* source: src/styles/core/70-runtime.css */
@layer utilities {
  html {
    scrollbar-gutter: stable;
  }

  #network-bg {
    position: fixed;
    inset: 0;
    z-index: 1;
    width: 100%;
    height: 100%;
    pointer-events: none;
    opacity: 0.68;
  }

  .reference-scale-shell {
    position: relative;
    z-index: 2;
    transform-origin: 0 0;
  }

  html.reference-scale-active,
  html.reference-scale-active body {
    overflow-x: hidden;
  }

  html.reference-scale-active .reference-scale-shell,
  html.reference-scale-transform-fallback .reference-scale-shell {
    max-width: none;
    transform-origin: 0 0;
  }

  /* Keep the shared shell mounted while enabled portfolio pages are swapped. */
  main[data-page-container] {
    transition: opacity 150ms ease;
  }

  body.is-page-loading main[data-page-container] {
    opacity: 0.58;
    pointer-events: none;
  }

  body.is-page-loading {
    cursor: progress;
  }

  @media (prefers-reduced-motion: reduce) {
    main[data-page-container] {
      transition: none;
    }
  }
}

/* source: src/styles/core/80-accessibility.css */
@layer accessibility {
  .visually-hidden {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0;
  }

  a:focus-visible,
  button:focus-visible {
    outline: 3px solid var(--accent);
    outline-offset: 3px;
  }

  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      scroll-behavior: auto !important;
      transition-duration: 0.01ms !important;
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
    }
  }
}
