
    /* COLOR SYSTEM: Emerald Graph Refined — main accent #059669; no blue secondary accent; bg #FFFFFF; text #0A0A0A; RGB bars unchanged. */
    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
      scroll-padding-top: calc(var(--header-height) + 26px);
    }

    body {
      min-height: 100vh;
      overflow-x: hidden;
      background: radial-gradient(circle at 14% -6%, rgba(5, 150, 105, 0.22), transparent 31rem),
        radial-gradient(circle at 86% 4%, rgba(22, 101, 52, 0.13), transparent 30rem),
        radial-gradient(circle at 58% 38%, rgba(52, 211, 153, 0.07), transparent 36rem),
        radial-gradient(circle at 80% 64%, rgba(52, 211, 153, 0.08), transparent 26rem),
        linear-gradient(180deg, var(--color-bg), #F5F5F5 58%, var(--color-bg));
      color: var(--color-text);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      line-height: 1.56;
      text-rendering: geometricPrecision;
    }

    body::before {
      content: "";
      position: fixed;
      inset: 0;
      z-index: -3;
      pointer-events: none;
      background: linear-gradient(rgba(10, 10, 10, 0.046) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 10, 10, 0.046) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.86), rgba(0,0,0,0.14) 76%, transparent);
    }

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

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

    button, input, textarea {
      font: inherit;
    }

    button {
      color: inherit;
    }

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

    [hidden] {
      display: none !important;
    }

    .container {
      width: min(100% - 36px, var(--container));
      margin-inline: auto;
    }

    .progress-bar {
      position: fixed;
      left: 0;
      transform-origin: left center;
    }

    /* .scanline {
      position: fixed;
      inset: 0;
      z-index: 9000;
      pointer-events: none;
      opacity: 0.045;
      background: repeating-linear-gradient(
        to bottom,
        rgba(10, 10, 10, 0.18),
        rgba(10, 10, 10, 0.18) 1px,
        transparent 1px,
        transparent 6px
        );
      mix-blend-mode: multiply;
    } */

    .cursor-hud {
      position: fixed;
      top: 0;
      left: 0;
      z-index: 9999;
      width: 54px;
      height: 54px;
      pointer-events: none;
      opacity: 0;
      transform: translate3d(-100px, -100px, 0);
      transition: opacity 180ms ease;
      will-change: transform;
    }

    .cursor-hud.is-visible {
      opacity: 1;
    }

    .cursor-ring, .cursor-core, .cursor-line-x, .cursor-line-y, .cursor-label {
      position: absolute;
      left: 50%;
      top: 50%;
      transform: translate(-50%, -50%);
      pointer-events: none;
    }

    .cursor-ring {
      width: 42px;
      height: 42px;
      border: 1px solid rgba(5, 150, 105, 0.62);
      border-radius: 50%;
      transition: width 220ms var(--ease-out),
        height 220ms var(--ease-out),
        border-color 220ms var(--ease-out),
        background 220ms var(--ease-out),
        box-shadow 220ms var(--ease-out);
    }

    .cursor-core {
      width: 5px;
      height: 5px;
      border-radius: 999px;
      transition: width 220ms var(--ease-out), height 220ms var(--ease-out), background 220ms var(--ease-out);
    }

    .cursor-line-x, .cursor-line-y {
      opacity: 0.55;
      transition: opacity 220ms var(--ease-out), width 220ms var(--ease-out), height 220ms var(--ease-out);
    }

    .cursor-line-x {
      width: 24px;
      height: 1px;
    }

    .cursor-line-y {
      width: 1px;
      height: 24px;
    }

    .cursor-label {
      top: calc(50% + 39px);
      padding: 4px 7px;
      border: 1px solid rgba(5, 150, 105, 0.30);
      border-radius: 999px;
      background: rgba(10, 10, 10, 0.88);
      font-family: "SFMono-Regular", Consolas, monospace;
      font-size: 0.62rem;
      font-weight: 900;
      letter-spacing: 0.08em;
      opacity: 0;
      transform: translate(-50%, -42%);
      transition: opacity 160ms ease, transform 160ms ease;
      white-space: nowrap;
    }

    .cursor-hud.is-interactive .cursor-ring {
      width: 64px;
      height: 64px;
    }

    .cursor-hud.is-interactive .cursor-core {
      width: 8px;
      height: 8px;
    }

    .cursor-hud.is-field .cursor-ring {
      width: 34px;
      height: 68px;
      border-radius: 18px;
    }

    .cursor-hud.is-field .cursor-core {
      width: 2px;
      height: 24px;
      border-radius: 999px;
    }

    @media (pointer: fine) {
      body.cursor-enabled,
      body.cursor-enabled a,
      body.cursor-enabled button,
      body.cursor-enabled input,
      body.cursor-enabled textarea,
      body.cursor-enabled [role="button"] {
        cursor: none !important;
      }
    }

    .section {
      position: relative;
      padding: 108px 0;
    }

    .section.tight {
      padding: 76px 0;
    }

    .section-header {
      display: grid;
      gap: 17px;
      max-width: 880px;
      margin-bottom: 46px;
    }

    .section-label {
      display: inline-flex;
      width: fit-content;
      align-items: center;
      gap: 10px;
      color: var(--color-text-muted);
      font-size: 0.76rem;
      font-weight: 920;
      letter-spacing: 0.18em;
      text-transform: uppercase;
    }

    .section-title {
      max-width: 930px;
      font-size: clamp(2.1rem, 5vw, 4.95rem);
      line-height: 0.95;
      letter-spacing: -0.075em;
      text-wrap: balance;
    }

    .section-copy {
      max-width: 760px;
      color: var(--color-text-muted);
      font-size: clamp(1rem, 1.9vw, 1.18rem);
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      width: fit-content;
      padding: 8px 12px;
      border: 1px solid rgba(110, 231, 183, 0.72);
      border-radius: 999px;
      background: rgba(209, 250, 229, 0.70);
      color: var(--color-text);
      font-size: 0.78rem;
      font-weight: 920;
      letter-spacing: 0.03em;
      backdrop-filter: blur(18px);
    }

    .dot {
      position: relative;
      display: inline-block;
      width: 30px;
      height: 20px;
      flex: 0 0 30px;
      border-radius: 8px;
      border: 1px solid rgba(16, 185, 129, 0.52);
      overflow: hidden;
      transform: translateY(0.5px);
    }

    .dot::before {
      content: "";
      position: absolute;
      left: 7px;
      top: 5px;
      width: 7px;
      height: 8px;
      background: var(--color-dark-accent);
      clip-path: polygon(0 0, 100% 50%, 0 100%, 0 72%, 56% 50%, 0 28%);
    }

    .dot::after {
      content: "";
      position: absolute;
      right: 7px;
      bottom: 4px;
      width: 7px;
      height: 2px;
      border-radius: 999px;
    }

    .glass {
      position: relative;
      border: 1px solid rgba(217, 217, 217, 0.84);
      background: linear-gradient(135deg, rgba(255, 255, 255, 0.90), rgba(242, 242, 242, 0.62)),
        rgba(255, 255, 255, 0.76);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(22px);
    }

    .glass::before {
      content: "";
      position: absolute;
      inset: 0;
      border-radius: inherit;
      pointer-events: none;
      opacity: 0.9;
    }

    .glass > * {
      position: relative;
      z-index: 1;
    }

    .dark-panel {
      position: relative;
      border: 1px solid rgba(110, 231, 183, 0.20);
      color: var(--color-dark-text);
      box-shadow: 0 28px 90px rgba(10, 10, 10, 0.25), inset 0 1px 0 rgba(250, 250, 250, 0.07);
    }

    .btn {
      position: relative;
      isolation: isolate;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      min-height: 50px;
      padding: 0 22px;
      border: 1px solid transparent;
      border-radius: 999px;
      cursor: pointer;
      overflow: hidden;
      font-weight: 940;
      letter-spacing: -0.02em;
      transform: translate3d(var(--mx, 0), var(--my, 0), 0);
      transition: transform 260ms var(--ease-out),
        box-shadow 220ms var(--ease-out),
        background 220ms var(--ease-out),
        color 220ms var(--ease-out),
        border-color 220ms var(--ease-out);
    }

    .btn::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: -1;
      background: linear-gradient(110deg, transparent, rgba(255,255,255,0.55), transparent);
      transform: translateX(-112%);
      transition: transform 700ms var(--ease-out);
    }

    .btn:hover::before {
      transform: translateX(112%);
    }

    .btn:hover {
      transform: translate3d(var(--mx, 0), calc(var(--my, 0) - 2px), 0);
    }

    .btn:active {
      transform: translate3d(var(--mx, 0), var(--my, 0), 0) scale(0.985);
    }

    .btn-secondary {
      color: var(--color-text);
      backdrop-filter: blur(14px);
    }

    .btn-dark {
      background: rgba(250, 250, 250, 0.08);
      color: var(--color-dark-text);
      border-color: rgba(110, 231, 183, 0.24);
    }

    .btn:disabled {
      cursor: not-allowed;
      transform: none;
      background: var(--color-disabled-bg);
      color: var(--color-disabled-text);
      box-shadow: none;
      border-color: var(--color-border);
    }

    :focus-visible {
      outline: 3px solid var(--color-focus-ring);
      outline-offset: 4px;
    }

    .btn-dark:hover {
      background: var(--accent-gradient);
      color: var(--color-accent-text);
      border-color: rgba(110, 231, 183, 0.54);
      box-shadow: var(--accent-glow);
    }

    .kicker.kicker-dark {
      color: var(--color-dark-text);
      background: linear-gradient(rgba(10, 10, 10, 0.66), rgba(10, 10, 10, 0.66)) padding-box,
        var(--accent-gradient) border-box;
      border-color: transparent;
      box-shadow: inset 0 0 22px rgba(16, 185, 129, 0.12), 0 14px 34px rgba(0, 0, 0, 0.12);
    }

    .service-index strong {
      border-color: transparent;
      box-shadow: inset 0 0 18px rgba(16, 185, 129, 0.14);
    }

    .site-header {
      position: sticky;
      top: 0;
      z-index: 950;
      min-height: var(--header-height);
      border-bottom: 1px solid rgba(217, 217, 217, 0.76);
      background: rgba(250, 250, 250, 0.74);
      backdrop-filter: blur(24px) saturate(1.25);
    }

    .site-header::after {
      content: "";
      position: absolute;
      left: 0;
      right: 0;
      bottom: -1px;
      height: 1px;
      opacity: 0.72;
    }

    .nav {
      display: grid;
      grid-template-columns: 1fr auto 1fr;
      align-items: center;
      gap: 18px;
      min-height: var(--header-height);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      gap: 12px;
      width: fit-content;
      font-weight: 980;
      letter-spacing: -0.045em;
    }

    .brand-mark {
      position: relative;
      display: grid;
      place-items: center;
      width: 44px;
      height: 44px;
      border: 1px solid rgba(110, 231, 183, 0.34);
      border-radius: 16px;
      background: var(--color-dark-bg);
      overflow: hidden;
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.95rem;
      font-weight: 950;
    }

    .brand-mark::before {
      content: "";
      position: absolute;
      inset: 8px;
      border: 1px solid rgba(5, 150, 105, 0.34);
      border-radius: 11px;
    }

    .brand-mark::after {
      content: "";
      position: absolute;
      inset: -60%;
      background: linear-gradient(115deg, transparent 35%, rgba(16, 185, 129, 0.45), transparent 65%);
      transform: rotate(22deg) translateX(-72%);
      animation: logoSweep 6.8s ease-in-out infinite;
    }

    @keyframes logoSweep {
      0%, 46% {
        transform: rotate(22deg) translateX(-72%);
      }

      72%, 100% {
        transform: rotate(22deg) translateX(72%);
      }
    }

    .brand-text small {
      display: block;
      margin-top: 2px;
      color: var(--color-text-muted);
      font-size: 0.68rem;
      font-weight: 860;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .nav-center {
      justify-self: center;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      padding: 6px;
      border: 1px solid rgba(217, 217, 217, 0.76);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.62);
      box-shadow: 0 12px 35px rgba(10, 10, 10, 0.05);
      list-style: none;
    }

    .route-link {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-height: 38px;
      padding: 0 18px;
      border-radius: 999px;
      border: 0;
      background: transparent;
      color: var(--color-text-muted);
      font-size: 0.86rem;
      font-weight: 900;
      letter-spacing: -0.01em;
      transition: background 220ms var(--ease-out), color 220ms var(--ease-out), box-shadow 220ms var(--ease-out), transform 220ms var(--ease-out);
    }

    .nav-right {
      justify-self: end;
      display: inline-flex;
      align-items: center;
      gap: 12px;
    }

    .menu-toggle {
      display: none;
      width: 46px;
      height: 46px;
      border: 1px solid rgba(217, 217, 217, 0.86);
      border-radius: 16px;
      background: rgba(255, 255, 255, 0.80);
      cursor: pointer;
    }

    .menu-toggle span {
      display: block;
      width: 20px;
      height: 2px;
      margin: 5px auto;
      border-radius: 999px;
      background: var(--color-text);
      transition: transform 220ms var(--ease-out), opacity 180ms ease;
    }

    .menu-toggle.is-open span:nth-child(1) {
      transform: translateY(7px) rotate(45deg);
    }

    .menu-toggle.is-open span:nth-child(2) {
      opacity: 0;
    }

    .menu-toggle.is-open span:nth-child(3) {
      transform: translateY(-7px) rotate(-45deg);
    }

    .mobile-panel {
      display: none;
    }

    .page {
      min-height: calc(100vh - var(--header-height));
    }

    .page.is-active {
      display: block;
      animation: routeEnter 500ms var(--ease-snap) both;
    }

    @keyframes routeEnter {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

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

    .hero {
      position: relative;
      padding: 96px 0 92px;
      overflow: hidden;
    }

    .hero::before {
      content: "";
      position: absolute;
      left: 50%;
      top: 42px;
      width: min(980px, 92vw);
      height: min(980px, 92vw);
      border-radius: 50%;
      transform: translateX(-50%);
      background: radial-gradient(circle, rgba(5, 150, 105, 0.10), transparent 62%);
      pointer-events: none;
      filter: blur(4px);
    }

    .hero-grid {
      position: relative;
      display: grid;
      grid-template-columns: minmax(0, 1.08fr) minmax(360px, 0.84fr);
      gap: 52px;
      align-items: center;
    }

    .hero-copy-block {
      max-width: 780px;
    }

    .hero-title {
      margin-top: 22px;
      font-size: clamp(3.8rem, 8.8vw, 8.55rem);
      line-height: 0.86;
      text-wrap: balance;
    }

    .hero-title .accent {
      color: var(--color-accent-bg);
      text-shadow: 0 0 34px rgba(5, 150, 105, 0.24);
    }

    .hero-title .outline {
      color: transparent;
      -webkit-text-stroke: 1.2px rgba(10, 10, 10, 0.58);
      text-shadow: none;
    }

    .hero-copy {
      max-width: 690px;
      margin-top: 28px;
      color: var(--color-text-muted);
      font-size: clamp(1.04rem, 1.7vw, 1.22rem);
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 14px;
      margin-top: 34px;
    }

    .command-line {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      align-items: center;
      width: fit-content;
      max-width: 100%;
      margin-top: 30px;
      padding: 11px 13px;
      border: 1px solid rgba(110, 231, 183, 0.50);
      border-radius: 999px;
      background: rgba(10, 10, 10, 0.92);
      color: var(--color-dark-text);
      box-shadow: 0 18px 44px rgba(10, 10, 10, 0.14), var(--shadow-glow);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.88rem;
    }

    .command-line .prompt {
      color: var(--color-dark-accent);
      font-weight: 950;
    }

    .cursor-blink {
      display: inline-block;
      width: 8px;
      height: 1.1em;
      transform: translateY(3px);
      animation: blink 1.05s steps(2, start) infinite;
    }

    @keyframes blink {
      0%, 45% {
        opacity: 1;
      }

      46%, 100% {
        opacity: 0;
      }
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 14px;
      margin-top: 38px;
    }

    .metric-card {
      position: relative;
      min-height: 132px;
      padding: 20px;
      border-radius: 24px;
      overflow: hidden;
      transition: border-color 240ms var(--ease-out), box-shadow 240ms var(--ease-out), transform 240ms var(--ease-out);
    }

    .metric-card::after {
      content: "";
      position: absolute;
      left: 18px;
      right: 18px;
      bottom: 16px;
      height: 28px;
      background: linear-gradient(90deg, rgba(5, 150, 105, 0.38) 0 16%, transparent 16% 22%, rgba(5, 150, 105, 0.24) 22% 45%, transparent 45% 54%, rgba(52, 211, 153, 0.32) 54% 78%, transparent 78%),
        linear-gradient(to top, rgba(5, 150, 105, 0.13), transparent);
      clip-path: polygon(0 100%, 0 54%, 8% 42%, 14% 65%, 22% 26%, 31% 40%, 37% 18%, 47% 58%, 54% 34%, 63% 44%, 72% 8%, 82% 50%, 90% 24%, 100% 60%, 100% 100%);
      opacity: 0.74;
    }

    .metric-card:hover {
      transform: translateY(-5px);
      border-color: rgba(5, 150, 105, 0.44);
      box-shadow: var(--shadow-panel);
    }

    .metric-value {
      display: block;
      color: var(--color-text);
      font-size: clamp(1.8rem, 3vw, 2.35rem);
      line-height: 1;
      font-weight: 980;
      letter-spacing: -0.06em;
    }

    .metric-value .suffix {
      color: var(--color-accent-bg);
    }

    .metric-label {
      display: block;
      margin-top: 9px;
      color: var(--color-text-muted);
      font-size: 0.86rem;
      font-weight: 850;
    }

    .hero-console {
      position: relative;
      perspective: 1200px;
      justify-self: center;
      width: min(100%, 540px);
    }

    .console-shell {
      position: relative;
      min-height: 620px;
      border-radius: var(--radius-xl);
      overflow: hidden;
      transform-style: preserve-3d;
    }

    .tilt-live {
      --tilt-x: 0deg;
      --tilt-y: 0deg;
      --tilt-z: 0px;
      --tilt-glow-x: 50%;
      --tilt-glow-y: 42%;
      transform: perspective(1200px)
        rotateX(var(--tilt-x))
        rotateY(var(--tilt-y))
        translate3d(0, 0, var(--tilt-z));
      transition: border-color 260ms var(--ease-out), box-shadow 260ms var(--ease-out);
      will-change: transform;
    }

    .tilt-live::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: 1;
      pointer-events: none;
      opacity: 0;
    }

    .tilt-live.is-tilting {
      border-color: rgba(110, 231, 183, 0.34);
    }

    .console-shell::after {
      content: "";
      position: absolute;
      inset: 16px;
      border: 1px solid rgba(110, 231, 183, 0.23);
      border-radius: 30px;
      pointer-events: none;
    }

    .console-grid {
      position: absolute;
      inset: 0;
      opacity: 0.28;
      background: linear-gradient(rgba(16, 185, 129, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.12) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(circle at 50% 38%, black, transparent 74%);
    }

    .console-topbar {
      position: absolute;
      top: 24px;
      left: 24px;
      right: 24px;
      z-index: 2;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 14px;
      min-height: 48px;
      padding: 0 16px;
      border: 1px solid rgba(110, 231, 183, 0.22);
      border-radius: 999px;
      background: rgba(250, 250, 250, 0.07);
      backdrop-filter: blur(18px);
    }

    .window-dots {
      display: flex;
      gap: 7px;
    }

    .window-dots i {
      width: 10px;
      height: 10px;
      border-radius: 50%;
      background: var(--color-dark-accent);
      box-shadow: 0 0 14px rgba(5, 150, 105, 0.56);
    }

    .console-title {
      color: rgba(250, 250, 250, 0.78);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.76rem;
      font-weight: 840;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    .orbital-wrap {
      position: absolute;
      z-index: 2;
      inset: 88px 24px 174px;
      display: grid;
      place-items: center;
    }

    .orbital-core {
      position: relative;
      display: grid;
      place-items: center;
      width: min(300px, 72vw);
      aspect-ratio: 1;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(5, 150, 105, 0.26), rgba(5, 150, 105, 0.08) 34%, transparent 60%);
    }

    .orbital-core::before, .orbital-core::after {
      content: "";
      position: absolute;
      inset: 9%;
      border: 1px dashed rgba(16, 185, 129, 0.38);
      border-radius: 50%;
      animation: rotate 24s linear infinite;
    }

    .orbital-core::after {
      inset: -5%;
      animation-duration: 38s;
      animation-direction: reverse;
      border-style: solid;
      opacity: 0.35;
    }

    .python-glyph {
      place-items: center;
      width: 142px;
      height: 142px;
      border: 1px solid rgba(110, 231, 183, 0.30);
      border-radius: 40px;
      background: radial-gradient(circle at top left, rgba(5, 150, 105, 0.34), transparent 58%),
        linear-gradient(145deg, rgba(250, 250, 250, 0.10), rgba(10, 10, 10, 0.86));
      box-shadow: 0 0 80px rgba(5, 150, 105, 0.26), inset 0 1px 0 rgba(250, 250, 250, 0.13);
      color: var(--color-dark-text);
      font-size: 2.7rem;
      font-weight: 980;
      transform: rotate(-5deg);
    }

    .satellite {
      position: absolute;
      display: grid;
      place-items: center;
      width: 78px;
      height: 34px;
      border: 1px solid rgba(110, 231, 183, 0.32);
      border-radius: 999px;
      background: rgba(10, 10, 10, 0.72);
      color: var(--color-dark-accent);
      box-shadow: 0 12px 32px rgba(10, 10, 10, 0.18);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.68rem;
      font-weight: 900;
      backdrop-filter: blur(12px);
    }

    .satellite.s1 {
      top: 8%;
      left: 9%;
    }

    .satellite.s2 {
      top: 22%;
      right: 1%;
    }

    .satellite.s3 {
      bottom: 14%;
      left: 2%;
    }

    .satellite.s4 {
      right: 12%;
      bottom: 0%;
      color: var(--color-highlight);
    }

    @keyframes rotate {
      to {
        transform: rotate(360deg);
      }
    }

    .live-stack {
      position: absolute;
      left: 24px;
      right: 24px;
      bottom: 24px;
      z-index: 2;
      display: grid;
      gap: 12px;
      padding: 18px;
      border: 1px solid rgba(110, 231, 183, 0.22);
      border-radius: 26px;
      background: rgba(250, 250, 250, 0.075);
      backdrop-filter: blur(18px);
    }

    .stack-row {
      display: grid;
      grid-template-columns: 96px 1fr auto;
      gap: 12px;
      align-items: center;
      color: rgba(250, 250, 250, 0.76);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.8rem;
    }

    .stack-bar {
      position: relative;
      height: 7px;
      border-radius: 999px;
      overflow: hidden;
      background: rgba(250, 250, 250, 0.10);
    }

    .stack-bar span {
      position: absolute;
      inset: 0 auto 0 0;
      width: var(--w);
      border-radius: inherit;
      background: linear-gradient(90deg, var(--color-dark-accent), var(--color-highlight));
      box-shadow: 0 0 18px rgba(5, 150, 105, 0.44);
    }

    .floating-chip {
      position: absolute;
      z-index: 4;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 12px 14px;
      border: 1px solid rgba(110, 231, 183, 0.38);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.84);
      color: var(--color-text);
      box-shadow: var(--shadow-soft);
      backdrop-filter: blur(20px);
      font-size: 0.82rem;
      font-weight: 900;
      animation: floatY 5.4s ease-in-out infinite;
    }

    .floating-chip.one {
      right: -2px;
      top: 100px;
    }

    .floating-chip.two {
      left: -10px;
      bottom: 162px;
      animation-delay: -1.4s;
    }

    @keyframes floatY {
      0%, 100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-12px);
      }
    }

    .identity-lab {
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .identity-grid {
      display: grid;
      grid-template-columns: 0.96fr 1.04fr;
      min-height: 620px;
    }

    .portrait-stage {
      position: relative;
      min-height: 620px;
      overflow: hidden;
    }

    .portrait-stage::before {
      content: "";
      position: absolute;
      inset: 0;
    }

    .portrait-stage::after {
      content: "";
      position: absolute;
      border: 1px solid rgba(110, 231, 183, 0.36);
    }

    .portrait-meta {
      position: absolute;
      z-index: 2;
      border: 1px solid rgba(110, 231, 183, 0.26);
      color: var(--color-dark-text);
      backdrop-filter: blur(18px);
    }

    .portrait-meta h3 {
      font-size: 1.55rem;
      letter-spacing: -0.05em;
    }

    .portrait-meta p {
      margin-top: 8px;
    }

    .identity-panel {
      display: grid;
      align-content: center;
      gap: 20px;
      padding: clamp(28px, 5vw, 56px);
    }

    .terminal-card {
      padding: 24px;
      border-radius: 26px;
      background: var(--color-dark-bg);
      color: var(--color-dark-text);
      box-shadow: var(--shadow-glow);
      overflow: hidden;
    }

    .terminal-top {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 12px;
      margin-bottom: 18px;
      color: rgba(250, 250, 250, 0.54);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.76rem;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    .terminal-code {
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.93rem;
      line-height: 1.8;
      overflow-x: auto;
      white-space: pre;
    }

    .terminal-code .comment {
      color: rgba(250, 250, 250, 0.48);
    }

    .terminal-code .key {
      color: var(--color-dark-accent);
    }

    .terminal-code .string {
      color: #BBF7D0;
    }

    .terminal-code .func {
      color: var(--color-highlight);
    }

    .stack-cloud {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
    }

    .tech-pill, .tag {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      min-height: 30px;
      padding: 0 11px;
      border: 1px solid rgba(110, 231, 183, 0.78);
      border-radius: 999px;
      background: rgba(209, 250, 229, 0.66);
      color: var(--color-text);
      font-size: 0.78rem;
      font-weight: 900;
    }

    .services {
      background: linear-gradient(180deg, transparent, rgba(242, 242, 242, 0.78), transparent),
        radial-gradient(circle at 50% 50%, rgba(5, 150, 105, 0.08), transparent 42rem);
    }

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

    .fiverr-card {
      position: relative;
      min-height: 390px;
      padding: 26px;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .fiverr-card::after {
      content: "";
      position: absolute;
      right: -58px;
      bottom: -80px;
      width: 220px;
      height: 220px;
      border: 1px solid rgba(5, 150, 105, 0.20);
      border-radius: 50%;
      background: radial-gradient(circle, rgba(5, 150, 105, 0.18), transparent 62%);
      transition: transform 320ms var(--ease-out);
    }

    .fiverr-card:hover {
      border-color: rgba(5, 150, 105, 0.42);
    }

    .service-index {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 10px;
      margin-bottom: 22px;
    }

    .service-index strong {
      display: grid;
      place-items: center;
      width: 48px;
      height: 48px;
      border: 1px solid rgba(110, 231, 183, 0.75);
      border-radius: 17px;
      background: var(--color-accent-soft-bg);
      color: var(--color-text);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.86rem;
    }

    .service-index span {
      color: var(--color-text-muted);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.72rem;
      font-weight: 920;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .fiverr-card h3, .bio-card h3, .paper-card h3, .contact-card h3 {
      font-size: 1.42rem;
      line-height: 1.08;
      letter-spacing: -0.045em;
    }

    .fiverr-card p, .bio-card p, .paper-card p, .contact-card p {
      margin-top: 12px;
      color: var(--color-text-muted);
    }

    .service-tags {
      display: flex;
      flex-wrap: wrap;
      gap: 8px;
      margin-top: 20px;
    }

    .fiverr-card .btn {
      width: 100%;
    }

    .service-output {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 10px;
      align-items: center;
      margin: 22px 0 18px;
      padding-top: 16px;
      border-top: 1px solid rgba(217, 217, 217, 0.76);
      color: var(--color-text-muted);
      font-size: 0.84rem;
      font-weight: 850;
    }

    .service-output i {
      width: 48px;
      height: 8px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--color-accent-bg), transparent);
      box-shadow: 0 0 18px rgba(5, 150, 105, 0.35);
    }

    .fiverr-card {
      display: flex;
      flex-direction: column;
      height: 100%;
      align-content: unset;
    }

    .fiverr-card h3 {
      min-height: 3.1em;
    }

    .fiverr-card p {
      min-height: 6.9em;
    }

    .fiverr-card .service-output {
      margin-bottom: 18px;
    }

    .fiverr-card .btn {
      margin-top: 0;
    }

    @media (max-width: 860px) {
      .fiverr-card h3, .fiverr-card p {
        min-height: auto;
      }
    }

    .contact-banner {
      position: relative;
      isolation: isolate;
      border-radius: var(--radius-xl);
      overflow: hidden;
      padding: 0;
    }

    .contact-banner::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      background: radial-gradient(circle at 18% 18%, rgba(16, 185, 129, 0.24), transparent 26rem),
        radial-gradient(circle at 86% 38%, rgba(22, 101, 52, 0.22), transparent 24rem),
        linear-gradient(120deg, rgba(250, 250, 250, 0.06), transparent 42%, rgba(16, 185, 129, 0.08));
    }

    .contact-banner::after {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      opacity: 0.26;
      background: linear-gradient(rgba(110, 231, 183, 0.15) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 231, 183, 0.15) 1px, transparent 1px);
      background-size: 38px 38px;
      mask-image: radial-gradient(circle at 70% 45%, black, transparent 74%);
    }

    .contact-banner-grid {
      position: relative;
      z-index: 2;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 0.62fr);
      gap: clamp(26px, 4vw, 54px);
      align-items: center;
      padding: clamp(34px, 5vw, 64px);
    }

    .contact-banner h2 {
      color: var(--color-dark-text);
      font-size: clamp(2.3rem, 5.4vw, 5.35rem);
      line-height: 0.94;
      letter-spacing: -0.078em;
      max-width: 870px;
      text-wrap: balance;
    }

    .contact-banner p {
      max-width: 670px;
      margin-top: 18px;
      color: rgba(250, 250, 250, 0.74);
      font-size: 1.08rem;
    }

    .contact-banner-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 12px;
      margin-top: 28px;
    }

    .scope-points {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 700px;
      margin-top: 26px;
    }

    .scope-point {
      padding: 12px 13px;
      border: 1px solid rgba(110, 231, 183, 0.20);
      border-radius: 16px;
      background: rgba(250, 250, 250, 0.065);
      color: rgba(250, 250, 250, 0.72);
      font-size: 0.82rem;
      font-weight: 860;
      backdrop-filter: blur(16px);
    }

    .scope-point strong {
      display: block;
      color: var(--color-dark-accent);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.72rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      margin-bottom: 4px;
    }

    .contact-banner-visual {
      position: relative;
      min-height: 330px;
      border: 1px solid rgba(110, 231, 183, 0.24);
      border-radius: 32px;
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(250, 250, 250, 0.08), 0 24px 70px rgba(10, 10, 10, 0.20);
    }

    .contact-banner-visual::before {
      content: "";
      position: absolute;
      inset: 0;
    }

    @keyframes bannerScan {
      from {
        transform: translateX(-38%);
      }

      to {
        transform: translateX(38%);
      }
    }

    .scope-orbit {
      position: absolute;
      left: 50%;
      transform: translate(-50%, -50%);
    }

    .scope-orbit::before, .scope-orbit::after {
      content: "";
      position: absolute;
      background: var(--accent-gradient);
      box-shadow: 0 0 26px rgba(16, 185, 129, 0.55);
    }

    .scope-core {
      position: absolute;
      left: 50%;
      display: grid;
      place-items: center;
      width: 118px;
      height: 118px;
      border: 1px solid rgba(110, 231, 183, 0.36);
      transform: translate(-50%, -50%) rotate(-4deg);
      color: var(--color-dark-text);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-weight: 950;
      letter-spacing: -0.06em;
    }

    .scope-step-card {
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 22px;
      display: grid;
      gap: 9px;
      padding: 16px;
      border: 1px solid rgba(110, 231, 183, 0.22);
      border-radius: 22px;
      backdrop-filter: blur(18px);
    }

    .scope-step-card span {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 10px;
      align-items: center;
      color: rgba(250, 250, 250, 0.76);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.78rem;
      font-weight: 850;
    }

    .scope-step-card i {
      display: block;
      width: 32px;
      height: 6px;
      border-radius: 999px;
      background: var(--accent-gradient);
      box-shadow: 0 0 18px rgba(5, 150, 105, 0.38);
    }

    .scope-step-card em {
      color: var(--color-dark-accent);
      font-style: normal;
      font-weight: 950;
    }

    .bio-grid {
      display: grid;
      grid-template-columns: 0.86fr 1.14fr;
      gap: 24px;
    }

    .bio-card {
      padding: 30px;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .profile-list {
      display: grid;
      gap: 12px;
      margin-top: 24px;
      list-style: none;
    }

    .profile-list li {
      display: flex;
      align-items: flex-start;
      gap: 12px;
      color: var(--color-text-muted);
    }

    .profile-list li::before {
      content: "";
      width: 10px;
      height: 10px;
      flex: 0 0 10px;
      margin-top: 8px;
      border-radius: 50%;
      background: var(--color-accent-bg);
      box-shadow: 0 0 18px rgba(5, 150, 105, 0.55);
    }

    .availability-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 12px;
      margin-top: 28px;
    }

    .availability-cell {
      padding: 16px;
      border: 1px solid rgba(217, 217, 217, 0.82);
      border-radius: 18px;
    }

    .availability-cell strong {
      display: block;
      font-size: 1.25rem;
      line-height: 1;
      letter-spacing: -0.05em;
    }

    .availability-cell span {
      display: block;
      margin-top: 8px;
      color: var(--color-text-muted);
      font-size: 0.83rem;
      font-weight: 820;
    }

    .bio-panels {
      display: grid;
      gap: 18px;
    }

    .system-map {
      min-height: 252px;
      padding: 28px;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .system-map h3 {
      color: var(--color-dark-text);
    }

    .system-map p {
      color: rgba(250, 250, 250, 0.72);
    }

    .node-map {
      position: relative;
      margin-top: 20px;
      border-radius: 22px;
      overflow: hidden;
    }

    .node-map::before, .node-map::after {
      content: "";
      position: absolute;
      height: 2px;
      background: linear-gradient(90deg, transparent, var(--color-dark-accent), transparent);
      opacity: 0.72;
      transform-origin: left center;
    }

    .node {
      position: absolute;
      display: grid;
      place-items: center;
      border: 1px solid rgba(110, 231, 183, 0.32);
      color: var(--color-dark-accent);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.72rem;
      font-weight: 900;
    }

    .cv-grid {
      display: grid;
      grid-template-columns: 320px minmax(0, 1fr);
      gap: 24px;
      align-items: start;
    }

    .cv-side {
      position: sticky;
      top: calc(var(--header-height) + 24px);
      padding: 22px;
      border-radius: var(--radius-lg);
    }

    .cv-tabs {
      display: grid;
      gap: 10px;
    }

    .cv-tab {
      display: grid;
      grid-template-columns: auto 1fr auto;
      gap: 12px;
      align-items: center;
      width: 100%;
      min-height: 56px;
      padding: 0 14px;
      border: 1px solid rgba(217, 217, 217, 0.86);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.56);
      color: var(--color-text-muted);
      cursor: pointer;
      text-align: left;
      font-weight: 900;
      transition: background 220ms var(--ease-out), color 220ms var(--ease-out), border-color 220ms var(--ease-out), transform 220ms var(--ease-out);
    }

    .cv-tab i {
      display: grid;
      place-items: center;
      width: 30px;
      height: 30px;
      border-radius: 10px;
      font-style: normal;
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.72rem;
    }

    .cv-tab .arrow {
      opacity: 0;
      transform: translateX(-5px);
      transition: opacity 220ms ease, transform 220ms var(--ease-out);
    }

    .cv-tab:hover, .cv-tab.is-active {
      background: var(--color-dark-bg);
      color: var(--color-dark-text);
      border-color: rgba(110, 231, 183, 0.34);
      transform: translateX(4px);
    }

    .cv-tab.is-active .arrow, .cv-tab:hover .arrow {
      opacity: 1;
      transform: translateX(0);
    }

    .cv-content {
      min-height: 490px;
    }

    .cv-panel {
      display: none;
      border-radius: var(--radius-lg);
      overflow: hidden;
    }

    .cv-panel.is-active {
      display: block;
      animation: panelIn 280ms var(--ease-out) both;
    }

    @keyframes panelIn {
      from {
        opacity: 0;
        transform: translateY(8px);
      }

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

    .timeline, .skill-board, .cert-grid {
      padding: 30px;
    }

    .timeline {
      display: grid;
      gap: 16px;
    }

    .timeline-item {
      position: relative;
      display: grid;
      grid-template-columns: 148px 1fr;
      gap: 20px;
      padding: 22px;
      border: 1px solid rgba(217, 217, 217, 0.72);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.62);
    }

    .timeline-date {
      color: var(--color-text-muted);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.78rem;
      font-weight: 900;
    }

    .timeline-item h3, .cert-card h3 {
      font-size: 1.28rem;
      letter-spacing: -0.04em;
    }

    .timeline-item p, .cert-card p {
      margin-top: 8px;
      color: var(--color-text-muted);
    }

    .skill-board {
      display: grid;
      gap: 18px;
    }

    .skill-row {
      display: grid;
      grid-template-columns: 180px 1fr auto;
      gap: 16px;
      align-items: center;
      padding: 18px;
      border: 1px solid rgba(217, 217, 217, 0.78);
      border-radius: 20px;
      background: rgba(255, 255, 255, 0.62);
    }

    .skill-track {
      position: relative;
      height: 10px;
      border-radius: 999px;
      overflow: hidden;
      background: var(--color-disabled-bg);
    }

    .skill-fill {
      position: absolute;
      inset: 0 auto 0 0;
      width: 0%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--color-accent-bg), var(--color-highlight));
      box-shadow: 0 0 20px rgba(5, 150, 105, 0.35);
      transition: width 1200ms var(--ease-snap);
    }

    .skill-row.is-visible .skill-fill {
      width: var(--value);
    }

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

    .cert-card {
      padding: 24px;
      border: 1px solid rgba(217, 217, 217, 0.78);
      border-radius: 22px;
      background: rgba(255, 255, 255, 0.62);
    }

    .cert-card small {
      color: var(--color-text-muted);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-weight: 900;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .cert-card h3 {
      margin-top: 10px;
    }

    .paper-grid {
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 24px;
      align-items: stretch;
    }

    .paper-card {
      min-height: 520px;
      padding: 34px;
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .paper-card h3 {
      margin-top: 24px;
      font-size: clamp(2rem, 3.6vw, 3.5rem);
      line-height: 0.98;
      letter-spacing: -0.07em;
    }

    .paper-stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 12px;
      margin-top: 28px;
    }

    .paper-stat {
      padding: 16px;
      border: 1px solid rgba(217, 217, 217, 0.82);
      border-radius: 18px;
      background: rgba(250, 250, 250, 0.62);
    }

    .paper-stat strong {
      display: block;
      font-size: 1.26rem;
      line-height: 1;
      letter-spacing: -0.04em;
    }

    .paper-stat span {
      display: block;
      margin-top: 8px;
      color: var(--color-text-muted);
      font-size: 0.82rem;
      font-weight: 850;
    }

    .paper-diagram {
      min-height: 520px;
      border-radius: var(--radius-xl);
      padding: 28px;
      overflow: hidden;
    }

    .paper-diagram h3 {
      color: var(--color-dark-text);
      font-size: 1.38rem;
      letter-spacing: -0.04em;
    }

    .pipeline {
      position: relative;
      display: grid;
      gap: 18px;
      margin-top: 28px;
    }

    .pipeline::before {
      content: "";
      position: absolute;
      left: 30px;
      top: 28px;
      bottom: 28px;
      width: 2px;
      background: linear-gradient(var(--color-dark-accent), rgba(5, 150, 105, 0.05));
      box-shadow: 0 0 18px rgba(5, 150, 105, 0.42);
    }

    .pipeline-step {
      position: relative;
      display: grid;
      grid-template-columns: 60px 1fr;
      gap: 14px;
      align-items: center;
      padding: 16px;
      border: 1px solid rgba(110, 231, 183, 0.22);
      border-radius: 20px;
      background: rgba(250, 250, 250, 0.07);
      backdrop-filter: blur(18px);
    }

    .pipeline-step i {
      display: grid;
      place-items: center;
      width: 34px;
      height: 34px;
      border-radius: 12px;
      background: var(--color-dark-accent);
      color: var(--color-accent-text);
      font-style: normal;
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.72rem;
      font-weight: 900;
    }

    .pipeline-step strong {
      display: block;
      color: var(--color-dark-text);
      letter-spacing: -0.03em;
    }

    .pipeline-step span {
      display: block;
      color: rgba(250, 250, 250, 0.68);
      font-size: 0.9rem;
    }

    .faq-grid {
      display: grid;
      grid-template-columns: 0.92fr 1.08fr;
      gap: 24px;
      align-items: start;
    }

    .faq-console {
      position: sticky;
      top: calc(var(--header-height) + 24px);
      padding: 28px;
      border-radius: var(--radius-xl);
    }

    .faq-console h3 {
      color: var(--color-dark-text);
      font-size: 1.65rem;
      letter-spacing: -0.05em;
    }

    .faq-console p {
      margin-top: 12px;
      color: rgba(250, 250, 250, 0.72);
    }

    .diagnostic-list {
      display: grid;
      gap: 10px;
      margin-top: 22px;
      list-style: none;
      color: rgba(250, 250, 250, 0.78);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.85rem;
    }

    .diagnostic-list li {
      display: flex;
      gap: 10px;
    }

    .diagnostic-list li::before {
      content: "ok";
      color: var(--color-dark-accent);
      font-weight: 900;
    }

    .faq-list {
      display: grid;
      gap: 12px;
    }

    .faq-item {
      border-radius: 24px;
      overflow: hidden;
      transition: border-color 220ms var(--ease-out), box-shadow 220ms var(--ease-out);
    }

    .faq-item.is-open {
      border-color: rgba(5, 150, 105, 0.42);
      box-shadow: var(--shadow-soft);
    }

    .faq-question {
      width: 100%;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 22px;
      border: 0;
      background: transparent;
      cursor: pointer;
      color: var(--color-text);
      text-align: left;
      font-weight: 950;
      letter-spacing: -0.035em;
    }

    .faq-question .plus {
      place-items: center;
      width: 34px;
      height: 34px;
      flex: 0 0 auto;
      border-radius: 999px;
      background: var(--color-accent-soft-bg);
      color: var(--color-text);
      transition: transform 220ms var(--ease-out), background 220ms var(--ease-out);
    }

    .faq-answer {
      display: grid;
      grid-template-rows: 0fr;
      transition: grid-template-rows 280ms var(--ease-out);
    }

    .faq-item.is-open .faq-answer {
      grid-template-rows: 1fr;
    }

    .faq-answer > div {
      overflow: hidden;
    }

    .faq-answer p {
      padding: 0 22px 24px;
      color: var(--color-text-muted);
    }

    .contact-grid {
      display: grid;
      grid-template-columns: minmax(0, 1fr) 0.86fr;
      gap: 24px;
      align-items: stretch;
    }

    .contact-form {
      padding: 30px;
      border-radius: var(--radius-xl);
    }

    .form-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
    }

    .field {
      display: grid;
      gap: 8px;
    }

    .field.full {
      grid-column: 1 / -1;
    }

    label {
      color: var(--color-text-muted);
      font-size: 0.86rem;
      font-weight: 900;
    }

    input, textarea {
      width: 100%;
      border: 1px solid rgba(217, 217, 217, 0.88);
      border-radius: 18px;
      background: rgba(250, 250, 250, 0.78);
      color: var(--color-text);
      padding: 14px 15px;
      transition: border-color 180ms ease, box-shadow 180ms ease, background 180ms ease;
    }

    textarea {
      min-height: 152px;
      resize: vertical;
    }

    input:focus, textarea:focus {
      border-color: var(--color-accent-bg);
      box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.26);
      background: var(--color-surface);
      outline: none;
    }

    .form-status {
      display: none;
      margin-top: 16px;
      padding: 14px 16px;
      border-radius: 18px;
      font-weight: 900;
    }

    .form-status.success {
      display: block;
      background: var(--color-success-bg);
      color: var(--color-success);
    }

    .form-status.error {
      display: block;
      background: var(--color-error-bg);
      color: var(--color-error);
    }

    .contact-submit {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      margin-top: 20px;
    }

    .microcopy {
      color: var(--color-text-muted);
      font-size: 0.86rem;
      font-weight: 750;
    }

    .contact-side {
      display: grid;
      gap: 16px;
    }

    .contact-card {
      padding: 24px;
      border-radius: var(--radius-lg);
    }

    .contact-card a, .contact-card span {
      display: inline-flex;
      margin-top: 7px;
      color: var(--color-text-muted);
    }

    .contact-card a:hover {
      color: var(--color-accent-bg);
    }

    .map-module {
      position: relative;
      display: grid;
      grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
      gap: 24px;
      align-items: stretch;
      min-height: 520px;
      padding: clamp(22px, 3.4vw, 34px);
      border-radius: var(--radius-xl);
      overflow: hidden;
    }

    .map-module::before {
      content: "";
      position: absolute;
      inset: 0;
      background: radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.20), transparent 20rem),
        radial-gradient(circle at 78% 18%, rgba(22, 101, 52, 0.16), transparent 24rem),
        linear-gradient(rgba(110, 231, 183, 0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 231, 183, 0.08) 1px, transparent 1px);
      background-size: auto, auto, 38px 38px, 38px 38px;
      opacity: 0.95;
    }

    .map-copy {
      position: relative;
      z-index: 2;
      display: grid;
      align-content: center;
      max-width: 390px;
    }

    .map-copy h3 {
      color: var(--color-dark-text);
      font-size: clamp(1.8rem, 3vw, 2.75rem);
      line-height: 1;
      letter-spacing: -0.065em;
    }

    .map-copy p {
      margin-top: 14px;
      color: rgba(250, 250, 250, 0.72);
    }

    .map-coordinates {
      display: grid;
      gap: 10px;
      margin-top: 24px;
    }

    .map-coordinates span {
      display: inline-flex;
      width: fit-content;
      padding: 9px 11px;
      border: 1px solid rgba(110, 231, 183, 0.22);
      border-radius: 999px;
      background: rgba(250, 250, 250, 0.07);
      color: rgba(250, 250, 250, 0.78);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.78rem;
      font-weight: 850;
      backdrop-filter: blur(14px);
    }

    .map-frame-wrap {
      position: relative;
      z-index: 2;
      min-height: 460px;
      border: 1px solid rgba(110, 231, 183, 0.28);
      border-radius: 30px;
      overflow: hidden;
      background: rgba(250, 250, 250, 0.08);
      box-shadow: 0 28px 86px rgba(10, 10, 10, 0.24), inset 0 1px 0 rgba(250, 250, 250, 0.08);
    }

    .map-frame-wrap iframe {
      width: 100%;
      height: 100%;
      min-height: 460px;
      border: 0;
      filter: saturate(1.06) contrast(1.02);
    }

    .map-frame-wrap::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 2;
      pointer-events: none;
      background: linear-gradient(180deg, rgba(10, 10, 10, 0.08), transparent 24%, transparent 72%, rgba(10, 10, 10, 0.10)),
        linear-gradient(90deg, rgba(16, 185, 129, 0.16), transparent 18%, transparent 78%, rgba(22, 101, 52, 0.12));
      mix-blend-mode: multiply;
    }

    .map-frame-wrap::after {
      content: "AMSTERDAM / NL";
      position: absolute;
      left: 18px;
      bottom: 18px;
      z-index: 3;
      padding: 8px 11px;
      border: 1px solid rgba(110, 231, 183, 0.28);
      border-radius: 999px;
      background: rgba(10, 10, 10, 0.72);
      color: var(--color-dark-accent);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.72rem;
      font-weight: 950;
      letter-spacing: 0.08em;
      backdrop-filter: blur(14px);
    }

    .site-footer {
      position: relative;
      isolation: isolate;
      overflow: hidden;
      padding: 78px 0 42px;
      color: var(--color-dark-text);
    }

    .footer-network {
      position: absolute;
      inset: 0;
      z-index: -2;
      width: 100%;
      height: 100%;
      pointer-events: none;
    }

    .footer-aurora {
      position: absolute;
      inset: 0;
      z-index: -1;
      pointer-events: none;
    }

    @keyframes footerAurora {
      from {
        transform: translate3d(-2%, 0, 0) skewX(-2deg);
        filter: hue-rotate(0deg);
      }

      to {
        transform: translate3d(2%, -1%, 0) skewX(2deg);
        filter: hue-rotate(10deg);
      }
    }

    .footer-shell {
      position: relative;
      z-index: 2;
      display: grid;
      gap: 22px;
    }

    .footer-terminal-line {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      padding: 12px 14px;
      border: 1px solid rgba(110, 231, 183, 0.18);
      border-radius: 999px;
      background: rgba(250, 250, 250, 0.055);
      color: rgba(250, 250, 250, 0.62);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.76rem;
      font-weight: 850;
      backdrop-filter: blur(18px);
    }

    .footer-terminal-line strong {
      color: var(--color-dark-accent);
      font-weight: 950;
    }

    .footer-layout {
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(360px, 430px);
      gap: 24px;
      align-items: stretch;
    }

    .footer-left, .footer-fiverr {
      position: relative;
      overflow: hidden;
      border: 1px solid rgba(110, 231, 183, 0.20);
      border-radius: var(--radius-xl);
      background: linear-gradient(135deg, rgba(250, 250, 250, 0.09), rgba(250, 250, 250, 0.035)),
        rgba(10, 10, 10, 0.40);
      backdrop-filter: blur(22px);
      box-shadow: inset 0 1px 0 rgba(250, 250, 250, 0.08), 0 28px 80px rgba(0, 0, 0, 0.14);
    }

    .footer-left::before, .footer-fiverr::before {
      content: "";
      position: absolute;
      inset: 0;
      pointer-events: none;
      background: radial-gradient(circle at 12% 18%, rgba(16, 185, 129, 0.14), transparent 20rem),
        linear-gradient(120deg, rgba(255, 255, 255, 0.08), transparent 28%, transparent 72%, rgba(22, 101, 52, 0.10));
    }

    .footer-left > *, .footer-fiverr > * {
      position: relative;
      z-index: 1;
    }

    .footer-left {
      padding: clamp(26px, 4vw, 40px);
    }

    .footer-brand {
      max-width: 780px;
      font-size: clamp(1.65rem, 3.5vw, 3.25rem);
      line-height: 0.96;
      font-weight: 980;
    }

    .footer-copy {
      max-width: 660px;
      margin-top: 14px;
      color: rgba(250, 250, 250, 0.68);
      font-size: 1rem;
    }

    .footer-contact-grid {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
      margin-top: 28px;
    }

    .footer-info-card {
      padding: 16px;
      border: 1px solid rgba(110, 231, 183, 0.18);
      border-radius: 20px;
      background: rgba(250, 250, 250, 0.055);
      box-shadow: inset 0 1px 0 rgba(250, 250, 250, 0.05);
    }

    .footer-info-card strong {
      display: block;
      color: var(--color-dark-accent);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.74rem;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .footer-info-card a, .footer-info-card span {
      display: inline-flex;
      margin-top: 7px;
      color: rgba(250, 250, 250, 0.76);
      font-size: 0.94rem;
    }

    .social-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 24px;
    }

    .footer-actions .social-row {
      margin-top: 0;
    }

    .social-row a {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(110, 231, 183, 0.22);
      background: rgba(250, 250, 250, 0.045);
      color: var(--color-dark-accent);
      font-weight: 920;
      transition: transform 220ms var(--ease-out), background 220ms var(--ease-out), color 220ms var(--ease-out), border-color 220ms var(--ease-out);
    }

    .social-row a:hover {
      transform: translateY(-2px);
    }

    .footer-business-info {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 0 10px;
      margin-top: 12px;
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.84rem;
      font-weight: 850;
      letter-spacing: 0.02em;
    }

    .footer-business-info > .footer-business-item + .footer-business-item::before {
      content: "-";
      display: inline-block;
      margin-right: 10px;
      color: rgba(110, 231, 183, 0.62);
    }

    .footer-business-label {
      color: var(--color-dark-accent);
    }

    .footer-business-value {
      color: rgba(250, 250, 250, 0.76);
    }

    .footer-actions {
      display: flex;
      flex-wrap: wrap;
      align-items: center;
      gap: 10px;
      margin-top: 18px;
    }

    .footer-fiverr {
      display: grid;
      align-content: space-between;
      gap: 22px;
      padding: clamp(26px, 4vw, 40px);
    }

    .footer-fiverr small {
      width: fit-content;
      padding: 8px 10px;
      border: 1px solid rgba(110, 231, 183, 0.24);
      border-radius: 999px;
      background: rgba(16, 185, 129, 0.08);
      color: var(--color-dark-accent);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-weight: 950;
      letter-spacing: 0.10em;
      text-transform: uppercase;
    }

    .footer-fiverr h3 {
      font-size: clamp(1.8rem, 3.4vw, 2.6rem);
      line-height: 0.98;
      letter-spacing: -0.065em;
    }

    .footer-fiverr p {
      color: rgba(250, 250, 250, 0.70);
    }

    .footer-fiverr .btn {
      width: 100%;
      margin-top: 8px;
    }

    .footer-signal {
      position: relative;
      grid-template-columns: repeat(4, 1fr);
      gap: 8px;
      margin-top: 8px;
    }

    .footer-signal i {
      display: block;
      height: 42px;
      border: 1px solid rgba(110, 231, 183, 0.16);
      border-radius: 14px;
      background: linear-gradient(to top, rgba(16, 185, 129, 0.16), transparent),
        rgba(250, 250, 250, 0.035);
      animation: signalLift 3.8s ease-in-out infinite;
    }

    .footer-signal i:nth-child(2) {
      animation-delay: -0.8s;
      height: 60px;
    }

    .footer-signal i:nth-child(3) {
      animation-delay: -1.6s;
      height: 48px;
    }

    .footer-signal i:nth-child(4) {
      animation-delay: -2.4s;
      height: 72px;
    }

    @keyframes signalLift {
      0%, 100% {
        opacity: 0.54;
        transform: scaleY(0.86);
      }

      50% {
        opacity: 1;
        transform: scaleY(1);
      }
    }

    .footer-bottom {
      display: flex;
      flex-wrap: wrap;
      justify-content: space-between;
      gap: 12px;
      color: rgba(250, 250, 250, 0.52);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.76rem;
    }

    [data-reveal] {
      opacity: 0;
      transform: translate3d(0, 26px, 0);
      transition: opacity 680ms var(--ease-out),
        transform 680ms var(--ease-out);
      transition-delay: var(--delay, 0ms);
      will-change: opacity, transform;
    }

    [data-reveal="left"] {
      transform: translate3d(-28px, 0, 0);
    }

    [data-reveal="right"] {
      transform: translate3d(28px, 0, 0);
    }

    [data-reveal="zoom"] {
      transform: scale(0.96);
    }

    [data-reveal].is-visible {
      opacity: 1;
      transform: translate3d(0, 0, 0) scale(1);
    }

    @media (max-width: 1160px) {
      .hero-grid,
      .identity-grid,
      .bio-grid,
      .paper-grid,
      .faq-grid,
      .contact-grid,
      .footer-layout,
      .map-module {
        grid-template-columns: 1fr;
      }

      .hero-console {
        max-width: 560px;
        margin-inline: auto;
      }

      .console-shell {
        min-height: 600px;
      }

      .fiverr-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .cv-grid {
        grid-template-columns: 1fr;
      }

      .cv-side, .faq-console {
        position: static;
      }

      .cv-tabs {
        grid-template-columns: repeat(3, 1fr);
      }

      .footer-contact-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }
    }

    @media (max-width: 860px) {
      .nav {
        grid-template-columns: 1fr auto;
      }

      .nav-center, .nav-right > .btn {
        display: none;
      }

      .menu-toggle {
        display: block;
      }

      .mobile-panel {
        position: fixed;
        top: calc(var(--header-height) + 12px);
        left: 18px;
        right: 18px;
        z-index: 940;
        display: grid;
        gap: 10px;
        padding: 14px;
        border: 1px solid rgba(217, 217, 217, 0.82);
        border-radius: 24px;
        background: rgba(255, 255, 255, 0.93);
        box-shadow: var(--shadow-panel);
        backdrop-filter: blur(22px);
        transform: translateY(-18px);
        opacity: 0;
        pointer-events: none;
        transition: opacity 220ms ease, transform 220ms var(--ease-out);
      }

      .mobile-panel.is-open {
        opacity: 1;
        transform: translateY(0);
        pointer-events: auto;
      }

      .hero {
        padding-top: 58px;
      }

      .hero-metrics,
      .fiverr-grid,
      .paper-stats,
      .form-grid,
      .cert-grid,
      .scope-points,
      .footer-contact-grid {
        grid-template-columns: 1fr;
      }

      .console-shell {
        min-height: 510px;
      }

      .portrait-stage {
        min-height: 540px;
      }

      .orbital-wrap {
        inset: 84px 18px 162px;
      }

      .stack-row {
        grid-template-columns: 80px 1fr;
      }

      .stack-row output {
        grid-column: 1 / -1;
      }

      .availability-grid, .cv-tabs {
        grid-template-columns: 1fr;
      }

      .timeline-item, .skill-row, .contact-banner-grid {
        grid-template-columns: 1fr;
      }

      .contact-submit {
        align-items: stretch;
        flex-direction: column;
      }

      .contact-submit .btn {
        width: 100%;
      }
    }

    @media (max-width: 560px) {
      .container {
        width: min(100% - 28px, var(--container));
      }

      .section {
        padding: 78px 0;
      }

      .hero-title {
        font-size: clamp(3rem, 18vw, 4.2rem);
      }

      .floating-chip, .satellite.s2, .satellite.s3 {
        display: none;
      }

      .console-topbar, .live-stack {
        left: 18px;
        right: 18px;
      }

      .paper-card,
      .timeline,
      .skill-board,
      .cert-grid,
      .contact-form,
      .map-module,
      .faq-console,
      .footer-left,
      .footer-fiverr {
        padding: 22px;
      }
    }

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

      [data-reveal] {
        opacity: 1;
        transform: none;
      }

      .cursor-hud, .scanline, .footer-network, .footer-aurora {
        display: none;
      }
    }

    .top-spectrum-bar {
      background-size: 240% 100%;
    }

    @keyframes spectrumShift {
      from {
        background-position: 0% 50%;
      }

      to {
        background-position: 240% 50%;
      }
    }

    .site-header {
      border-bottom-color: rgba(217, 217, 217, 0.86);
    }

    .site-header::after {
      background: linear-gradient(90deg, transparent, rgba(5, 150, 105, 0.68), rgba(52, 211, 153, 0.44), transparent);
    }

    .btn-primary {
      background: var(--color-accent-bg);
      color: var(--color-accent-text);
      border-color: rgba(5, 150, 105, 0.38);
      box-shadow: 0 18px 46px rgba(5, 150, 105, 0.25), 0 0 30px rgba(52, 211, 153, 0.10);
    }

    .btn-primary:hover {
      background: var(--color-accent-hover-bg);
      color: var(--color-accent-hover-text);
      border-color: rgba(255, 255, 255, 0.24);
      box-shadow: 0 20px 52px rgba(4, 120, 87, 0.34), 0 0 36px rgba(52, 211, 153, 0.16);
    }

    .btn-primary:active {
      background: var(--color-accent-active-bg);
    }

    .btn-secondary:hover, .cv-tab:hover, .cv-tab.is-active {
      border-color: rgba(5, 150, 105, 0.48);
      box-shadow: 0 18px 48px rgba(5, 150, 105, 0.12);
    }

    .route-link:hover, .route-link.is-active {
      background: linear-gradient(135deg, #047857, #059669);
      color: var(--color-accent-hover-text);
      box-shadow: 0 12px 30px rgba(4, 120, 87, 0.20), inset 0 0 0 1px rgba(255, 255, 255, 0.20);
    }

    .brand-mark {
      color: var(--color-dark-accent);
      border-color: rgba(110, 231, 183, 0.42);
      box-shadow: 0 0 30px rgba(5, 150, 105, 0.32);
    }

    .kicker, .tag, .tech-pill, .status-pill {
      background: linear-gradient(#D1FAE5, #D1FAE5) padding-box,
        linear-gradient(135deg, #059669, #34D399, #34D399) border-box;
      border-color: transparent;
      box-shadow: 0 12px 34px rgba(5, 150, 105, 0.10), inset 0 0 22px rgba(16, 185, 129, 0.08);
    }

    .kicker.kicker-dark,
    .scope-point strong,
    .footer-info-card strong,
    .footer-fiverr small,
    .footer-terminal-line strong,
    .diagnostic-list li::before,
    .command-line .prompt,
    .cursor-blink,
    .terminal-code .key {
      color: var(--color-dark-accent);
    }

    .cursor-blink {
      background: var(--color-dark-accent);
      box-shadow: 0 0 14px var(--color-dark-accent);
    }

    .dot {
      background: linear-gradient(135deg, rgba(10, 10, 10, 0.98), rgba(6, 45, 34, 0.92));
      box-shadow: 0 0 0 3px rgba(5, 150, 105, 0.10), 0 0 16px rgba(10, 10, 10, 0.18), inset 0 0 0 1px rgba(250, 250, 250, 0.08);
    }

    .dot::before {
      background: #10B981;
      filter: drop-shadow(0 0 7px rgba(16, 185, 129, 0.46));
    }

    .dot::after {
      background: linear-gradient(90deg, #10B981, #34D399);
      box-shadow: 0 0 10px rgba(52, 211, 153, 0.28);
    }

    .section-label::before, .service-output i, .meter-fill, .skill-fill, .stack-bar span {
      background: linear-gradient(90deg, #059669, #10B981, #34D399);
      box-shadow: 0 0 22px rgba(5, 150, 105, 0.34), 0 0 34px rgba(52, 211, 153, 0.14);
    }

    .hero-title .accent, .metric-value .suffix, .terminal-code .func {
      color: var(--color-accent-bg);
      text-shadow: 0 0 30px rgba(5, 150, 105, 0.22);
    }

    .glass::before {
      background: linear-gradient(120deg, rgba(255,255,255,0.66), transparent 28%, transparent 68%, rgba(5, 150, 105, 0.11)),
        radial-gradient(circle at top right, rgba(5, 150, 105, 0.10), transparent 18rem);
    }

    .dark-panel {
      border-color: rgba(110, 231, 183, 0.22);
      background: radial-gradient(circle at top left, rgba(5, 150, 105, 0.20), transparent 22rem),
        radial-gradient(circle at bottom right, rgba(52, 211, 153, 0.12), transparent 20rem),
        linear-gradient(145deg, rgba(10, 10, 10, 0.985), rgba(6, 45, 34, 0.96));
    }

    .contact-banner::before, .map-module::before {
      background: radial-gradient(circle at 18% 18%, rgba(5, 150, 105, 0.24), transparent 26rem),
        radial-gradient(circle at 86% 38%, rgba(52, 211, 153, 0.16), transparent 24rem),
        linear-gradient(120deg, rgba(250, 250, 250, 0.06), transparent 42%, rgba(16, 185, 129, 0.08));
    }

    .cursor-ring {
      border-color: rgba(5, 150, 105, 0.62);
      background: radial-gradient(circle, rgba(5, 150, 105, 0.08), transparent 68%);
      box-shadow: 0 0 0 1px rgba(250, 250, 250, 0.40) inset, 0 0 28px rgba(5, 150, 105, 0.18);
    }

    .cursor-core {
      background: var(--color-accent-bg);
      box-shadow: 0 0 18px var(--color-accent-bg);
    }

    .cursor-line-x, .cursor-line-y {
      background: rgba(5, 150, 105, 0.52);
    }

    .cursor-label {
      border-color: rgba(5, 150, 105, 0.30);
      color: var(--color-dark-accent);
    }

    .cursor-hud.is-interactive .cursor-ring {
      border-color: rgba(52, 211, 153, 0.70);
      background: radial-gradient(circle, rgba(5, 150, 105, 0.16), transparent 70%);
      box-shadow: 0 0 0 1px rgba(5, 150, 105, 0.18) inset, 0 0 34px rgba(5, 150, 105, 0.30);
    }

    .cursor-hud.is-interactive .cursor-core {
      background: var(--color-highlight);
      box-shadow: 0 0 20px rgba(52, 211, 153, 0.55);
    }

    .cursor-hud.is-field .cursor-ring {
      border-color: rgba(5, 150, 105, 0.82);
    }

    .social-row a:hover {
      color: var(--color-accent-text);
      border-color: rgba(110, 231, 183, 0.42);
    }

    body::before {
      display: none;
    }

    .top-spectrum-bar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 9998;
      height: 5px;
      pointer-events: none;
      background: transparent;
      box-shadow: none;
      animation: none;
    }

    .progress-bar {
      top: 0;
      z-index: 10000;
      height: 5px;
      width: 100%;
      background: var(--rgb-top-gradient);
      background-size: 100% 100%;
      box-shadow: var(--rgb-progress-shadow);
      opacity: 0.88;
      animation: none;
      clip-path: inset(0 100% 0 0);
      will-change: clip-path;
    }

    @keyframes rgbBarFlow {
      from {
        background-position: 0% 50%;
      }

      to {
        background-position: -100% 50%;
      }
    }

    .stack-bar span,
    .skill-fill,
    .meter-fill,
    .service-output i,
    .scope-step-card i,
    .scope-orbit::before,
    .scope-orbit::after,
    .node-map::before {
      background: var(--rgb-loop-gradient);
      background-size: 200% 100%;
      box-shadow: var(--rgb-progress-shadow);
      animation: rgbBarFlow 7.2s linear infinite;
    }

    .section-label::before {
      content: "</>";
      display: grid;
      place-items: center;
      width: 38px;
      height: 22px;
      flex: 0 0 38px;
      border: 1px solid rgba(16, 185, 129, 0.48);
      border-radius: 8px;
      background: linear-gradient(135deg, rgba(10, 10, 10, 0.94), rgba(6, 45, 34, 0.88));
      color: #10B981;
      box-shadow: inset 0 0 0 1px rgba(250, 250, 250, 0.06), 0 0 18px rgba(16, 185, 129, 0.14), 0 0 24px rgba(22, 101, 52, 0.08);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.62rem;
      font-weight: 950;
      letter-spacing: -0.08em;
      line-height: 1;
    }

    .cursor-hud.is-interactive .cursor-label {
      opacity: 0;
      transform: translate(-50%, -42%);
    }

    .cursor-hud.is-interactive.has-label .cursor-label {
      opacity: 1;
      transform: translate(-50%, -50%);
    }

    .floating-chip {
      pointer-events: none;
    }

    .metric-card::after {
      display: none;
    }

    .identity-lab {
      position: relative;
      isolation: isolate;
    }

    .identity-lab::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      background: radial-gradient(circle at 18% 18%, rgba(16, 185, 129, 0.08), transparent 18rem),
        radial-gradient(circle at 90% 72%, rgba(22, 101, 52, 0.055), transparent 20rem),
        linear-gradient(135deg, transparent 0 62%, rgba(16, 185, 129, 0.045) 62% 62.35%, transparent 62.35%),
        linear-gradient(45deg, transparent 0 38%, rgba(16, 185, 129, 0.08) 38% 38.35%, transparent 38.35%);
      opacity: 0.9;
    }

    .identity-lab::after {
      content: "";
      position: absolute;
      inset: 24px;
      z-index: 0;
      pointer-events: none;
      border: 1px solid rgba(16, 185, 129, 0.10);
      border-radius: 30px;
      box-shadow: inset 0 0 48px rgba(16, 185, 129, 0.025), inset 0 0 72px rgba(22, 101, 52, 0.018);
      opacity: 0.86;
    }

    .identity-grid {
      position: relative;
      z-index: 1;
    }

    .identity-panel {
      position: relative;
      overflow: hidden;
    }

    .identity-panel::after {
      position: absolute;
      right: clamp(18px, 4vw, 48px);
      bottom: clamp(18px, 4vw, 42px);
      padding: 12px 14px;
      border: 1px solid rgba(16, 185, 129, 0.14);
      border-radius: 14px;
      background: rgba(10, 10, 10, 0.06);
      color: rgba(10, 10, 10, 0.36);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.72rem;
      font-weight: 850;
      line-height: 1.6;
      pointer-events: none;
    }

    .portrait-logo-mock {
      position: absolute;
      left: 50%;
      z-index: 2;
      transform: translate(-50%, -50%);
      border-radius: 50%;
    }

    .portrait-stage::after {
      pointer-events: none;
    }

    .fiverr-card::after {
      display: none;
    }

    .fiverr-card:hover::after {
      transform: none;
      opacity: 0;
    }

    .contact-banner-visual {
      background: radial-gradient(circle at 50% 24%, rgba(16, 185, 129, 0.11), transparent 17rem),
        radial-gradient(circle at 82% 74%, rgba(22, 101, 52, 0.07), transparent 15rem),
        linear-gradient(145deg, rgba(250, 250, 250, 0.08), rgba(10, 10, 10, 0.68));
    }

    .contact-banner-visual::before {
      opacity: 0.58;
      background: linear-gradient(rgba(16, 185, 129, 0.065) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.065) 1px, transparent 1px),
        radial-gradient(circle at 50% 44%, rgba(22, 101, 52, 0.08), transparent 15rem);
      background-size: 26px 26px, 26px 26px, auto;
      animation: none;
    }

    .scope-orbit {
      aspect-ratio: 1;
      top: 43%;
      width: 222px;
      border-radius: 30px;
      border: 1px solid rgba(16, 185, 129, 0.20);
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.055), transparent 46%, rgba(22, 101, 52, 0.055)),
        repeating-linear-gradient(90deg, rgba(250, 250, 250, 0.07) 0 1px, transparent 1px 18px);
      box-shadow: inset 0 0 34px rgba(16, 185, 129, 0.035), 0 0 36px rgba(16, 185, 129, 0.07);
      animation: none;
    }

    .scope-orbit::before, .scope-orbit::after {
      width: 42px;
      height: 3px;
      border-radius: 999px;
    }

    .scope-orbit::before {
      top: 26px;
      left: 22px;
    }

    .scope-orbit::after {
      right: 22px;
      bottom: 27px;
    }

    .scope-core {
      top: 43%;
      border-radius: 24px;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(16, 185, 129, 0.10), rgba(22, 101, 52, 0.07)),
        rgba(10, 10, 10, 0.82);
      box-shadow: 0 0 52px rgba(16, 185, 129, 0.10), 0 0 72px rgba(22, 101, 52, 0.055);
    }

    .scope-core::before {
      content: "";
      position: absolute;
      inset: 12px;
      border: 1px solid rgba(16, 185, 129, 0.16);
      border-radius: 16px;
      pointer-events: none;
    }

    .scope-step-card {
      background: rgba(10, 10, 10, 0.70);
      box-shadow: inset 0 0 28px rgba(16, 185, 129, 0.025);
    }

    .node-map {
      border: 1px solid rgba(110, 231, 183, 0.18);
      background: radial-gradient(circle at 18% 26%, rgba(16, 185, 129, 0.08), transparent 12rem),
        radial-gradient(circle at 82% 65%, rgba(22, 101, 52, 0.06), transparent 12rem),
        linear-gradient(rgba(16, 185, 129, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.055) 1px, transparent 1px),
        rgba(250, 250, 250, 0.035);
      background-size: auto, auto, 28px 28px, 28px 28px, auto;
      box-shadow: inset 0 0 38px rgba(16, 185, 129, 0.025);
    }

    .node-map::after {
      left: 14%;
      top: 16%;
      width: 72%;
      height: 68%;
      border: 1px solid rgba(16, 185, 129, 0.12);
      border-radius: 24px;
      background: none;
      transform: none;
      opacity: 0.7;
    }

    .node {
      z-index: 2;
      width: auto;
      min-width: 82px;
      height: 42px;
      padding: 0 12px;
      border-radius: 14px;
      border-color: rgba(16, 185, 129, 0.18);
      background: rgba(10, 10, 10, 0.88);
      box-shadow: 0 0 24px rgba(16, 185, 129, 0.08), inset 0 0 18px rgba(250, 250, 250, 0.035);
    }

    .node.n4 {
      transform: translateX(-50%);
    }

    .faq-question .plus {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 1.24rem;
      font-weight: 950;
      padding-bottom: 2px;
    }

    .faq-item.is-open .plus {
      transform: none;
      background: var(--color-accent-bg);
      color: var(--color-accent-text);
    }

    .contact-form.glass::before, .contact-card.glass::before {
      display: none;
    }

    .map-frame-wrap::after {
      display: none;
    }

    .site-footer {
      background: linear-gradient(rgba(110, 231, 183, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 231, 183, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 18% 12%, rgba(5, 150, 105, 0.18), transparent 20rem),
        radial-gradient(circle at 82% 30%, rgba(52, 211, 153, 0.13), transparent 26rem),
        linear-gradient(145deg, #080808, #0A0A0A 52%, #07151A);
      background-size: 42px 42px, 42px 42px, auto, auto, auto;
    }

    .footer-network {
      opacity: 0.92;
    }

    .footer-aurora {
      opacity: 0.30;
      background: radial-gradient(circle at 18% 22%, rgba(5, 150, 105, 0.12), transparent 22rem),
        radial-gradient(circle at 82% 64%, rgba(16, 185, 129, 0.045), transparent 26rem),
        radial-gradient(circle at 52% 42%, rgba(22, 101, 52, 0.035), transparent 30rem);
      animation: none;
      transform: none;
    }

    .footer-signal {
      display: none;
    }

    .social-row a {
      width: 44px;
      min-height: 44px;
      padding: 0;
      border-radius: 14px;
    }

    .social-row a svg {
      width: 24px;
      height: 24px;
      fill: currentColor;
    }

    .social-row a:hover {
      background: linear-gradient(135deg, #059669, #10B981, #34D399);
    }

    @media (max-width: 560px) {
      .portrait-logo-mock {
        width: 138px;
        height: 138px;
        top: 38%;
      }

      .node {
        min-width: 68px;
        height: 38px;
        font-size: 0.66rem;
      }
    }

    .fiverr-card {
      transition: transform 520ms cubic-bezier(.16,.72,.2,1),
        border-color 420ms var(--ease-out),
        box-shadow 420ms var(--ease-out);
    }

    .fiverr-card:hover {
      transform: translateY(-4px);
      box-shadow: 0 26px 72px rgba(10, 10, 10, 0.14);
    }

    .fiverr-card::after, .fiverr-card:hover::after {
      display: none !important;
      opacity: 0 !important;
      transform: none !important;
    }

    .fiverr-card .service-output {
      border-top: 0;
      padding-top: 0;
      margin-top: 20px;
    }

    .btn-secondary {
      background: rgba(255, 255, 255, 0.78);
      border-color: rgba(217, 217, 217, 0.92);
    }

    .btn-secondary::before {
      z-index: 0;
      background: linear-gradient(110deg, transparent 0 34%, rgba(10, 10, 10, 0.045) 43%, rgba(5, 150, 105, 0.16) 52%, rgba(10, 10, 10, 0.045) 61%, transparent 72% 100%);
    }

    .btn-secondary:hover {
      background: rgba(238, 238, 238, 0.96);
      border-color: rgba(5, 150, 105, 0.46);
      color: var(--color-text);
      box-shadow: 0 16px 42px rgba(10, 10, 10, 0.075), 0 0 22px rgba(5, 150, 105, 0.10);
    }

    .btn-secondary:active {
      background: rgba(229, 229, 229, 0.98);
    }

    .tilt-live::before {
      background: radial-gradient(circle at var(--tilt-glow-x) var(--tilt-glow-y), rgba(16, 185, 129, 0.105), transparent 22rem),
        linear-gradient(120deg, transparent 22%, rgba(255, 255, 255, 0.04), transparent 56%);
      transition: opacity 300ms var(--ease-out);
    }

    .tilt-live.is-tilting {
      box-shadow: 0 34px 92px rgba(10, 10, 10, 0.24), 0 16px 48px rgba(5, 150, 105, 0.16), inset 0 1px 0 rgba(250, 250, 250, 0.07);
    }

    .tilt-live.is-tilting::before {
      opacity: 0.58;
    }

    .identity-panel::after {
      white-space: pre;
      display: none !important;
      content: none !important;
    }

    .portrait-stage {
      display: grid;
      place-items: center;
      background: radial-gradient(circle at 50% 29%, rgba(16, 185, 129, 0.13), transparent 18rem),
        radial-gradient(circle at 18% 80%, rgba(5, 150, 105, 0.20), transparent 18rem),
        linear-gradient(145deg, rgba(10, 10, 10, 0.98), rgba(20, 35, 31, 0.94) 48%, rgba(6, 95, 70, 0.92));
    }

    .portrait-stage::before {
      background: linear-gradient(rgba(16, 185, 129, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 50% 36%, transparent 0 26%, rgba(16, 185, 129, 0.085) 26.4% 26.8%, transparent 27.2%),
        linear-gradient(135deg, transparent 0 42%, rgba(110, 231, 183, 0.09) 42% 42.2%, transparent 42.4%);
      background-size: 30px 30px, 30px 30px, auto, auto;
      mask-image: linear-gradient(to bottom, rgba(0,0,0,0.95), rgba(0,0,0,0.72) 70%, transparent 100%);
      opacity: 1;
    }

    .portrait-stage::after {
      inset: 30px;
      border-radius: 34px;
      border-color: rgba(16, 185, 129, 0.14);
      background: linear-gradient(90deg, transparent 0 18%, rgba(16, 185, 129, 0.08) 18% 18.35%, transparent 18.7% 81%, rgba(16, 185, 129, 0.10) 81% 81.35%, transparent 81.7%),
        linear-gradient(180deg, rgba(250, 250, 250, 0.055), transparent 35%, rgba(10, 10, 10, 0.16));
      box-shadow: inset 0 0 54px rgba(16, 185, 129, 0.035), inset 0 0 70px rgba(16, 185, 129, 0.05), 0 0 0 1px rgba(250, 250, 250, 0.035);
    }

    .portrait-logo-mock {
      top: 38%;
      border-color: rgba(110, 231, 183, 0.46);
    }

    .portrait-meta {
      left: 34px;
      right: 34px;
      bottom: 34px;
      padding: 23px;
      border-color: rgba(16, 185, 129, 0.15);
      border-radius: 26px;
      background: rgba(10, 10, 10, 0.72);
      box-shadow: inset 0 1px 0 rgba(250, 250, 250, 0.08), 0 22px 54px rgba(0, 0, 0, 0.16);
    }

    .portrait-meta::before {
      margin-bottom: 10px;
      padding: 5px 8px;
      border: 1px solid rgba(110, 231, 183, 0.20);
      border-radius: 999px;
      color: var(--color-dark-accent);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 0.64rem;
      font-weight: 950;
      letter-spacing: 0.10em;
    }

    .contact-hero-header {
      max-width: none;
      grid-template-columns: minmax(0, 1fr) minmax(340px, 496px);
      align-items: center;
      gap: clamp(28px, 5vw, 64px);
      margin-bottom: 46px;
    }

    .contact-hero-copy {
      display: grid;
      gap: 17px;
      max-width: 920px;
    }

    .contact-hero-visual {
      width: 100%;
      min-height: 412px;
      border-radius: 36px;
      align-self: center;
    }

    .contact-hero-visual .scope-orbit::before {
      display: none;
    }

    .contact-hero-visual .scope-step-card {
      left: 28px;
      right: 28px;
      bottom: 28px;
    }

    @media (max-width: 1160px) {
      .contact-hero-header {
        grid-template-columns: 1fr;
      }

      .contact-hero-visual {
        max-width: 580px;
      }
    }

    @media (max-width: 560px) {
      .contact-hero-visual {
        min-height: 360px;
      }

      .contact-hero-visual .scope-step-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
      }
    }

    :root {
      --color-bg: #FFFFFF;
      --color-text: #0A0A0A;
      --color-accent-bg: #059669;
      --color-accent-text: #FFFFFF;
      --color-accent-hover-bg: #047857;
      --color-accent-hover-text: #FFFFFF;
      --color-accent-active-bg: #065F46;
      --color-accent-soft-bg: #D1FAE5;
      --color-accent-soft-border: #86EFAC;
      --color-focus-ring: #10B981;
      --color-surface: #FFFFFF;
      --color-surface-alt: #F2F2F2;
      --color-border: #D9D9D9;
      --color-text-muted: #526463;
      --color-disabled-bg: #E5E5E5;
      --color-disabled-text: #737373;
      --color-dark-bg: #0A0A0A;
      --color-dark-text: #FFFFFF;
      --color-dark-accent: #10B981;
      --color-highlight: #34D399;
      --color-success: #0F6B5A;
      --color-success-bg: #E1F6EE;
      --color-warning: #7A4D00;
      --color-warning-bg: #FFF1C2;
      --color-error: #B3261E;
      --color-error-bg: #FDE7E5;
      --color-accent-strong: #10B981;
      --color-accent-electric: #34D399;
      --color-accent-violet: #064E3B;
      --color-accent-hot: #A7F3D0;
      --accent-gradient: linear-gradient(135deg, #059669 0%, #10B981 44%, #34D399 100%);
      --accent-gradient-soft: linear-gradient(135deg, rgba(5, 150, 105, 0.22), rgba(16, 185, 129, 0.16), rgba(52, 211, 153, 0.14));
      --accent-glow: 0 0 0 1px rgba(5, 150, 105, 0.28), 0 22px 64px rgba(5, 150, 105, 0.24), 0 0 48px rgba(52, 211, 153, 0.16);
      --accent-glow-strong: 0 18px 52px rgba(5, 150, 105, 0.34), 0 0 58px rgba(52, 211, 153, 0.24);
      --container: 1220px;
      --header-height: 82px;
      --radius-xs: 8px;
      --radius-sm: 14px;
      --radius-md: 22px;
      --radius-lg: 34px;
      --radius-xl: 46px;
      --shadow-soft: 0 20px 60px rgba(10, 10, 10, 0.10);
      --shadow-panel: 0 34px 100px rgba(10, 10, 10, 0.16);
      --shadow-glow: 0 0 46px rgba(5, 150, 105, 0.28);
      --ease-out: cubic-bezier(.2,.8,.2,1);
      --ease-snap: cubic-bezier(.18,.86,.24,1);
      --rgb-loop-gradient: linear-gradient(90deg, #52BCC6 0%, #687ECA 8%, #9262B8 16%, #BA6591 24%, #7DAE84 32%, #CCAB53 42%, #52BCC6 50%, #687ECA 58%, #9262B8 66%, #BA6591 74%, #7DAE84 82%, #CCAB53 92%, #52BCC6 100%);
      --rgb-progress-shadow: 0 0 16px rgba(82, 188, 198, 0.28), 0 0 28px rgba(146, 98, 184, 0.18), 0 0 36px rgba(125, 174, 132, 0.12);
      --rgb-top-gradient: linear-gradient(90deg,
        rgba(82, 188, 198, 0.82) 0%,
        rgba(104, 126, 202, 0.82) 10%,
        rgba(146, 98, 184, 0.82) 20%,
        rgba(186, 101, 145, 0.82) 31%,
        rgba(125, 174, 132, 0.82) 41%,
        rgba(204, 171, 83, 0.82) 50%,
        rgba(125, 174, 132, 0.82) 59%,
        rgba(186, 101, 145, 0.82) 69%,
        rgba(146, 98, 184, 0.82) 80%,
        rgba(104, 126, 202, 0.82) 90%,
        rgba(82, 188, 198, 0.82) 100%);
    }

    .window-dots i {
      opacity: 0.42;
      transform-origin: center;
      animation: typingDot 1.24s ease-in-out infinite;
    }

    .window-dots i:nth-child(2) {
      animation-delay: 0.16s;
    }

    .window-dots i:nth-child(3) {
      animation-delay: 0.32s;
    }

    @keyframes typingDot {
      0%, 68%, 100% {
        opacity: 0.42;
        transform: translateY(0) scale(0.78);
      }

      30% {
        opacity: 1;
        transform: translateY(-2px) scale(1.08);
      }
    }

    .python-glyph {
      display: flex;
      align-items: center;
      justify-content: center;
      line-height: 1;
      letter-spacing: -0.075em;
      padding-left: 0.075em;
      text-align: center;
    }

    .python-glyph.python-glyph--word {
      font-size: clamp(1.35rem, 3vw, 1.9rem);
      letter-spacing: -0.055em;
      padding-inline: 0.2em;
    }

    .portrait-logo-mock {
      width: min(268px, 58vw);
      height: min(268px, 58vw);
    }

    .footer-actions .footer-contact-button {
      width: auto;
      min-height: 50px;
      padding: 0 22px;
      border-radius: 999px;
      background: rgba(250, 250, 250, 0.08);
      color: var(--color-dark-text);
      border-color: rgba(110, 231, 183, 0.24);
      font-weight: 940;
      letter-spacing: -0.02em;
    }

    .footer-actions .footer-contact-button:hover {
      background: var(--accent-gradient);
      color: var(--color-accent-text);
      border-color: rgba(110, 231, 183, 0.54);
      box-shadow: var(--accent-glow);
    }

    @media (max-width: 680px) {
      :root {
        --header-height: 74px;
      }

      body {
        overflow-x: hidden;
      }

      .container {
        width: min(100% - 28px, var(--container));
      }

      .site-header, .nav {
        min-height: var(--header-height);
      }

      .nav {
        gap: 12px;
      }

      .brand {
        min-width: 0;
        gap: 10px;
      }

      .brand-mark {
        width: 40px;
        height: 40px;
        border-radius: 14px;
        font-size: 0.82rem;
        flex: 0 0 40px;
      }

      .brand-text {
        min-width: 0;
        font-size: 0.96rem;
        line-height: 1.05;
      }

      .brand-text small {
        max-width: 176px;
        overflow: visible;
        text-overflow: clip;
        white-space: normal;
        line-height: 1.08;
      }

      .menu-toggle {
        width: 42px;
        height: 42px;
        border-radius: 14px;
      }

      .mobile-panel {
        top: calc(var(--header-height) + 10px);
        left: 14px;
        right: 14px;
      }

      .section, .section.tight {
        padding: 62px 0;
      }

      .section-header {
        gap: 14px;
        margin-bottom: 32px;
      }

      .section-label {
        gap: 8px;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
      }

      .section-label::before {
        width: 34px;
        height: 20px;
        flex-basis: 34px;
        font-size: 0.56rem;
      }

      .section-title {
        font-size: clamp(2.35rem, 12vw, 3.75rem);
        line-height: 0.96;
        letter-spacing: -0.078em;
      }

      .section-copy {
        font-size: 0.98rem;
      }

      .hero {
        padding: 46px 0 64px;
      }

      .hero-grid {
        gap: 38px;
      }

      .hero-title {
        margin-top: 18px;
        font-size: clamp(3.05rem, 16.4vw, 4.7rem);
        line-height: 0.89;
        letter-spacing: -0.092em;
      }

      .hero-copy {
        margin-top: 22px;
        font-size: 1rem;
      }

      .hero-actions {
        gap: 12px;
        margin-top: 28px;
      }

      .hero-actions .btn, .contact-banner-actions .btn {
        width: 100%;
      }

      .command-line {
        width: 100%;
        border-radius: 22px;
        font-size: 0.76rem;
        line-height: 1.45;
      }

      .metric-card {
        min-height: auto;
        padding: 18px;
        border-radius: 20px;
      }

      .hero-console {
        width: 100%;
      }

      .console-shell {
        min-height: 520px;
        border-radius: 34px;
      }

      .console-topbar {
        top: 18px;
        left: 16px;
        right: 16px;
        min-height: 48px;
        padding: 0 12px;
      }

      .console-title {
        font-size: 0.62rem;
      }

      .window-dots {
        gap: 6px;
      }

      .window-dots i {
        width: 8px;
        height: 8px;
      }

      .orbital-wrap {
        inset: 82px 12px 160px;
      }

      .orbital-core {
        width: min(286px, 82vw);
      }

      .python-glyph {
        width: 134px;
        height: 134px;
        border-radius: 38px;
        font-size: 2.5rem;
      }

      .satellite {
        width: 74px;
        height: 34px;
        font-size: 0.64rem;
      }

      .live-stack {
        left: 16px;
        right: 16px;
        bottom: 18px;
        padding: 16px;
        border-radius: 24px;
      }

      .stack-row {
        grid-template-columns: 78px minmax(0, 1fr) auto;
        gap: 9px;
        font-size: 0.7rem;
      }

      .stack-row output {
        grid-column: auto;
      }

      .identity-grid,
      .bio-grid,
      .paper-grid,
      .faq-grid,
      .contact-grid,
      .footer-layout,
      .map-module {
        grid-template-columns: 1fr;
      }

      .identity-lab,
      .paper-card,
      .paper-diagram,
      .map-module,
      .contact-hero-visual,
      .footer-left,
      .footer-fiverr {
        border-radius: 30px;
      }

      .portrait-stage {
        min-height: 620px;
      }

      .portrait-stage::after {
        inset: 20px;
        border-radius: 26px;
      }

      .portrait-logo-mock {
        top: 37%;
        width: min(232px, 66vw);
        height: min(232px, 66vw);
      }

      .portrait-meta {
        left: 22px;
        right: 22px;
        bottom: 22px;
        padding: 18px;
        border-radius: 22px;
      }

      .identity-panel,
      .bio-card,
      .system-map,
      .paper-card,
      .paper-diagram,
      .faq-console,
      .contact-form,
      .contact-card,
      .map-module,
      .footer-left,
      .footer-fiverr {
        padding: 22px;
      }

      .terminal-card {
        padding: 18px;
        border-radius: 22px;
      }

      .terminal-code {
        font-size: 0.78rem;
        line-height: 1.65;
      }

      .stack-cloud, .service-tags, .social-row {
        gap: 8px;
      }

      .fiverr-card {
        min-height: auto;
        padding: 22px;
        border-radius: 28px;
      }

      .service-index {
        margin-bottom: 18px;
      }

      .service-index strong {
        width: 44px;
        height: 44px;
        border-radius: 15px;
      }

      .availability-grid,
      .paper-stats,
      .form-grid,
      .cert-grid,
      .scope-points,
      .footer-contact-grid {
        grid-template-columns: 1fr;
      }

      .cv-tabs {
        grid-template-columns: 1fr;
      }

      .cv-tab {
        min-height: 52px;
      }

      .timeline-item {
        grid-template-columns: 1fr;
        gap: 10px;
        padding: 18px;
      }

      .skill-row {
        grid-template-columns: 1fr auto;
        gap: 10px;
        padding: 16px;
      }

      .skill-track {
        grid-column: 1 / -1;
      }

      .cert-card {
        padding: 20px;
      }

      .pipeline-step {
        grid-template-columns: 46px 1fr;
        gap: 10px;
        padding: 14px;
      }

      .faq-question {
        align-items: flex-start;
        padding: 18px;
        gap: 12px;
      }

      .faq-question .plus {
        width: 32px;
        height: 32px;
        font-size: 1.1rem;
      }

      .faq-answer p {
        padding: 0 18px 20px;
      }

      .contact-hero-header {
        gap: 28px;
      }

      .contact-hero-visual {
        min-height: 376px;
      }

      .contact-hero-visual .scope-orbit {
        width: min(214px, 70vw);
      }

      .scope-core {
        width: 104px;
        height: 104px;
        border-radius: 22px;
      }

      .scope-step-card {
        left: 18px;
        right: 18px;
        bottom: 18px;
        padding: 14px;
      }

      .scope-step-card span {
        grid-template-columns: auto 1fr;
        gap: 8px;
        font-size: 0.68rem;
      }

      .scope-step-card i {
        grid-column: 1 / -1;
        width: 100%;
      }

      .contact-submit {
        align-items: stretch;
        flex-direction: column;
      }

      .contact-submit .btn {
        width: 100%;
      }

      .map-frame-wrap, .map-frame-wrap iframe {
        min-height: 340px;
      }

      .footer-terminal-line {
        border-radius: 22px;
      }

      .social-row {
        align-items: center;
      }

      .footer-actions .footer-contact-button {
        flex: 1 1 180px;
      }
    }

    @media (max-width: 420px) {
      .brand-text small {
        max-width: 126px;
      }

      .section-title {
        font-size: clamp(2.12rem, 13vw, 3.15rem);
      }

      .hero-title {
        font-size: clamp(2.72rem, 16vw, 3.75rem);
      }

      .console-shell {
        min-height: 500px;
      }

      .orbital-core {
        width: min(250px, 82vw);
      }

      .python-glyph {
        width: 118px;
        height: 118px;
        border-radius: 34px;
        font-size: 2.18rem;
      }

      .satellite.s1, .satellite.s4 {
        display: none;
      }

      .portrait-stage {
        min-height: 560px;
      }

      .portrait-logo-mock {
        width: min(214px, 70vw);
        height: min(214px, 70vw);
      }

      .contact-hero-visual {
        min-height: 350px;
      }

      .footer-brand {
        font-size: clamp(1.5rem, 10vw, 2.35rem);
      }
    }

    .route-link {
      position: relative;
      isolation: isolate;
      overflow: hidden;
    }

    .route-link::before {
      content: "";
      position: absolute;
      inset: -1px;
      z-index: 0;
      pointer-events: none;
      background: linear-gradient(110deg, transparent, rgba(255, 255, 255, 0.55), transparent);
      transform: translateX(-112%);
      transition: transform 700ms var(--ease-out);
    }

    .route-link:hover::before {
      transform: translateX(112%);
    }

    .route-link:hover,
    .route-link.is-active,
    .site-header .btn-primary:hover,
    .site-header .btn-primary.is-active,
    .mobile-panel .btn-primary:hover,
    .mobile-panel .btn-primary.is-active {
      background: var(--accent-gradient);
      color: var(--color-accent-text);
      border-color: rgba(110, 231, 183, 0.54);
      box-shadow: var(--accent-glow);
    }

    .route-link:hover {
      transform: translateY(-2px);
    }

    .route-link.is-active {
      transform: none;
    }

    .btn-secondary::before {
      mix-blend-mode: multiply;
      opacity: 1;
      pointer-events: none;
      transition: transform 700ms var(--ease-out);
    }

    .btn-secondary:hover::before {
      opacity: 1;
      transform: translateX(112%);
    }

    body.cursor-enabled .map-frame-wrap, body.cursor-enabled .map-frame-wrap * {
      cursor: auto !important;
    }

    .node-map {
      min-height: 224px;
    }

    .node-map::before {
      left: 8%;
      right: 8%;
      top: 50%;
      width: auto;
      height: 3px;
      transform: none;
      opacity: 0.68;
      background: var(--rgb-loop-gradient);
      background-size: 200% 100%;
      box-shadow: var(--rgb-progress-shadow);
      animation: rgbBarFlow 7.2s linear infinite;
    }

    .node-map::after {
      display: none;
    }

    .node {
      transform: translateX(-50%);
    }

    .node.n1 {
      left: 12%;
      top: calc(50% - 72px);
    }

    .node.n2 {
      left: 38%;
      top: calc(50% + 30px);
      color: #34D399;
    }

    .node.n3 {
      left: 64%;
      right: auto;
      top: calc(50% - 72px);
      color: #10B981;
    }

    .node.n4 {
      left: 88%;
      right: auto;
      bottom: auto;
      top: calc(50% + 30px);
      color: #6EE7B7;
    }

    .pipeline::before {
      display: none;
    }

    .pipeline-step i {
      position: relative;
      z-index: 2;
    }

    @media (max-width: 680px) {
      .node-map {
        min-height: 338px;
      }

      .node-map::before {
        left: 50%;
        right: auto;
        top: 34px;
        bottom: 34px;
        width: 3px;
        height: auto;
        transform: translateX(-50%);
      }

      .node {
        min-width: 78px;
      }

      .node.n1 {
        left: calc(50% - 18px);
        top: 8%;
        transform: translateX(-100%);
      }

      .node.n2 {
        left: calc(50% + 18px);
        top: 32%;
        transform: none;
      }

      .node.n3 {
        left: calc(50% - 18px);
        right: auto;
        top: 56%;
        transform: translateX(-100%);
      }

      .node.n4 {
        left: calc(50% + 18px);
        right: auto;
        top: 80%;
        bottom: auto;
        transform: none;
      }
    }

    .metric-card.glass,
    .fiverr-card.glass,
    .bio-card.glass,
    .cv-side.glass,
    .cv-panel.glass,
    .paper-card.glass,
    .faq-item.glass {
      background: var(--color-surface);
      box-shadow: var(--shadow-soft);
      backdrop-filter: none;
    }

    .metric-card.glass::before,
    .fiverr-card.glass::before,
    .bio-card.glass::before,
    .cv-side.glass::before,
    .cv-panel.glass::before,
    .paper-card.glass::before,
    .faq-item.glass::before {
      display: none;
    }

    .fiverr-card .service-index strong {
      width: 48px;
      border: 0;
      border-radius: 0;
      background: transparent;
      box-shadow: none;
      color: var(--color-surface);
      -webkit-text-fill-color: var(--color-surface);
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      text-shadow: none;
    }

    .fiverr-card .btn-primary,
    .footer-actions .footer-contact-button,
    .footer-fiverr .btn-primary {
      background: var(--color-accent-bg);
      color: var(--color-accent-text);
      border-color: rgba(5, 150, 105, 0.38);
      box-shadow: 0 18px 46px rgba(5, 150, 105, 0.25), 0 0 30px rgba(52, 211, 153, 0.10);
    }

    .fiverr-card .btn-primary:hover,
    .footer-actions .footer-contact-button:hover,
    .footer-fiverr .btn-primary:hover {
      background: var(--accent-gradient);
      color: var(--color-accent-text);
      border-color: rgba(110, 231, 183, 0.54);
      box-shadow: var(--accent-glow);
    }

    .footer-brand span {
      display: inline-block;
    }

    .footer-brand .footer-brand-dot {
      color: var(--color-dark-accent);
      text-shadow: 0 0 28px rgba(16, 185, 129, 0.38);
    }

    .footer-brand .footer-brand-outline {
      color: transparent;
    }

    .site-header .route-link:hover, .mobile-panel .route-link:hover {
      transform: none;
    }

    .contact-hero-visual {
      border-color: rgba(110, 231, 183, 0.24);
      background: radial-gradient(circle at top left, rgba(5, 150, 105, 0.20), transparent 22rem),
        radial-gradient(circle at bottom right, rgba(52, 211, 153, 0.12), transparent 20rem),
        linear-gradient(145deg, rgba(10, 10, 10, 0.985), rgba(6, 45, 34, 0.96));
      box-shadow: 0 28px 90px rgba(10, 10, 10, 0.25), inset 0 1px 0 rgba(250, 250, 250, 0.07);
    }

    .contact-hero-visual::before {
      opacity: 0.28;
      background: linear-gradient(rgba(16, 185, 129, 0.12) 1px, transparent 1px),
        linear-gradient(90deg, rgba(16, 185, 129, 0.12) 1px, transparent 1px);
      background-size: 34px 34px;
      mask-image: radial-gradient(circle at 50% 38%, black, transparent 74%);
      animation: none;
    }

    .contact-hero-visual .scope-orbit {
      border-color: rgba(16, 185, 129, 0.38);
      background: radial-gradient(circle, rgba(5, 150, 105, 0.08), transparent 60%),
        transparent;
      box-shadow: inset 0 0 34px rgba(5, 150, 105, 0.04), 0 0 36px rgba(5, 150, 105, 0.08);
    }

    .contact-hero-visual .scope-core {
      border: 1px solid rgba(110, 231, 183, 0.30);
      background: radial-gradient(circle at top left, rgba(5, 150, 105, 0.34), transparent 58%),
        linear-gradient(145deg, rgba(250, 250, 250, 0.10), rgba(10, 10, 10, 0.86));
      box-shadow: 0 0 80px rgba(5, 150, 105, 0.26), inset 0 1px 0 rgba(250, 250, 250, 0.13);
      color: var(--color-dark-text);
    }

    .contact-hero-visual .scope-core::before {
      border-color: rgba(110, 231, 183, 0.24);
    }

    .contact-hero-visual .scope-step-card {
      border-color: rgba(110, 231, 183, 0.22);
      background: rgba(250, 250, 250, 0.075);
      box-shadow: none;
    }

    .fiverr-card .service-index strong {
      font-size: 2.68rem;
      letter-spacing: -0.065em;
    }

    .hero-copy-block > .kicker, .map-copy .kicker.kicker-dark {
      background: var(--color-surface) !important;
      color: var(--color-text) !important;
      border-color: rgba(5, 150, 105, 0.34) !important;
      box-shadow: 0 14px 36px rgba(10, 10, 10, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.62) !important;
      backdrop-filter: none;
    }

    .fiverr-card .service-tags {
      display: none !important;
    }

    .bio-card > .kicker, .paper-card > .kicker, .identity-panel .tech-pill {
      background: linear-gradient(135deg, rgba(209, 250, 229, 0.98), rgba(52, 211, 153, 0.34)) padding-box,
        linear-gradient(135deg, #059669, #10B981, #34D399) border-box !important;
      color: var(--color-text) !important;
      border-color: transparent !important;
      box-shadow: 0 14px 36px rgba(5, 150, 105, 0.15), inset 0 0 24px rgba(16, 185, 129, 0.14) !important;
      backdrop-filter: none;
      cursor: default;
    }

    .portrait-meta::before {
      display: none !important;
      content: none !important;
    }

    .portrait-logo-mock {
      padding: 0 !important;
      border: 0 !important;
      background: transparent !important;
      box-shadow: none !important;
      backdrop-filter: none !important;
    }

    .hero-title {
      letter-spacing: -0.084em;
    }

    .hero-title .outline {
      letter-spacing: -0.048em;
    }

    .footer-brand {
      letter-spacing: -0.052em;
    }

    .footer-brand .footer-brand-outline {
      -webkit-text-fill-color: transparent;
      -webkit-text-stroke: 1.05px rgba(250, 250, 250, 0.78);
      text-shadow: none;
      letter-spacing: -0.025em;
    }

    .availability-cell {
      border-color: rgba(5, 150, 105, 0.42);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.55), 0 12px 30px rgba(5, 150, 105, 0.10);
    }

    .availability-cell strong {
      color: var(--color-accent-bg);
      text-shadow: 0 0 18px rgba(5, 150, 105, 0.16);
    }

    .timeline-item h3, .cert-card h3 {
      color: var(--color-accent-bg);
      text-shadow: 0 0 18px rgba(5, 150, 105, 0.12);
    }

    .cv-tab i {
      border: 1px solid rgba(5, 150, 105, 0.38);
      background: var(--color-accent-bg);
      color: var(--color-accent-text);
      box-shadow: 0 10px 26px rgba(5, 150, 105, 0.18);
    }

    .cv-tab:hover i, .cv-tab.is-active i {
      background: var(--accent-gradient);
      color: var(--color-accent-text);
    }

    .paper-diagram .pipeline-step {
      isolation: isolate;
      overflow: hidden;
      background: linear-gradient(135deg, rgba(250, 250, 250, 0.09), rgba(250, 250, 250, 0.055)) !important;
      backdrop-filter: none !important;
      -webkit-backdrop-filter: none !important;
      transform: translateZ(0);
      contain: paint;
    }

    .paper-diagram .pipeline-step::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 0;
      pointer-events: none;
      border-radius: inherit;
      background: radial-gradient(circle at 18% 20%, rgba(16, 185, 129, 0.13), transparent 12rem),
        linear-gradient(120deg, rgba(250, 250, 250, 0.04), transparent 60%);
    }

    .paper-diagram .pipeline-step > * {
      position: relative;
      z-index: 1;
    }

    .faq-console .btn-primary {
      background: var(--color-accent-bg);
      color: var(--color-accent-text);
      border-color: rgba(5, 150, 105, 0.38);
      box-shadow: 0 18px 46px rgba(5, 150, 105, 0.25), 0 0 30px rgba(52, 211, 153, 0.10);
    }

    .faq-console .btn-primary:hover {
      background: var(--accent-gradient);
      color: var(--color-accent-text);
      border-color: rgba(110, 231, 183, 0.54);
      box-shadow: var(--accent-glow);
    }

    @media (max-width: 860px) {
      .mobile-panel .route-link, .mobile-panel .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        width: 100%;
        min-height: 50px;
        padding: 0 22px;
        border: 1px solid rgba(5, 150, 105, 0.38);
        border-radius: 999px;
        background: var(--color-accent-bg);
        color: var(--color-accent-text);
        box-shadow: 0 18px 46px rgba(5, 150, 105, 0.25), 0 0 30px rgba(52, 211, 153, 0.10);
        font-size: 0.94rem;
        font-weight: 940;
        letter-spacing: -0.02em;
        transform: none !important;
      }

      .mobile-panel .route-link:hover,
      .mobile-panel .route-link.is-active,
      .mobile-panel .btn:hover,
      .mobile-panel .btn.is-active {
        background: var(--accent-gradient);
        color: var(--color-accent-text);
        border-color: rgba(110, 231, 183, 0.54);
        box-shadow: var(--accent-glow);
        transform: none !important;
      }
    }

    .contact-form input, .contact-form textarea {
      background: #FFFFFF !important;
    }

    .contact-form input:focus, .contact-form textarea:focus {
      background: #FFFFFF !important;
    }

    .availability-cell {
      background: #FFFFFF !important;
    }

    .bio-card > .kicker, .paper-card > .kicker {
      background: #0A0A0A !important;
      color: #FFFFFF !important;
      border-color: rgba(110, 231, 183, 0.32) !important;
      box-shadow: 0 14px 36px rgba(10, 10, 10, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    }

    .fiverr-card .service-index {
      align-items: center !important;
    }

    .fiverr-card .service-index strong {
      height: 48px;
      display: flex !important;
      align-items: center !important;
      justify-content: center !important;
      line-height: 1 !important;
      font-weight: 1000 !important;
      -webkit-text-stroke: 5.5px var(--color-accent-bg) !important;
      paint-order: stroke fill !important;
    }

    .fiverr-card .service-index span {
      display: inline-flex !important;
      align-items: center !important;
      min-height: 48px;
    }

    .identity-panel .tech-pill {
      border-width: 2px !important;
      color: var(--color-text) !important;
      font-weight: 1000 !important;
    }

    .portrait-meta p {
      color: #FFFFFF !important;
    }

    .timeline-item {
      align-items: start !important;
    }

    .timeline-date {
      display: flex !important;
      align-items: center !important;
      min-height: 1.54rem;
      padding-top: 0 !important;
    }

    @media (max-width: 860px) {
      .mobile-panel .route-link:not(.is-active), .mobile-panel .btn-primary:not(.is-active) {
        background: #FFFFFF !important;
        color: var(--color-text) !important;
        border-color: rgba(217, 217, 217, 0.88) !important;
        box-shadow: 0 12px 30px rgba(10, 10, 10, 0.08) !important;
      }

      .mobile-panel .route-link:not(.is-active):hover,
      .mobile-panel .btn-primary:not(.is-active):hover {
        background: #FFFFFF !important;
        color: var(--color-text) !important;
        border-color: rgba(217, 217, 217, 0.88) !important;
        box-shadow: 0 12px 30px rgba(10, 10, 10, 0.08) !important;
      }

      .cursor-hud {
        display: none !important;
      }

      body.cursor-enabled,
      body.cursor-enabled a,
      body.cursor-enabled button,
      body.cursor-enabled input,
      body.cursor-enabled textarea,
      body.cursor-enabled [role="button"] {
        cursor: auto !important;
      }
    }

    .identity-panel .stack-cloud .tech-pill {
      background: #0A0A0A !important;
      color: #FFFFFF !important;
      border-color: rgba(110, 231, 183, 0.34) !important;
      box-shadow: 0 14px 36px rgba(10, 10, 10, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    }

    .contact-form.glass, .contact-card.glass {
      background: var(--color-surface) !important;
    }

    .contact-side .contact-card h3 {
      color: var(--color-accent-bg) !important;
    }

    .contact-form input,
    .contact-form textarea,
    .contact-form input:focus,
    .contact-form textarea:focus {
      background: #FFFFFF !important;
    }
  

    /* Theme variant: Deep Cyan / generated from the supplied mockup. RGB bar variables intentionally preserved. */
    body {
      background: radial-gradient(circle at 14% -6%, rgba(5, 150, 105, 0.12), transparent 31rem),
        radial-gradient(circle at 86% 4%, rgba(22, 101, 52, 0.09), transparent 30rem),
        radial-gradient(circle at 58% 38%, rgba(52, 211, 153, 0.055), transparent 36rem),
        radial-gradient(circle at 80% 64%, rgba(16, 185, 129, 0.06), transparent 26rem),
        linear-gradient(180deg, #FFFFFF, #F5F5F5 58%, #FFFFFF);
      color: #0A0A0A;
    }

    .site-header {
      background: rgba(250, 250, 250, 0.78);
      border-bottom-color: rgba(217, 217, 217, 0.86);
    }

    .glass {
      border-color: rgba(217, 217, 217, 0.86);
      background: linear-gradient(135deg, rgba(255,255,255,0.94), rgba(242,242,242,0.72)), rgba(255,255,255,0.80);
    }

    .dark-panel {
      border-color: rgba(110, 231, 183, 0.22);
      background: radial-gradient(circle at top left, rgba(5, 150, 105, 0.20), transparent 22rem),
        radial-gradient(circle at bottom right, rgba(52, 211, 153, 0.12), transparent 20rem),
        linear-gradient(145deg, rgba(10, 10, 10, 0.985), rgba(6, 45, 34, 0.96));
    }

    .btn-primary,
    .fiverr-card .btn-primary,
    .footer-actions .footer-contact-button,
    .footer-fiverr .btn-primary,
    .faq-console .btn-primary {
      background: var(--color-accent-bg);
      color: var(--color-accent-text);
      border-color: rgba(5, 150, 105, 0.40);
      box-shadow: 0 18px 46px rgba(5, 150, 105, 0.25), 0 0 30px rgba(52, 211, 153, 0.10);
    }

    .btn-primary:hover,
    .fiverr-card .btn-primary:hover,
    .footer-actions .footer-contact-button:hover,
    .footer-fiverr .btn-primary:hover,
    .faq-console .btn-primary:hover,
    .route-link:hover,
    .route-link.is-active {
      background: var(--accent-gradient);
      color: var(--color-accent-text);
      border-color: rgba(110, 231, 183, 0.54);
      box-shadow: var(--accent-glow);
    }

    .hero-title .accent,
    .metric-value .suffix,
    .terminal-code .func,
    .contact-side .contact-card h3,
    .availability-cell strong,
    .timeline-item h3,
    .cert-card h3 {
      color: var(--color-accent-bg) !important;
      text-shadow: 0 0 24px rgba(5, 150, 105, 0.16);
    }

    .bio-card > .kicker,
    .paper-card > .kicker,
    .identity-panel .stack-cloud .tech-pill {
      background: #0A0A0A !important;
      color: #FFFFFF !important;
      border-color: rgba(110, 231, 183, 0.34) !important;
      box-shadow: 0 14px 36px rgba(10, 10, 10, 0.16), inset 0 1px 0 rgba(255, 255, 255, 0.08) !important;
    }

    .hero-copy-block > .kicker,
    .map-copy .kicker.kicker-dark {
      background: #FFFFFF !important;
      color: #0A0A0A !important;
      border-color: rgba(5, 150, 105, 0.34) !important;
      box-shadow: 0 14px 36px rgba(10, 10, 10, 0.08), inset 0 0 0 1px rgba(255, 255, 255, 0.62) !important;
    }

    .site-footer {
      background: linear-gradient(rgba(110, 231, 183, 0.055) 1px, transparent 1px),
        linear-gradient(90deg, rgba(110, 231, 183, 0.055) 1px, transparent 1px),
        radial-gradient(circle at 18% 12%, rgba(5, 150, 105, 0.18), transparent 20rem),
        radial-gradient(circle at 82% 30%, rgba(52, 211, 153, 0.13), transparent 26rem),
        linear-gradient(145deg, #080808, #0A0A0A 52%, #07151A);
      background-size: 42px 42px, 42px 42px, auto, auto, auto;
    }

    .footer-brand .footer-brand-dot,
    .footer-info-card strong,
    .footer-fiverr small,
    .footer-terminal-line strong,
    .diagnostic-list li::before,
    .command-line .prompt,
    .cursor-blink,
    .terminal-code .key {
      color: var(--color-dark-accent) !important;
    }

/* Live profile image, identity terminal, and map iframe refinements */
.portrait-logo-mock,
.portrait-logo-mock.profile-image {
  top: 38%;
  width: min(370px, 62vw);
  height: min(370px, 62vw);
  max-width: calc(100% - 96px);
  max-height: calc(100% - 236px);
  border-radius: 50%;
  object-fit: cover;
  object-position: center center;
  clip-path: circle(50% at 50% 50%);
  transform: translate(-50%, -50%);
}

.identity-panel .terminal-card {
  border: 1px solid rgba(110, 231, 183, 0.22);
  background: var(--color-dark-bg);
  color: var(--color-dark-text);
  box-shadow: var(--shadow-glow);
}

.identity-panel .terminal-code code {
  color: var(--color-dark-text);
}

.identity-panel .terminal-code .comment {
  color: rgba(250, 250, 250, 0.48);
}

.identity-panel .terminal-code .string {
  color: #BBF7D0;
}

.identity-panel .terminal-code .func {
  color: var(--color-highlight);
}

.map-frame-wrap iframe {
  display: block;
  width: 100%;
  height: 100%;
  min-height: inherit;
  border: 0;
}

@media (max-width: 680px) {
  .portrait-logo-mock,
  .portrait-logo-mock.profile-image {
    top: 37%;
    width: min(300px, 72vw);
    height: min(300px, 72vw);
    max-width: calc(100% - 54px);
    max-height: calc(100% - 230px);
  }
}

@media (max-width: 420px) {
  .portrait-logo-mock,
  .portrait-logo-mock.profile-image {
    width: min(250px, 76vw);
    height: min(250px, 76vw);
  }
}


.brand-logo {
  height: auto !important;
  width: 160px !important;
}

/* Completion bars: full-width fill with check icon output. */
.stack-bar span {
  width: 0%;
  transition: width 1200ms var(--ease-snap);
}

.hero-console.is-visible .stack-bar span {
  width: var(--w);
}

.bar-check {
  display: inline-grid;
  place-items: center;
  width: 24px;
  height: 24px;
  color: var(--color-accent-bg);
  line-height: 1;
}

.stack-row .bar-check {
  color: var(--color-dark-accent);
  justify-self: end;
}

.skill-row .bar-check {
  justify-self: end;
}

.bar-check svg {
  width: 20px;
  height: 20px;
  fill: currentColor;
}

@media (max-width: 860px) {
  .stack-row output.bar-check {
    grid-column: auto;
    justify-self: end;
  }
}

.footer-business-info {
  margin-top: 10px;
}

    /* Mobile performance: disable decorative footer/profile networks and generated line grids. */
    @media (max-width: 860px), (hover: none) and (pointer: coarse) {
      .site-footer {
        background: linear-gradient(145deg, #080808, #0A0A0A 52%, #07151A) !important;
        background-size: auto !important;
      }

      .footer-network,
      .footer-aurora {
        display: none !important;
        visibility: hidden !important;
        opacity: 0 !important;
        animation: none !important;
        width: 0 !important;
        height: 0 !important;
      }

      .identity-lab::before,
      .identity-lab::after,
      .portrait-stage::before,
      .portrait-stage::after,
      .identity-panel::before,
      .identity-panel::after,
      .node-map::before,
      .node-map::after {
        content: none !important;
        display: none !important;
        animation: none !important;
      }

      .portrait-stage {
        background: linear-gradient(145deg, rgba(10, 10, 10, 0.98), rgba(20, 35, 31, 0.94) 48%, rgba(6, 95, 70, 0.92)) !important;
      }

      .system-map.dark-panel {
        background: linear-gradient(145deg, rgba(10, 10, 10, 0.985), rgba(6, 45, 34, 0.96)) !important;
      }

      .node-map {
        background: rgba(250, 250, 250, 0.035) !important;
        background-size: auto !important;
      }
    }


/* Privacy Policy route: static public legal page using the existing public visual system. */
.privacy-page {
  min-height: calc(100vh - var(--header-height));
  background:
    radial-gradient(circle at 16% 0%, rgba(16, 185, 129, 0.08), transparent 28rem),
    radial-gradient(circle at 88% 14%, rgba(14, 165, 233, 0.08), transparent 24rem);
}

.privacy-policy-hero {
  padding-top: clamp(72px, 10vw, 128px);
}

.privacy-policy-card {
  display: grid;
  gap: 24px;
  max-width: 1040px;
  padding: clamp(24px, 4vw, 42px);
  border: 1px solid rgba(110, 231, 183, 0.22);
}

.privacy-policy-content {
  display: grid;
  gap: 24px;
}

.privacy-policy-section {
  display: grid;
  gap: 10px;
  padding-bottom: 22px;
  border-bottom: 1px solid rgba(250, 250, 250, 0.08);
}

.privacy-policy-section:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.privacy-policy-section h2 {
  color: var(--color-highlight);
  font-size: clamp(1.16rem, 2vw, 1.48rem);
  line-height: 1.2;
  letter-spacing: -0.035em;
}

.privacy-policy-section p {
  max-width: 850px;
  color: rgba(250, 250, 250, 0.78);
  font-size: clamp(0.98rem, 1.4vw, 1.06rem);
  line-height: 1.72;
}

.privacy-policy-section code {
  padding: 0.08em 0.34em;
  border: 1px solid rgba(110, 231, 183, 0.18);
  border-radius: 8px;
  background: rgba(250, 250, 250, 0.06);
  color: #bbf7d0;
  font-size: 0.92em;
}

.privacy-policy-inline-button {
  display: inline;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--color-highlight);
  font: inherit;
  font-weight: 840;
  text-decoration: underline;
  cursor: pointer;
}

.privacy-policy-inline-button:hover,
.privacy-policy-inline-button:focus-visible {
  color: var(--color-dark-accent);
}

.privacy-policy-footer-layout {
  align-items: stretch;
}

@media (max-width: 680px) {
  .privacy-policy-card {
    padding: 22px;
    border-radius: 22px;
  }

  .privacy-policy-content {
    gap: 20px;
  }
}

/* Consent prompt: small first-party analytics choice UI. */
.cookie-consent {
  position: fixed;
  left: 0;
  right: 0;
  bottom: max(18px, env(safe-area-inset-bottom));
  z-index: 9500;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 16px;
  align-items: center;
  width: min(calc(100% - 36px), 920px);
  margin-inline: auto;
  padding: 18px;
  border: 1px solid rgba(16, 185, 129, 0.32);
  border-radius: var(--radius-md);
  background: linear-gradient(145deg, rgba(10, 10, 10, 0.96), rgba(7, 21, 26, 0.94));
  box-shadow: 0 22px 74px rgba(0, 0, 0, 0.28), 0 0 0 1px rgba(255, 255, 255, 0.04) inset;
  color: var(--color-dark-text);
  backdrop-filter: blur(18px);
}

.cookie-consent[hidden] {
  display: none !important;
}

.cookie-consent__text {
  display: grid;
  gap: 6px;
}

.cookie-consent__text strong {
  color: var(--color-highlight);
  font-size: 0.82rem;
  font-weight: 950;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

.cookie-consent__text p {
  max-width: 650px;
  color: rgba(255, 255, 255, 0.76);
  font-size: 0.92rem;
  line-height: 1.55;
}

.cookie-consent__actions {
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-end;
  gap: 10px;
}

.cookie-consent__button {
  min-height: 42px;
  white-space: nowrap;
}

.cookie-consent .btn-secondary {
  border-color: rgba(255, 255, 255, 0.22);
  background: rgba(255, 255, 255, 0.08);
  color: var(--color-dark-text);
}

.cookie-consent .btn-secondary:hover {
  border-color: rgba(167, 243, 208, 0.5);
  background: rgba(255, 255, 255, 0.12);
}

@media (max-width: 680px) {
  .cookie-consent {
    grid-template-columns: 1fr;
    width: min(calc(100% - 28px), 920px);
    padding: 16px;
    bottom: max(14px, env(safe-area-inset-bottom));
  }

  .cookie-consent__actions {
    justify-content: stretch;
  }

  .cookie-consent__button {
    flex: 1 1 150px;
    justify-content: center;
  }
}

/* Footer legal links: centered, subtle privacy and consent controls. */
.footer-bottom {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
  align-items: center;
}

.footer-bottom > span:first-child {
  justify-self: start;
}

.footer-bottom > span:last-child {
  justify-self: end;
  text-align: right;
}

.footer-legal-links {
  display: inline-flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px 14px;
  justify-self: center;
  text-align: center;
}

.footer-legal-links a,
.footer-legal-links button {
  border: 0;
  background: transparent;
  color: rgba(250, 250, 250, 0.66);
  font: inherit;
  text-decoration: none;
}

.footer-legal-links a:hover,
.footer-legal-links button:hover,
.footer-legal-links a:focus-visible,
.footer-legal-links button:focus-visible {
  color: var(--color-highlight);
  text-decoration: underline;
}

.footer-legal-links button {
  cursor: pointer;
}

@media (max-width: 680px) {
  .footer-bottom {
    grid-template-columns: 1fr;
    justify-items: center;
    text-align: center;
  }

  .footer-bottom > span:first-child,
  .footer-bottom > span:last-child,
  .footer-legal-links {
    justify-self: center;
    text-align: center;
  }
}
