* {
      box-sizing: border-box;
    }

    :root {
      --ink: #f5fbf7;
      --muted: #9db1a9;
      --paper: #07100e;
      --paper-2: #0d1715;
      --line: rgba(255, 255, 255, 0.13);
      --hot: #ffdc5c;
      --leaf: #72f0a3;
      --sea: #6cd6ff;
      --rose: #ff7a9a;
      --violet: #a78bfa;
      --shadow: rgba(0, 0, 0, 0.5);
      --mx: 50vw;
      --my: 50vh;
    }

    html {
      min-height: 100%;
      background: var(--paper);
      scroll-behavior: smooth;
    }

    body {
      min-height: 100vh;
      margin: 0;
      color: var(--ink);
      font-family: "Space Grotesk", ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at var(--mx) var(--my), rgba(108, 214, 255, 0.12), transparent 18rem),
        radial-gradient(circle at 82% 15%, rgba(255, 220, 92, 0.16), transparent 22rem),
        radial-gradient(circle at 12% 92%, rgba(114, 240, 163, 0.14), transparent 24rem),
        linear-gradient(145deg, #050807 0%, #07100e 42%, #15110d 100%);
      overflow-x: hidden;
    }

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

    body::before {
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px);
      background-size: 46px 46px;
      mask-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.75), transparent 82%);
    }

    body::after {
      background:
        linear-gradient(to bottom, transparent 0 50%, rgba(255, 255, 255, 0.025) 50% 100%),
        radial-gradient(circle at center, transparent 0, rgba(0, 0, 0, 0.48) 100%);
      background-size: 100% 7px, 100% 100%;
      mix-blend-mode: screen;
      opacity: 0.55;
    }

    a {
      color: inherit;
    }

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

    .skip-link {
      position: fixed;
      left: 16px;
      top: 16px;
      z-index: 20;
      transform: translateY(-150%);
      padding: 10px 12px;
      color: #07100e;
      background: var(--hot);
      border-radius: 4px;
      font-weight: 800;
      text-decoration: none;
    }

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

    .site-shell {
      position: relative;
      z-index: 2;
    }

    .cursor-glow {
      position: fixed;
      inset: 0;
      z-index: 1;
      pointer-events: none;
      background: radial-gradient(circle at var(--mx) var(--my), rgba(108, 214, 255, 0.14), rgba(114, 240, 163, 0.07) 9rem, transparent 18rem);
      opacity: 0.9;
      mix-blend-mode: screen;
    }

    .noise {
      position: fixed;
      inset: -60px;
      z-index: 0;
      pointer-events: none;
      opacity: 0.16;
      background-image:
        repeating-radial-gradient(circle at 19% 37%, rgba(255, 255, 255, 0.28) 0 1px, transparent 1px 5px),
        repeating-radial-gradient(circle at 76% 64%, rgba(255, 255, 255, 0.18) 0 1px, transparent 1px 7px);
      animation: staticDrift 12s steps(10) infinite;
    }

    .topbar {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 10;
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
      min-height: 70px;
      padding: 12px clamp(16px, 4vw, 54px);
      border-bottom: 1px solid rgba(255, 255, 255, 0.08);
      background: rgba(5, 8, 7, 0.68);
      backdrop-filter: blur(18px);
    }

    .brand {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      min-width: 0;
      width: 42px;
      height: 42px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 10px;
      background: rgba(255, 255, 255, 0.045);
      text-decoration: none;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .brand img {
      width: 34px;
      height: 34px;
      border-radius: 7px;
      object-fit: contain;
    }

.brand:hover,
.brand:focus-visible {
  transform: translateY(-2px);
  border-color: rgba(255, 220, 92, 0.44);
  background: rgba(255, 255, 255, 0.08);
  outline: none;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  color: #dffbed;
  background: rgba(255, 255, 255, 0.045);
  cursor: pointer;
}

.menu-toggle span {
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 0.2s ease, opacity 0.2s ease;
}

.menu-toggle[aria-expanded="true"] span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.menu-toggle[aria-expanded="true"] span:nth-child(2) {
  opacity: 0;
}

.menu-toggle[aria-expanded="true"] span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.nav {
  display: flex;
  gap: 6px;
      align-items: center;
      overflow-x: auto;
      scrollbar-width: none;
    }

    .nav::-webkit-scrollbar {
      display: none;
    }

    .nav a,
    .signal-link,
    .magnet-link {
      min-height: 38px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 8px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 6px;
      color: #dfece6;
      background: rgba(255, 255, 255, 0.045);
      text-decoration: none;
      font-size: 13px;
      font-weight: 750;
      line-height: 1;
      white-space: nowrap;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease;
    }

    .nav a {
      padding: 0 12px;
    }

    .nav svg {
      width: 15px;
      height: 15px;
      stroke: currentColor;
      flex: 0 0 auto;
      opacity: 0.9;
    }

    .nav a:hover,
    .nav a:focus-visible,
    .signal-link:hover,
    .signal-link:focus-visible,
    .magnet-link:hover,
    .magnet-link:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(114, 240, 163, 0.5);
      background: rgba(255, 255, 255, 0.08);
      outline: none;
    }

    .hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      grid-template-columns: minmax(0, 1fr) minmax(320px, 520px);
      align-items: center;
      align-content: center;
      gap: clamp(24px, 5vw, 74px);
      padding: 102px clamp(16px, 5vw, 72px) 40px;
      overflow: hidden;
    }

    .starfield {
      position: fixed;
      inset: 0;
      z-index: 1;
      width: 100%;
      height: 100%;
      opacity: 0.58;
      pointer-events: none;
    }

    .hero-copy {
      position: relative;
      z-index: 2;
      max-width: 900px;
      padding-top: clamp(18px, 6vh, 70px);
    }

    .kicker {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin: 0 0 22px;
      color: var(--hot);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 13px;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .kicker::before {
      content: "";
      width: 44px;
      height: 2px;
      background: linear-gradient(90deg, var(--hot), transparent);
    }

    h1 {
      max-width: 960px;
      margin: 0;
      color: #fff;
      font-family: "Bricolage Grotesque", "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(54px, 11vw, 152px);
      line-height: 0.86;
      font-weight: 800;
      letter-spacing: 0;
      text-transform: uppercase;
    }

    .split-word {
      display: block;
    }

    .split-word:nth-child(2) {
      color: transparent;
      -webkit-text-stroke: 1px rgba(255, 255, 255, 0.82);
      text-shadow: 0 0 34px rgba(108, 214, 255, 0.18);
    }

    .hero-lead {
      width: min(760px, 100%);
      margin: 28px 0 0;
      color: #cbd8d1;
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.5;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 30px;
    }

    .signal-link,
    .magnet-link {
      padding: 0 16px;
    }

    .signal-link {
      color: #07100e;
      background: linear-gradient(135deg, var(--leaf), var(--hot));
      border-color: transparent;
      box-shadow: 0 18px 54px rgba(114, 240, 163, 0.18);
    }

    .signal-link:hover,
    .signal-link:focus-visible {
      color: #07100e;
      border-color: transparent;
      background: linear-gradient(135deg, #9cf9bc, #ffe784);
    }

    .hero-note {
      position: fixed;
      left: clamp(12px, 2.5vw, 28px);
      bottom: clamp(12px, 2.5vw, 28px);
      z-index: 15;
      margin: 0;
      padding: 7px 9px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 6px;
      color: rgba(223, 251, 237, 0.78);
      background: rgba(5, 8, 7, 0.48);
      box-shadow: 0 10px 34px rgba(0, 0, 0, 0.22);
      backdrop-filter: blur(12px);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 11px;
      line-height: 1;
    }

    .quick-dock {
      position: fixed;
      right: clamp(12px, 2.5vw, 28px);
      bottom: clamp(12px, 2.5vw, 28px);
      z-index: 15;
      display: flex;
      gap: 8px;
      padding: 7px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 999px;
      background: rgba(5, 8, 7, 0.52);
      box-shadow: 0 12px 38px rgba(0, 0, 0, 0.26);
      backdrop-filter: blur(14px);
    }

    .quick-dock a {
      width: 34px;
      height: 34px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 50%;
      color: #dffbed;
      background: rgba(255, 255, 255, 0.045);
      text-decoration: none;
      transition: transform 0.2s ease, border-color 0.2s ease, background 0.2s ease, color 0.2s ease;
    }

    .quick-dock a:hover,
    .quick-dock a:focus-visible {
      transform: translateY(-2px);
      border-color: rgba(255, 220, 92, 0.5);
      background: rgba(255, 255, 255, 0.09);
      color: #fff;
      outline: none;
    }

    .quick-dock svg {
      width: 17px;
      height: 17px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
    }

    .signal-board {
      position: relative;
      z-index: 2;
      min-height: 560px;
      display: grid;
      align-items: center;
    }

    .portrait-system {
      position: relative;
      min-height: min(74vw, 560px);
      display: grid;
      place-items: center;
      isolation: isolate;
    }

    .portrait-ring,
    .portrait-ring::before,
    .portrait-ring::after {
      position: absolute;
      border-radius: 50%;
      border: 1px solid rgba(255, 255, 255, 0.14);
      pointer-events: none;
    }

    .portrait-ring {
      width: min(94vw, 540px);
      aspect-ratio: 1;
      animation: spinRight 38s linear infinite;
    }

    .portrait-ring::before,
    .portrait-ring::after {
      content: "";
      inset: 11%;
    }

    .portrait-ring::before {
      border-style: dashed;
      border-color: rgba(114, 240, 163, 0.28);
      animation: spinLeft 26s linear infinite;
    }

    .portrait-ring::after {
      inset: 24%;
      border-color: rgba(255, 220, 92, 0.34);
      animation: spinRight 18s linear infinite;
    }

    .portrait {
      position: relative;
      z-index: 2;
      width: min(62vw, 308px);
      aspect-ratio: 1;
      border-radius: 50%;
      padding: 9px;
      background:
        conic-gradient(from 120deg, var(--hot), var(--leaf), var(--sea), var(--rose), var(--hot));
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.25),
        0 36px 110px var(--shadow),
        0 0 90px rgba(114, 240, 163, 0.24);
      animation: portraitPulse 5.5s ease-in-out infinite;
    }

    .portrait::before,
    .portrait::after {
      content: "";
      position: absolute;
      inset: -18px;
      z-index: -1;
      border-radius: inherit;
      pointer-events: none;
    }

    .portrait::before {
      background: conic-gradient(from 0deg, rgba(255, 220, 92, 0.82), rgba(114, 240, 163, 0.76), rgba(108, 214, 255, 0.78), rgba(255, 122, 154, 0.64), rgba(255, 220, 92, 0.82));
      filter: blur(22px);
      opacity: 0.55;
    }

    .portrait::after {
      inset: -34px;
      background: radial-gradient(circle, rgba(114, 240, 163, 0.18), rgba(108, 214, 255, 0.09) 42%, transparent 68%);
      animation: glowBreathe 4.8s ease-in-out infinite;
    }

    .portrait img {
      width: 100%;
      height: 100%;
      border-radius: inherit;
      object-fit: cover;
      border: 8px solid #07100e;
      filter: saturate(1.05) contrast(1.05);
    }

    .data-strip {
      position: relative;
      z-index: 3;
      grid-column: 1 / -1;
      width: 100%;
      margin-top: clamp(10px, 3vh, 34px);
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 1px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      background: rgba(255, 255, 255, 0.1);
    }

    .datum {
      min-height: 86px;
      padding: 16px;
      background: rgba(7, 16, 14, 0.78);
      backdrop-filter: blur(14px);
    }

    .datum b {
      display: block;
      color: #fff;
      font-size: clamp(24px, 3.1vw, 42px);
      line-height: 1;
    }

    .datum span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.35;
    }

    .section {
      position: relative;
      z-index: 2;
      padding: clamp(64px, 9vw, 126px) clamp(16px, 5vw, 72px);
      border-top: 1px solid rgba(255, 255, 255, 0.08);
    }

    .section-head {
      display: grid;
      grid-template-columns: minmax(0, 0.82fr) minmax(280px, 0.52fr);
      gap: clamp(20px, 4vw, 56px);
      align-items: end;
      margin-bottom: 34px;
    }

    .eyebrow {
      margin: 0 0 12px;
      color: var(--leaf);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 12px;
      font-weight: 850;
      text-transform: uppercase;
    }

    h2 {
      margin: 0;
      color: #fff;
      font-family: "Bricolage Grotesque", "Space Grotesk", ui-sans-serif, system-ui, sans-serif;
      font-size: clamp(36px, 6vw, 84px);
      line-height: 0.98;
      font-weight: 750;
      letter-spacing: 0;
    }

    .section-head p {
      margin: 0;
      color: #b5c6bf;
      font-size: 17px;
      line-height: 1.65;
    }

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

    .app-card {
      position: relative;
      min-height: 420px;
      display: flex;
      align-items: flex-end;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      color: #fff;
      text-decoration: none;
      background: #111;
      box-shadow: 0 28px 80px rgba(0, 0, 0, 0.32);
      transform: translateY(0);
      transition: transform 0.24s ease, border-color 0.24s ease;
    }

    .app-card::before {
      content: "";
      position: absolute;
      inset: 0;
      z-index: 1;
      background:
        linear-gradient(to top, rgba(0, 0, 0, 0.9), rgba(0, 0, 0, 0.26) 54%, rgba(0, 0, 0, 0.04)),
        radial-gradient(circle at 50% 18%, rgba(255, 255, 255, 0.18), transparent 32%);
    }

    .app-card img {
      position: absolute;
      inset: 0;
      width: 100%;
      height: 100%;
      object-fit: cover;
      filter: saturate(1.05) contrast(1.03);
      transition: transform 0.5s ease, filter 0.5s ease;
    }

    .app-card:hover,
    .app-card:focus-visible {
      transform: translateY(-8px);
      border-color: rgba(255, 220, 92, 0.5);
      outline: none;
    }

    .app-card:hover img,
    .app-card:focus-visible img {
      transform: scale(1.08);
      filter: saturate(1.2) contrast(1.08);
    }

    .app-copy {
      position: relative;
      z-index: 2;
      width: 100%;
      padding: 20px;
    }

    .app-copy b {
      display: block;
      font-size: 30px;
      line-height: 1;
    }

    .app-copy span {
      display: block;
      margin-top: 10px;
      color: #d6e6df;
      line-height: 1.45;
      font-size: 14px;
    }

    .lab {
      display: grid;
      grid-template-columns: minmax(0, 1.06fr) minmax(300px, 0.94fr);
      gap: 1px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(255, 255, 255, 0.1);
    }

    .lab-panel {
      min-height: 420px;
      padding: clamp(20px, 4vw, 42px);
      background: rgba(7, 16, 14, 0.78);
    }

    .console {
      display: grid;
      grid-template-rows: auto 1fr;
      overflow: hidden;
      padding: 0;
      border: 1px solid rgba(114, 240, 163, 0.18);
      background: rgba(5, 8, 7, 0.88);
      box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.045);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
    }

    .console-top {
      display: flex;
      align-items: center;
      gap: 7px;
      min-height: 48px;
      margin: 0;
      padding: 0 16px;
      border-bottom: 1px solid rgba(114, 240, 163, 0.18);
      background: rgba(255, 255, 255, 0.045);
    }

    .console-top i {
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--rose);
    }

    .console-top i:nth-child(2) {
      background: var(--hot);
    }

    .console-top i:nth-child(3) {
      background: var(--leaf);
    }

    .console-title {
      margin-left: 10px;
      color: #98ffbb;
      font-size: 12px;
      white-space: nowrap;
    }

    #console-lines {
      min-height: 0;
      overflow: auto;
      padding: clamp(20px, 3vw, 32px);
    }

    .line {
      min-height: 1.7em;
      color: #d9f7e8;
      font-size: clamp(13px, 1.5vw, 16px);
      line-height: 1.7;
    }

    .line .prompt {
      color: var(--hot);
    }

    .line .ok {
      color: var(--leaf);
    }

    .cursor {
      display: inline-block;
      width: 10px;
      height: 1.1em;
      margin-left: 3px;
      background: var(--leaf);
      vertical-align: -0.18em;
      animation: blink 0.9s steps(2, end) infinite;
    }

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

    .stack-chip {
      min-height: 92px;
      display: grid;
      align-content: center;
      padding: 16px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.025)),
        radial-gradient(circle at 88% 10%, rgba(255, 220, 92, 0.12), transparent 6rem);
    }

    .stack-chip b {
      color: #fff;
      font-size: 18px;
    }

    .stack-chip span {
      margin-top: 6px;
      color: var(--muted);
      font-size: 13px;
      line-height: 1.45;
    }

    .repo-flow {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 12px;
    }

    .repo-card {
      min-height: 172px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.11);
      border-radius: 8px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.028)),
        radial-gradient(circle at 0 0, rgba(108, 214, 255, 0.13), transparent 11rem);
      text-decoration: none;
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    }

    .repo-card:hover,
    .repo-card:focus-visible {
      transform: translateY(-5px);
      border-color: rgba(108, 214, 255, 0.52);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.1), rgba(255, 255, 255, 0.04)),
        radial-gradient(circle at 0 0, rgba(108, 214, 255, 0.2), transparent 11rem);
      outline: none;
    }

    .repo-card b {
      display: block;
      color: #fff;
      font-size: 18px;
      line-height: 1.2;
    }

    .repo-card span {
      display: block;
      margin-top: 12px;
      color: #b9cbc4;
      font-size: 14px;
      line-height: 1.55;
    }

    .blog-list {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
    }

    .blog-post {
      min-height: 188px;
      display: grid;
      align-content: start;
      gap: 12px;
      padding: 18px;
      border: 1px solid rgba(255, 255, 255, 0.1);
      border-radius: 8px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.025)),
        radial-gradient(circle at 100% 0, rgba(255, 220, 92, 0.1), transparent 9rem);
      color: #fff;
      text-decoration: none;
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    }

    .blog-post:hover,
    .blog-post:focus-visible {
      transform: translateY(-4px);
      border-color: rgba(255, 220, 92, 0.44);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.09), rgba(255, 255, 255, 0.035)),
        radial-gradient(circle at 100% 0, rgba(255, 220, 92, 0.16), transparent 9rem);
      outline: none;
    }

    .blog-post b {
      font-size: 16px;
      line-height: 1.35;
    }

    .blog-post p {
      margin: 0;
      color: #b9cbc4;
      font-size: 14px;
      line-height: 1.55;
    }

    .blog-post span {
      color: var(--muted);
      font-family: "SFMono-Regular", Consolas, "Liberation Mono", monospace;
      font-size: 12px;
    }

    .blog-actions {
      display: flex;
      margin-top: 18px;
    }

    .blog-all {
      min-height: 42px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0 16px;
      border: 1px solid rgba(255, 220, 92, 0.34);
      border-radius: 6px;
      color: #07100e;
      background: linear-gradient(135deg, var(--leaf), var(--hot));
      font-size: 13px;
      font-weight: 900;
      text-decoration: none;
      transition: transform 0.2s ease, filter 0.2s ease;
    }

    .blog-all:hover,
    .blog-all:focus-visible {
      transform: translateY(-2px);
      filter: brightness(1.05);
      outline: none;
    }

    .contact-band {
      position: relative;
      display: grid;
      justify-items: center;
      gap: 28px;
      min-height: 64vh;
      padding-bottom: clamp(44px, 7vw, 92px);
      text-align: center;
      background:
        radial-gradient(circle at 82% 72%, rgba(255, 220, 92, 0.08), transparent 20rem),
        radial-gradient(circle at 12% 88%, rgba(108, 214, 255, 0.07), transparent 22rem);
    }

    .contact-band h2 {
      font-size: clamp(34px, 5.6vw, 78px);
    }

    .contact-links {
      display: grid;
      grid-template-columns: repeat(3, minmax(180px, 1fr));
      width: min(920px, 100%);
      gap: 12px;
      padding: 12px;
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 10px;
      background: rgba(5, 8, 7, 0.36);
      backdrop-filter: blur(14px);
    }

    .contact-links a {
      min-height: 78px;
      display: flex;
      flex-direction: column;
      align-items: center;
      justify-content: center;
      gap: 9px;
      padding: 14px;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 8px;
      background: rgba(255, 255, 255, 0.052);
      color: #fff;
      font-weight: 850;
      text-decoration: none;
      transition: transform 0.22s ease, border-color 0.22s ease, background 0.22s ease;
    }

    .contact-links svg {
      width: 22px;
      height: 22px;
      fill: none;
      stroke: currentColor;
      stroke-width: 2;
      stroke-linecap: round;
      stroke-linejoin: round;
      color: var(--hot);
    }

    .contact-links span {
      line-height: 1.2;
    }

    .contact-links a:hover,
    .contact-links a:focus-visible {
      transform: translateY(-4px);
      border-color: rgba(255, 220, 92, 0.48);
      background: rgba(255, 255, 255, 0.08);
      outline: none;
    }

    .footer {
      position: relative;
      z-index: 2;
      display: block;
      padding: 30px clamp(16px, 5vw, 72px) 38px;
      color: #9fb2aa;
      border-top: 1px solid rgba(255, 255, 255, 0.08);
      font-size: 13px;
      background:
        linear-gradient(90deg, rgba(114, 240, 163, 0.06), transparent 36%),
        rgba(5, 8, 7, 0.56);
    }

    .footer::before {
      content: "";
      position: absolute;
      left: clamp(16px, 5vw, 72px);
      right: clamp(16px, 5vw, 72px);
      top: 0;
      height: 1px;
      background: linear-gradient(90deg, rgba(114, 240, 163, 0.5), rgba(255, 220, 92, 0.3), transparent);
    }

    .footer-brand {
      display: grid;
      gap: 6px;
      max-width: 820px;
    }

    .footer-brand b {
      color: #fff;
      font-size: clamp(16px, 2vw, 20px);
      line-height: 1.2;
    }

    .footer-note {
      color: #8fa49c;
      line-height: 1.55;
    }

    .footer-note {
      margin: 0;
    }


    @keyframes staticDrift {
      0% {
        transform: translate3d(0, 0, 0);
      }

      100% {
        transform: translate3d(42px, -34px, 0);
      }
    }

    @keyframes blink {
      50% {
        opacity: 0;
      }
    }

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

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

    @keyframes portraitPulse {
      0%,
      100% {
        box-shadow:
          0 0 0 1px rgba(255, 255, 255, 0.25),
          0 36px 110px var(--shadow),
          0 0 78px rgba(114, 240, 163, 0.22);
      }

      50% {
        box-shadow:
          0 0 0 1px rgba(255, 255, 255, 0.3),
          0 40px 126px var(--shadow),
          0 0 112px rgba(108, 214, 255, 0.34);
      }
    }

    @keyframes glowBreathe {
      0%,
      100% {
        opacity: 0.55;
        transform: scale(0.96);
      }

      50% {
        opacity: 0.9;
        transform: scale(1.06);
      }
    }

    @media (max-width: 1100px) {
      .hero {
        grid-template-columns: 1fr;
        padding-bottom: 40px;
      }

      .signal-board {
        min-height: 460px;
      }

      .data-strip,
      .app-grid,
      .repo-flow,
      .blog-list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
      }

      .section-head,
      .lab,
      .contact-band {
        grid-template-columns: 1fr;
      }

      .footer {
        grid-template-columns: 1fr;
        align-items: start;
      }

    }

@media (max-width: 720px) {
  .topbar {
    min-height: 70px;
  }

  .menu-toggle {
    display: inline-flex;
  }

  .nav {
    position: absolute;
    top: calc(100% + 8px);
    left: 14px;
    right: 14px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 8px;
    max-height: 0;
    padding: 0;
    overflow: hidden;
    border: 0 solid rgba(255, 255, 255, 0);
    border-radius: 10px;
    background: rgba(5, 8, 7, 0.92);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.34);
    backdrop-filter: blur(18px);
    transition: max-height 0.24s ease, padding 0.24s ease, border-color 0.24s ease;
  }

  .nav.is-open {
    max-height: 480px;
    padding: 10px;
    border-width: 1px;
    border-color: rgba(255, 255, 255, 0.1);
  }

  .nav a {
    justify-content: flex-start;
    min-height: 46px;
    padding: 0 12px;
  }

  .hero {
    padding-top: 128px;
      }

      .hero-lead {
        font-size: 17px;
      }

      .hero-note {
        left: 12px;
        bottom: 12px;
      }

      .signal-board {
        min-height: 390px;
      }

      .data-strip,
      .app-grid,
      .repo-flow,
      .blog-list,
      .contact-links,
      .stack-grid {
        grid-template-columns: 1fr;
      }

      .data-strip {
        margin: 0 0 20px;
      }

      .app-card {
        min-height: 360px;
      }

    }

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

    }
