    :root {
      --bg: #010402;
      --bg-soft: #06110a;
      --panel: rgba(7, 20, 11, 0.84);
      --panel-strong: rgba(4, 12, 7, 0.94);
      --line: rgba(102, 255, 163, 0.16);
      --line-strong: rgba(120, 255, 184, 0.28);
      --text: #e8ffee;
      --muted: rgba(207, 255, 221, 0.7);
      --accent: #5cff95;
      --accent-2: #b6ff5c;
      --accent-deep: #19bf64;
      --glow: rgba(92, 255, 149, 0.24);
    }

    html {
      scroll-behavior: smooth;
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
      font-family: 'Space Grotesk', sans-serif;
    }

    body {
      min-height: 100vh;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
      padding-top: 18px;
    }

    .bg-glow {
      position: fixed;
      inset: 0;
      z-index: -3;
      overflow: hidden;
      background:
        radial-gradient(circle at top, rgba(82, 255, 146, 0.12), transparent 40%),
        radial-gradient(circle at 20% 20%, rgba(30, 255, 115, 0.08), transparent 28%),
        linear-gradient(180deg, #020503 0%, #010302 48%, #031109 100%);
    }

    .bg-glow::before,
    .bg-glow::after {
      content: '';
      position: absolute;
      inset: -20%;
      pointer-events: none;
    }

    .bg-glow::before {
      background:
        repeating-linear-gradient(
          90deg,
          transparent 0 62px,
          rgba(89, 255, 164, 0.14) 62px 64px,
          transparent 64px 128px
        ),
        repeating-linear-gradient(
          180deg,
          rgba(132, 255, 183, 0.16) 0 12px,
          transparent 12px 26px
        );
      opacity: 0.22;
      filter: blur(0.4px);
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.08), rgba(0, 0, 0, 0.75) 12%, transparent 92%);
      animation: matrix-rain 16s linear infinite;
    }

    .bg-glow::after {
      background:
        linear-gradient(180deg, rgba(146, 255, 180, 0.14), transparent 20%),
        repeating-linear-gradient(
          90deg,
          transparent 0 116px,
          rgba(94, 255, 158, 0.18) 116px 118px,
          transparent 118px 186px
        );
      opacity: 0.2;
      animation: matrix-sweep 11s linear infinite;
    }

    .matrix-rain {
      position: fixed;
      inset: 0;
      z-index: -2;
      overflow: hidden;
      pointer-events: none;
      mask-image: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.9) 12%, rgba(0, 0, 0, 0.92) 88%, transparent 100%);
    }

    .matrix-rain span {
      position: absolute;
      top: -120%;
      left: var(--x);
      writing-mode: vertical-rl;
      text-orientation: upright;
      white-space: nowrap;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 16px;
      letter-spacing: 0.12em;
      color: rgba(186, 255, 205, 0.68);
      text-shadow:
        0 0 10px rgba(92, 255, 149, 0.38),
        0 0 22px rgba(92, 255, 149, 0.16);
      opacity: 0.34;
      animation: matrix-drop var(--dur) linear infinite;
      animation-delay: var(--delay);
    }

    .matrix-rain span:nth-child(3n) {
      color: rgba(92, 255, 149, 0.78);
      opacity: 0.46;
    }

    .matrix-rain span:nth-child(4n) {
      color: rgba(214, 255, 224, 0.7);
      filter: blur(0.2px);
    }

    .noise {
      position: fixed;
      inset: 0;
      pointer-events: none;
      opacity: 0.12;
      background-image:
        linear-gradient(rgba(92, 255, 149, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(92, 255, 149, 0.04) 1px, transparent 1px);
      background-size: 30px 30px;
      z-index: -1;
      mix-blend-mode: screen;
    }

    header {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      position: sticky;
      top: 18px;
      z-index: 30;
      border-radius: 28px 46px 28px 46px;
      background: transparent;
      border: 0;
      backdrop-filter: none;
      box-shadow: none;
      overflow: visible;
    }

    header::before {
      content: none;
    }

    header::after {
      content: none;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'IBM Plex Mono', monospace;
      font-weight: 700;
      letter-spacing: 0.08em;
      font-size: 22px;
      text-transform: uppercase;
      color: var(--accent);
      text-shadow: 0 0 18px rgba(92, 255, 149, 0.18);
    }

    .logo-image {
      width: 52px;
      height: 52px;
      display: block;
      object-fit: contain;
      border-radius: 0;
      box-shadow: none;
      background: transparent;
      filter: none;
    }

    nav {
      display: flex;
      gap: 28px;
      align-items: center;
      color: rgba(204, 255, 219, 0.78);
      font-size: 14px;
      padding: 12px 18px;
      border-radius: 22px 30px 22px 30px;
      background: transparent;
      border: 1px solid transparent;
      box-shadow: none;
      font-family: 'IBM Plex Mono', monospace;
      text-transform: uppercase;
      letter-spacing: 0.08em;
    }

    nav a {
      color: inherit;
      text-decoration: none;
      transition: 0.25s;
      position: relative;
      text-shadow: 0 0 10px rgba(92, 255, 149, 0.14);
    }

    nav a:hover {
      color: var(--text);
      text-shadow: 0 0 14px rgba(92, 255, 149, 0.24);
    }

    nav a::after {
      content: '';
      position: absolute;
      left: 0;
      bottom: -7px;
      width: 100%;
      height: 2px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--accent), var(--accent-2));
      transform: scaleX(0);
      transform-origin: center;
      transition: transform 0.25s ease;
    }

    nav a:hover::after {
      transform: scaleX(1);
    }

    .header-actions {
      display: flex;
      align-items: center;
      gap: 10px;
    }

    .btn {
      border: 0;
      color: #041108;
      text-decoration: none;
      padding: 13px 20px;
      border-radius: 999px;
      font-weight: 800;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      cursor: pointer;
      transition: 0.25s ease;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      box-shadow: 0 16px 45px rgba(92, 255, 149, 0.2);
      font-family: 'IBM Plex Mono', monospace;
      text-transform: uppercase;
      letter-spacing: 0.06em;
    }

    .btn:hover {
      transform: translateY(-3px);
      box-shadow: 0 22px 55px rgba(92, 255, 149, 0.28);
    }

    .btn.secondary {
      background: rgba(5, 18, 10, 0.72);
      border: 1px solid rgba(122, 255, 180, 0.18);
      box-shadow: none;
      backdrop-filter: blur(20px);
      color: var(--accent);
    }

    .profile-btn {
      width: 52px;
      height: 52px;
      flex: 0 0 52px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 0;
      border-radius: 50%;
      background:
        linear-gradient(135deg, rgba(14, 36, 18, 0.96), rgba(4, 12, 7, 0.96));
      border: 1px solid rgba(122, 255, 180, 0.18);
      box-shadow:
        0 16px 34px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23d8ffe6' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 21a8 8 0 0 0-16 0'/%3E%3Ccircle cx='12' cy='8' r='4'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-position: center;
      background-size: 18px 18px;
      cursor: pointer;
      appearance: none;
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
    }

    .profile-btn:hover {
      transform: translateY(-3px);
      border-color: rgba(182, 255, 92, 0.32);
      box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.28),
        0 0 20px rgba(92, 255, 149, 0.1),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .btn-drip {
      position: relative;
      overflow: visible;
      z-index: 1;
      isolation: isolate;
    }

    .btn-drip::before {
      content: '';
      position: absolute;
      left: 12px;
      right: 12px;
      top: calc(100% - 5px);
      height: 10px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      border-radius: 0 0 12px 12px;
      pointer-events: none;
      z-index: -1;
    }

    .btn-drip::after {
      content: '';
      position: absolute;
      left: 16px;
      right: 16px;
      top: calc(100% - 4px);
      height: 24px;
      background:
        radial-gradient(ellipse at 16% 0, rgba(182, 255, 92, 0.96) 0 18%, transparent 19%),
        radial-gradient(ellipse at 34% 0, rgba(92, 255, 149, 0.94) 0 14%, transparent 15%),
        radial-gradient(ellipse at 53% 0, rgba(182, 255, 92, 0.96) 0 20%, transparent 21%),
        radial-gradient(ellipse at 73% 0, rgba(92, 255, 149, 0.94) 0 13%, transparent 14%),
        radial-gradient(ellipse at 87% 0, rgba(182, 255, 92, 0.96) 0 16%, transparent 17%),
        linear-gradient(135deg, var(--accent), var(--accent-2));
      border-radius: 0 0 20px 20px;
      filter: drop-shadow(0 8px 14px rgba(92, 255, 149, 0.18));
      clip-path: polygon(
        6% 0,
        94% 0,
        100% 36%,
        91% 36%,
        89% 82%,
        81% 36%,
        67% 36%,
        64% 100%,
        57% 36%,
        42% 36%,
        39% 72%,
        31% 36%,
        19% 36%,
        16% 90%,
        9% 36%,
        0 36%
      );
      pointer-events: none;
      opacity: 0.98;
      transform-origin: top center;
      transition: transform 0.25s ease, filter 0.25s ease;
      z-index: -1;
    }

    .btn-drip:hover::after {
      transform: scaleY(1.05);
      filter: drop-shadow(0 10px 18px rgba(92, 255, 149, 0.24));
    }

    .hero {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 70px 0 80px;
      display: grid;
      grid-template-columns: 1.08fr 0.92fr;
      gap: 48px;
      align-items: center;
    }

    .tag {
      width: fit-content;
      padding: 0;
      color: #d8ffe6;
      font-size: 13px;
      font-weight: 700;
      margin-bottom: 22px;
      font-family: 'IBM Plex Mono', monospace;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      position: relative;
      text-shadow:
        0 0 8px rgba(92, 255, 149, 0.22),
        0 0 18px rgba(92, 255, 149, 0.08);
      animation: glitch-skew 2.4s steps(1) infinite;
    }

    .tag::before,
    .tag::after {
      content: attr(data-text);
      position: absolute;
      inset: 0;
      pointer-events: none;
      opacity: 0.75;
    }

    .tag::before {
      color: rgba(92, 255, 149, 0.78);
      transform: translateX(-1px);
      text-shadow: -2px 0 rgba(92, 255, 149, 0.35);
      animation: glitch-left 1.8s steps(2) infinite;
    }

    .tag::after {
      color: rgba(182, 255, 92, 0.76);
      transform: translateX(1px);
      text-shadow: 2px 0 rgba(182, 255, 92, 0.34);
      animation: glitch-right 2.1s steps(2) infinite;
    }

    h1,
    h2,
    .app-top h3,
    .price-card .price {
      font-family: 'IBM Plex Mono', monospace;
    }

    h1 {
      font-size: clamp(46px, 7vw, 86px);
      line-height: 0.92;
      letter-spacing: -0.07em;
      margin-bottom: 26px;
    }

    h1 span {
      background: linear-gradient(135deg, #d8ffe6, #72ffb0, #a7ff63);
      -webkit-background-clip: text;
      color: transparent;
      text-shadow: 0 0 24px rgba(114, 255, 176, 0.2);
    }

    .hero p {
      color: var(--muted);
      line-height: 1.75;
      font-size: 17px;
      max-width: 610px;
      margin-bottom: 30px;
    }

    .hero-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 34px;
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 14px;
      max-width: 590px;
    }

    .stat-card {
      padding: 18px;
      border-radius: 24px;
      background: linear-gradient(180deg, rgba(7, 21, 11, 0.86), rgba(3, 11, 6, 0.86));
      border: 1px solid rgba(122, 255, 180, 0.14);
      backdrop-filter: blur(20px);
      box-shadow: inset 0 1px 0 rgba(191, 255, 218, 0.05);
    }

    .stat-card b {
      display: block;
      font-size: 25px;
      margin-bottom: 4px;
      color: var(--accent);
    }

    .stat-card small {
      color: rgba(198, 255, 216, 0.56);
      line-height: 1.4;
    }

    .phone-wrap {
      display: flex;
      justify-content: center;
      position: relative;
      min-height: 620px;
    }

    .orbit-card {
      position: absolute;
      border-radius: 22px;
      padding: 16px;
      background: rgba(5, 18, 10, 0.82);
      border: 1px solid rgba(122, 255, 180, 0.18);
      backdrop-filter: blur(18px);
      box-shadow: 0 24px 70px rgba(0, 0, 0, 0.38);
      animation: float 5s ease-in-out infinite;
    }

    .orbit-card.one {
      left: 0;
      top: 70px;
    }

    .orbit-card.two {
      right: 0;
      bottom: 120px;
      animation-delay: -1.4s;
    }

    .orbit-card.three {
      left: 20px;
      bottom: 40px;
      animation-delay: -2.5s;
    }

    .orbit-card strong {
      font-size: 14px;
      display: block;
      margin-bottom: 6px;
      color: var(--accent);
      font-family: 'IBM Plex Mono', monospace;
    }

    .orbit-card span {
      color: rgba(198, 255, 216, 0.62);
      font-size: 12px;
    }

    .phone {
      width: 330px;
      height: 640px;
      border-radius: 48px;
      padding: 14px;
      background: linear-gradient(145deg, #07180d, #020603);
      border: 1px solid rgba(122, 255, 180, 0.16);
      box-shadow:
        0 40px 120px rgba(0, 0, 0, 0.62),
        0 0 80px rgba(45, 255, 119, 0.08),
        inset 0 0 0 2px rgba(180, 255, 213, 0.04);
      position: relative;
      transform: rotate(3deg);
    }

    .phone::before {
      content: '';
      position: absolute;
      width: 104px;
      height: 25px;
      background: #020603;
      border-radius: 0 0 18px 18px;
      left: 50%;
      top: 14px;
      transform: translateX(-50%);
      z-index: 3;
    }

    .screen {
      height: 100%;
      border-radius: 38px;
      overflow: hidden;
      background: #030805;
      position: relative;
      border: 1px solid rgba(122, 255, 180, 0.12);
    }

    .app-top {
      position: relative;
      isolation: isolate;
      padding: 52px 18px 14px;
      background:
        linear-gradient(180deg, rgba(18, 24, 22, 0.96), rgba(6, 10, 11, 0.98)),
        linear-gradient(135deg, rgba(255, 56, 122, 0.14), rgba(95, 255, 172, 0.1) 58%, rgba(89, 196, 255, 0.12));
      overflow: hidden;
    }

    .app-top::before,
    .app-top::after {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
    }

    .app-top::before {
      background:
        repeating-linear-gradient(
          180deg,
          rgba(255, 255, 255, 0.08) 0 2px,
          rgba(0, 0, 0, 0) 2px 6px
        ),
        linear-gradient(90deg, rgba(255, 64, 129, 0.16), transparent 22%, transparent 78%, rgba(103, 255, 180, 0.16)),
        linear-gradient(180deg, transparent 0 62%, rgba(255, 255, 255, 0.12) 70%, transparent 78%);
      opacity: 0.7;
      mix-blend-mode: screen;
      animation: app-top-glitch-lines 3.2s linear infinite;
      z-index: 0;
    }

    .app-top::after {
      inset: 10px -12px auto;
      height: 42%;
      background:
        linear-gradient(90deg, rgba(255, 70, 135, 0.18), rgba(255, 255, 255, 0.06) 35%, rgba(68, 255, 170, 0.16)),
        repeating-linear-gradient(90deg, rgba(255, 255, 255, 0.08) 0 10px, transparent 10px 24px);
      filter: blur(0.4px);
      opacity: 0.55;
      animation: app-top-glitch-band 2.6s steps(2) infinite;
      z-index: 0;
    }

    .app-top small {
      position: relative;
      z-index: 1;
      color: rgba(223, 255, 233, 0.74);
      font-weight: 700;
      font-family: 'IBM Plex Mono', monospace;
    }

    .app-top h3 {
      position: relative;
      z-index: 1;
      font-size: 28px;
      line-height: 1;
      letter-spacing: -0.05em;
      margin-top: 6px;
      text-shadow:
        -1px 0 rgba(255, 82, 145, 0.72),
        1px 0 rgba(102, 255, 183, 0.72),
        0 0 18px rgba(255, 255, 255, 0.06);
    }

    .code-preview {
      margin: 14px;
      border-radius: 24px;
      background: #041008;
      border: 1px solid rgba(122, 255, 180, 0.12);
      overflow: hidden;
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04), 0 0 30px rgba(92, 255, 149, 0.06);
    }

    .code-bar {
      height: 38px;
      background: rgba(122, 255, 180, 0.07);
      display: flex;
      align-items: center;
      gap: 7px;
      padding: 0 14px;
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #ff5f57;
    }

    .dot:nth-child(2) {
      background: #ffbd2e;
    }

    .dot:nth-child(3) {
      background: #28c840;
    }

    pre {
      padding: 16px;
      font-size: 11px;
      line-height: 1.72;
      color: #d8ffe6;
      white-space: pre-wrap;
      font-family: 'IBM Plex Mono', monospace;
    }

    .pink {
      color: #7affab;
    }

    .blue {
      color: #b8ff78;
    }

    .green {
      color: #dfffe6;
    }

    .yellow {
      color: #63ffbb;
    }

    .mini-cards {
      padding: 0 14px 16px;
      display: grid;
      gap: 10px;
    }

    .mini-card {
      padding: 14px;
      border-radius: 18px;
      background: rgba(8, 22, 12, 0.74);
      border: 1px solid rgba(122, 255, 180, 0.1);
    }

    .mini-card b {
      font-size: 13px;
      color: var(--accent);
    }

    .mini-card p {
      font-size: 11px;
      margin-top: 5px;
      color: rgba(207, 255, 221, 0.56);
      line-height: 1.5;
    }

    section {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 70px 0;
    }

    section[id] {
      scroll-margin-top: 110px;
    }

    .section-head {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 42px;
    }

    .section-head h2 {
      font-size: clamp(32px, 5vw, 56px);
      letter-spacing: -0.06em;
      margin-bottom: 14px;
    }

    .section-head p {
      color: rgba(207, 255, 221, 0.65);
      line-height: 1.7;
    }

    .services {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
    }

    .service {
      position: relative;
      overflow: hidden;
      display: flex;
      flex-direction: column;
      gap: 10px;
      padding: 22px;
      min-height: 230px;
      border-radius: 32px;
      background:
        radial-gradient(circle at top right, rgba(182, 255, 92, 0.14), transparent 34%),
        linear-gradient(180deg, rgba(7, 20, 11, 0.9), rgba(3, 10, 5, 0.92));
      border: 1px solid rgba(122, 255, 180, 0.12);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
      box-shadow:
        inset 0 1px 0 rgba(180, 255, 213, 0.04),
        0 18px 40px rgba(0, 0, 0, 0.2);
    }

    .service::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(135deg, rgba(122, 255, 180, 0.1), transparent 32%),
        linear-gradient(180deg, transparent, rgba(92, 255, 149, 0.06));
      opacity: 0.78;
      pointer-events: none;
    }

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

    .service:hover {
      transform: translateY(-8px);
      border-color: rgba(182, 255, 92, 0.26);
      background:
        radial-gradient(circle at top right, rgba(182, 255, 92, 0.18), transparent 36%),
        linear-gradient(180deg, rgba(10, 31, 17, 0.94), rgba(4, 14, 8, 0.94));
      box-shadow:
        0 24px 55px rgba(0, 0, 0, 0.28),
        0 0 35px rgba(92, 255, 149, 0.08);
    }

    .service-kicker {
      width: fit-content;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(92, 255, 149, 0.08);
      border: 1px solid rgba(122, 255, 180, 0.14);
      color: #cfffdb;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .icon {
      width: 56px;
      height: 56px;
      border-radius: 18px;
      display: grid;
      place-items: center;
      background:
        linear-gradient(135deg, rgba(92, 255, 149, 0.22), rgba(155, 255, 92, 0.18)),
        rgba(4, 12, 7, 0.82);
      border: 1px solid rgba(122, 255, 180, 0.18);
      margin-bottom: 2px;
      box-shadow:
        inset 0 1px 0 rgba(216, 255, 230, 0.06),
        0 10px 26px rgba(92, 255, 149, 0.08);
    }

    .icon svg {
      width: 24px;
      height: 24px;
      fill: none;
      stroke: #dffff0;
      stroke-width: 1.8;
      stroke-linecap: round;
      stroke-linejoin: round;
      filter: drop-shadow(0 0 12px rgba(92, 255, 149, 0.18));
    }

    .service h3 {
      font-size: 19px;
      margin-bottom: 0;
      letter-spacing: -0.03em;
      color: var(--accent);
      font-family: 'IBM Plex Mono', monospace;
    }

    .service p {
      color: rgba(207, 255, 221, 0.63);
      line-height: 1.6;
      font-size: 13px;
      margin-bottom: auto;
    }

    .service-meta {
      display: flex;
      gap: 8px;
      flex-wrap: wrap;
      padding-top: 0;
    }

    .service-meta span {
      display: inline-flex;
      align-items: center;
      min-height: 32px;
      padding: 6px 10px;
      border-radius: 999px;
      background: rgba(6, 19, 10, 0.86);
      border: 1px solid rgba(122, 255, 180, 0.1);
      color: rgba(220, 255, 231, 0.78);
      font-size: 11px;
      line-height: 1.35;
    }

    .portfolio-toolbar {
      display: grid;
      gap: 16px;
      margin-bottom: 22px;
    }

    .portfolio-search {
      display: flex;
      align-items: center;
      gap: 12px;
      padding: 14px 18px;
      border-radius: 18px;
      background: linear-gradient(135deg, rgba(8, 24, 12, 0.92), rgba(3, 10, 6, 0.92));
      border: 1px solid rgba(122, 255, 180, 0.12);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .portfolio-search-icon {
      width: 18px;
      height: 18px;
      flex: 0 0 18px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235cff95' stroke-width='1.9' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='7'/%3E%3Cpath d='m20 20-3.5-3.5'/%3E%3C/svg%3E");
      background-repeat: no-repeat;
      background-size: contain;
      background-position: center;
      opacity: 0.9;
    }

    .portfolio-search input {
      width: 100%;
      border: 0;
      outline: none;
      background: transparent;
      color: #e8ffee;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 13px;
    }

    .portfolio-search input::placeholder {
      color: rgba(207, 255, 221, 0.44);
    }

    .portfolio-categories {
      display: flex;
      gap: 10px;
      flex-wrap: wrap;
    }

    .portfolio-filter {
      border: 1px solid rgba(122, 255, 180, 0.14);
      background: rgba(5, 18, 10, 0.74);
      color: rgba(220, 255, 231, 0.82);
      padding: 10px 14px;
      border-radius: 999px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .portfolio-filter:hover,
    .portfolio-filter.is-active {
      color: #041108;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      border-color: transparent;
      box-shadow: 0 10px 24px rgba(92, 255, 149, 0.18);
    }

    .portfolio {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 22px;
      justify-items: center;
      padding-top: 22px;
      overflow: hidden;
      max-height: none;
      transition: max-height 0.6s ease;
      position: relative;
    }

    .portfolio.is-collapsed {
      max-height: var(--collapsed-height, 760px);
      mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1) 72%, rgba(0, 0, 0, 0.18) 92%, transparent 100%);
    }

    .portfolio.is-expanded {
      max-height: 4000px;
      mask-image: none;
    }

    .preview-card {
      display: flex;
      justify-content: center;
    }

    .preview-card.is-hidden {
      display: none;
    }

    .preview-device {
      width: min(100%, 265px);
      border-radius: 34px;
      padding: 10px;
      background:
        linear-gradient(155deg, rgba(10, 31, 16, 0.98), rgba(2, 8, 4, 0.98));
      border: 1px solid rgba(122, 255, 180, 0.18);
      box-shadow:
        0 22px 55px rgba(0, 0, 0, 0.34),
        0 0 40px rgba(92, 255, 149, 0.07),
        inset 0 0 0 1px rgba(210, 255, 224, 0.04);
      position: relative;
      display: flex;
    }

    .preview-device::before {
      content: '';
      position: absolute;
      top: 10px;
      left: 50%;
      width: 82px;
      height: 16px;
      border-radius: 0 0 14px 14px;
      background: rgba(2, 8, 4, 0.96);
      transform: translateX(-50%);
      z-index: 2;
    }

    .preview-label {
      position: absolute;
      top: 18px;
      left: -34px;
      z-index: 3;
      min-width: 126px;
      padding: 10px 16px 16px;
      --type-duration: 10s;
      --type-delay: 0s;
      border-radius: 4px;
      background:
        radial-gradient(ellipse at 18% 100%, rgba(16, 46, 24, 0.98) 0 20%, transparent 21%),
        radial-gradient(ellipse at 48% 100%, rgba(10, 31, 16, 0.98) 0 24%, transparent 25%),
        radial-gradient(ellipse at 81% 100%, rgba(16, 46, 24, 0.98) 0 18%, transparent 19%),
        linear-gradient(135deg, rgba(10, 31, 16, 0.96), rgba(3, 12, 7, 0.94));
      border: 1px solid rgba(122, 255, 180, 0.18);
      box-shadow:
        0 12px 26px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(10px);
      clip-path: polygon(
        0 0,
        100% 0,
        100% 22%,
        100% 74%,
        88% 74%,
        85% 100%,
        72% 74%,
        56% 74%,
        53% 92%,
        38% 74%,
        20% 74%,
        17% 100%,
        8% 74%,
        0 74%,
        0 22%
      );
    }

    .preview-label strong,
    .preview-label span {
      display: block;
      font-family: 'IBM Plex Mono', monospace;
      text-transform: uppercase;
      white-space: nowrap;
      overflow: hidden;
      border-right: 1px solid currentColor;
    }

    .preview-label strong {
      color: #f2d56b;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      line-height: 1.1;
      text-shadow: 0 0 14px rgba(242, 213, 107, 0.14);
      width: calc(var(--title-ch, 11) * 1ch);
      animation:
        typing-main var(--type-duration) steps(18, end) infinite,
        caret-blink 0.8s step-end infinite;
      animation-delay: var(--type-delay), 0s;
    }

    .preview-label span {
      margin-top: 4px;
      color: #dcffe7;
      font-size: 9px;
      font-weight: 600;
      letter-spacing: 0.1em;
      opacity: 0.82;
      width: calc(var(--sub-ch, 6) * 1ch);
      animation:
        typing-sub var(--type-duration) steps(12, end) infinite,
        caret-blink 0.8s step-end infinite;
      animation-delay: calc(var(--type-delay) + 1.4s), 0s;
    }

    .preview-ribbon {
      position: absolute;
      top: 12px;
      right: -36px;
      z-index: 4;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      padding: 6px 11px;
      background: linear-gradient(135deg, #7a1010, #d02a2a);
      border: 1px solid rgba(255, 206, 206, 0.18);
      color: #fff4f4;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow:
        0 12px 24px rgba(102, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transform: rotate(32deg);
      white-space: nowrap;
    }

    .preview-ribbon-dot {
      width: 8px;
      height: 8px;
      flex: 0 0 8px;
      border-radius: 50%;
      background: #59ff86;
      box-shadow:
        0 0 0 2px rgba(7, 31, 12, 0.34),
        0 0 12px rgba(89, 255, 134, 0.9),
        0 0 22px rgba(89, 255, 134, 0.46);
      animation: green-pulse 1.8s ease-in-out infinite;
    }

    .preview-screen {
      width: 100%;
      aspect-ratio: 9 / 16;
      overflow: hidden;
      border-radius: 28px;
      border: 1px solid rgba(122, 255, 180, 0.1);
      background: #030805;
      position: relative;
      box-shadow:
        inset 0 0 0 1px rgba(219, 255, 230, 0.03),
        inset 0 -20px 42px rgba(0, 0, 0, 0.28);
      transition: transform 0.35s ease, box-shadow 0.35s ease;
    }

    .preview-screen::before {
      content: '';
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at center, transparent 44%, rgba(0, 0, 0, 0.18) 66%, rgba(0, 0, 0, 0.44) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.24), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.24)),
        linear-gradient(180deg, rgba(0, 0, 0, 0.2), transparent 14%, transparent 82%, rgba(0, 0, 0, 0.28)),
        radial-gradient(circle at 50% 12%, rgba(255, 255, 255, 0.1), transparent 34%);
      pointer-events: none;
      z-index: 1;
    }

    .preview-screen::after {
      content: '';
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 16%, transparent 80%, rgba(92, 255, 149, 0.07)),
        linear-gradient(105deg, transparent 0 38%, rgba(255, 255, 255, 0.08) 48%, transparent 58%);
      pointer-events: none;
      z-index: 2;
    }

    .preview-screen.is-flashing::after {
      animation: preview-screen-flash 0.6s ease-out;
    }

    .preview-image {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      transition: transform 0.55s ease, filter 0.55s ease;
    }

    .preview-cta {
      position: absolute;
      left: 16px;
      bottom: 16px;
      z-index: 3;
      border: 1px solid rgba(122, 255, 180, 0.22);
      background: linear-gradient(180deg, rgba(5, 18, 10, 0.82), rgba(3, 11, 6, 0.92));
      color: #dcffe7;
      padding: 9px 12px;
      border-radius: 999px;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 10px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      backdrop-filter: blur(12px);
      box-shadow:
        0 10px 20px rgba(0, 0, 0, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 7px;
      overflow: hidden;
      isolation: isolate;
      transition: transform 0.25s ease, border-color 0.25s ease, color 0.25s ease, box-shadow 0.25s ease;
    }

    .preview-cta::before {
      content: '';
      width: 14px;
      height: 14px;
      flex: 0 0 14px;
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%23dcffe7' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M1.5 12s3.8-6 10.5-6 10.5 6 10.5 6-3.8 6-10.5 6S1.5 12 1.5 12Z'/%3E%3Ccircle cx='12' cy='12' r='3.2'/%3E%3C/svg%3E");
      background-size: contain;
      background-repeat: no-repeat;
      background-position: center;
      opacity: 0.92;
    }

    .preview-cta::after {
      content: '';
      position: absolute;
      inset: -18px;
      border-radius: inherit;
      background: radial-gradient(circle, rgba(182, 255, 92, 0.42) 0, rgba(92, 255, 149, 0.2) 28%, transparent 62%);
      opacity: 0;
      transform: scale(0.45);
      pointer-events: none;
      z-index: -1;
    }

    .preview-cta:hover {
      transform: translateY(-2px);
      border-color: rgba(182, 255, 92, 0.42);
      color: #ffffff;
      box-shadow:
        0 14px 26px rgba(0, 0, 0, 0.28),
        0 0 22px rgba(92, 255, 149, 0.16),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
    }

    .preview-card:hover .preview-screen {
      transform: translateY(-4px) scale(1.01);
      box-shadow:
        inset 0 0 0 1px rgba(219, 255, 230, 0.05),
        inset 0 -20px 42px rgba(0, 0, 0, 0.28),
        0 22px 44px rgba(0, 0, 0, 0.24);
    }

    .preview-card:hover .preview-image {
      transform: scale(1.045);
      filter: saturate(1.08) contrast(1.03);
    }

    .preview-cta.is-pressing {
      animation: preview-cta-pop 0.55s cubic-bezier(0.2, 0.85, 0.24, 1);
    }

    .preview-cta.is-pressing::after {
      animation: preview-cta-burst 0.55s ease-out;
    }

    .preview-cta.is-pressing::before {
      animation: preview-cta-eye-blink 0.55s ease-out;
    }

    .portfolio-empty {
      margin-top: 20px;
      color: rgba(207, 255, 221, 0.64);
      text-align: center;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .preview-toggle {
      margin: 28px auto 0;
      width: fit-content;
      min-width: 0;
      padding: 0;
      border: 0;
      background: transparent;
      color: var(--accent);
      display: flex;
      align-items: center;
      justify-content: center;
      cursor: pointer;
      box-shadow: none;
    }

    .preview-toggle-icon {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 34px;
      line-height: 1;
      text-transform: lowercase;
      transition: transform 0.25s ease, color 0.25s ease;
    }

    .preview-toggle:hover .preview-toggle-icon {
      color: #d8ffe6;
      transform: translateY(3px);
    }

    .portfolio.is-expanded + .preview-toggle .preview-toggle-icon {
      transform: rotate(180deg);
    }

    .portfolio.is-expanded + .preview-toggle:hover .preview-toggle-icon {
      transform: rotate(180deg) translateY(3px);
    }

    .preview-modal[hidden] {
      display: none;
    }

    .preview-modal {
      position: fixed;
      inset: 0;
      z-index: 80;
      display: grid;
      place-items: center;
      padding: 24px;
    }

    .preview-modal.is-opening .preview-modal-backdrop {
      animation: preview-backdrop-in 0.32s ease forwards;
    }

    .preview-modal.is-opening .preview-modal-panel {
      animation: preview-modal-in 0.42s cubic-bezier(0.18, 0.88, 0.24, 1) forwards;
      transform-origin: center;
    }

    .preview-modal.is-opening .preview-modal-device {
      animation: preview-device-in 0.52s cubic-bezier(0.18, 0.88, 0.24, 1) forwards;
    }

    .preview-modal.is-opening .preview-modal-info > * {
      animation: preview-modal-content-in 0.42s ease forwards;
    }

    .preview-modal.is-opening .preview-modal-info > *:nth-child(1) { animation-delay: 0.08s; }
    .preview-modal.is-opening .preview-modal-info > *:nth-child(2) { animation-delay: 0.14s; }
    .preview-modal.is-opening .preview-modal-info > *:nth-child(3) { animation-delay: 0.2s; }
    .preview-modal.is-opening .preview-modal-info > *:nth-child(4) { animation-delay: 0.26s; }
    .preview-modal.is-opening .preview-modal-info > *:nth-child(5) { animation-delay: 0.32s; }

    .preview-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(1, 5, 3, 0.74);
      backdrop-filter: blur(12px);
    }

    .preview-modal-panel {
      position: relative;
      z-index: 1;
      width: min(1120px, 100%);
      display: grid;
      grid-template-columns: minmax(280px, 360px) minmax(0, 1fr);
      gap: 34px;
      padding: 34px;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(7, 21, 11, 0.96), rgba(2, 8, 5, 0.96)),
        repeating-linear-gradient(90deg, rgba(122, 255, 180, 0.04) 0 1px, transparent 1px 26px);
      border: 1px solid rgba(122, 255, 180, 0.16);
      box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.46),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .preview-modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(122, 255, 180, 0.16);
      background: rgba(5, 18, 10, 0.84);
      color: #dcffe7;
      font-size: 0;
      line-height: 1;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .preview-modal-close::before {
      content: 'X';
      font-size: 16px;
      font-weight: 800;
      font-family: 'IBM Plex Mono', monospace;
    }

    .preview-modal-close:hover {
      color: #ffffff;
      border-color: rgba(182, 255, 92, 0.32);
      transform: rotate(90deg);
    }

    .preview-modal-visual {
      display: flex;
      justify-content: center;
      align-items: center;
    }

    .preview-modal-device {
      width: min(100%, 320px);
      padding: 12px;
      border-radius: 38px;
      background: linear-gradient(155deg, rgba(10, 31, 16, 0.98), rgba(2, 8, 4, 0.98));
      border: 1px solid rgba(122, 255, 180, 0.18);
      box-shadow:
        0 26px 64px rgba(0, 0, 0, 0.42),
        0 0 42px rgba(92, 255, 149, 0.08),
        inset 0 0 0 1px rgba(210, 255, 224, 0.04);
      position: relative;
    }

    .preview-modal-device::before {
      content: '';
      position: absolute;
      top: 12px;
      left: 50%;
      width: 92px;
      height: 18px;
      border-radius: 0 0 14px 14px;
      background: rgba(2, 8, 4, 0.96);
      transform: translateX(-50%);
      z-index: 2;
    }

    .preview-modal-screen {
      aspect-ratio: 9 / 16;
      overflow: hidden;
      border-radius: 30px;
      border: 1px solid rgba(122, 255, 180, 0.1);
      background: #030805;
      position: relative;
      box-shadow:
        inset 0 0 0 1px rgba(219, 255, 230, 0.03),
        inset 0 -18px 38px rgba(0, 0, 0, 0.28);
    }

    .preview-modal-screen::before {
      content: '';
      position: absolute;
      inset: 0;
      pointer-events: none;
      z-index: 2;
      background:
        radial-gradient(circle at center, transparent 44%, rgba(0, 0, 0, 0.18) 66%, rgba(0, 0, 0, 0.46) 100%),
        linear-gradient(90deg, rgba(0, 0, 0, 0.22), transparent 14%, transparent 86%, rgba(0, 0, 0, 0.22)),
        linear-gradient(180deg, rgba(255, 255, 255, 0.08), transparent 14%, transparent 80%, rgba(92, 255, 149, 0.08));
    }

    .preview-modal-video {
      width: 100%;
      height: 100%;
      display: block;
      object-fit: cover;
      background: #020603;
    }

    .preview-modal-info {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 18px;
    }

    .preview-modal-kicker {
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(92, 255, 149, 0.08);
      border: 1px solid rgba(122, 255, 180, 0.14);
      color: #b6ff5c;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .preview-modal-info h3 {
      font-size: clamp(34px, 4vw, 58px);
      line-height: 0.92;
      letter-spacing: -0.06em;
      font-family: 'IBM Plex Mono', monospace;
    }

    .preview-modal-info p {
      color: rgba(207, 255, 221, 0.68);
      line-height: 1.8;
      max-width: 620px;
    }

    .preview-modal-meta {
      padding: 20px 22px;
      border-radius: 22px;
      background: rgba(5, 18, 10, 0.72);
      border: 1px solid rgba(122, 255, 180, 0.12);
    }

    .preview-modal-meta > span {
      display: block;
      margin-bottom: 14px;
      color: #f2d56b;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .preview-modal-meta ul {
      margin: 0;
      gap: 10px;
      flex: 0;
    }

    .preview-modal-actions {
      display: flex;
      gap: 14px;
      flex-wrap: wrap;
    }

    .preview-modal-actions .btn {
      justify-content: center;
    }

    .admin-modal[hidden] {
      display: none;
    }

    .admin-modal {
      position: fixed;
      inset: 0;
      z-index: 82;
      display: grid;
      place-items: center;
      padding: 24px;
    }

    .admin-modal-backdrop {
      position: absolute;
      inset: 0;
      background: rgba(1, 5, 3, 0.78);
      backdrop-filter: blur(14px);
    }

    .admin-modal-panel {
      position: relative;
      z-index: 1;
      width: min(760px, 100%);
      display: grid;
      grid-template-columns: minmax(220px, 0.88fr) minmax(0, 1fr);
      gap: 28px;
      padding: 34px;
      border-radius: 34px;
      background:
        linear-gradient(135deg, rgba(7, 21, 11, 0.96), rgba(2, 8, 5, 0.97)),
        repeating-linear-gradient(90deg, rgba(122, 255, 180, 0.04) 0 1px, transparent 1px 26px);
      border: 1px solid rgba(122, 255, 180, 0.16);
      box-shadow:
        0 28px 90px rgba(0, 0, 0, 0.48),
        0 0 40px rgba(92, 255, 149, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .admin-modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      border-radius: 50%;
      border: 1px solid rgba(122, 255, 180, 0.16);
      background: rgba(5, 18, 10, 0.84);
      color: #dcffe7;
      font-size: 0;
      line-height: 1;
      cursor: pointer;
      transition: 0.25s ease;
    }

    .admin-modal-close::before {
      content: 'X';
      font-size: 16px;
      font-weight: 800;
      font-family: 'IBM Plex Mono', monospace;
    }

    .admin-modal-close:hover {
      color: #ffffff;
      border-color: rgba(182, 255, 92, 0.32);
      transform: rotate(90deg);
    }

    .admin-modal-copy {
      display: flex;
      flex-direction: column;
      justify-content: center;
      gap: 16px;
    }

    .admin-modal-kicker {
      width: fit-content;
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(92, 255, 149, 0.08);
      border: 1px solid rgba(122, 255, 180, 0.14);
      color: #b6ff5c;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .admin-modal-copy h3 {
      font-size: clamp(34px, 4vw, 52px);
      line-height: 0.92;
      letter-spacing: -0.06em;
      font-family: 'IBM Plex Mono', monospace;
    }

    .admin-modal-copy p {
      color: rgba(207, 255, 221, 0.68);
      line-height: 1.8;
    }

    .admin-modal-terminal {
      width: fit-content;
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 14px;
      border-radius: 999px;
      background: rgba(5, 18, 10, 0.72);
      border: 1px solid rgba(122, 255, 180, 0.12);
      color: rgba(220, 255, 231, 0.88);
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .admin-modal-terminal-dot {
      width: 9px;
      height: 9px;
      flex: 0 0 9px;
      border-radius: 50%;
      background: #59ff86;
      box-shadow:
        0 0 0 2px rgba(7, 31, 12, 0.34),
        0 0 12px rgba(89, 255, 134, 0.9),
        0 0 22px rgba(89, 255, 134, 0.46);
      animation: green-pulse 1.8s ease-in-out infinite;
    }

    .admin-form {
      display: flex;
      flex-direction: column;
      gap: 16px;
      padding: 24px;
      border-radius: 28px;
      background: rgba(5, 18, 10, 0.76);
      border: 1px solid rgba(122, 255, 180, 0.12);
      box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
    }

    .admin-field {
      display: flex;
      flex-direction: column;
      gap: 8px;
    }

    .admin-field span {
      color: #dcffe7;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
    }

    .admin-field input {
      width: 100%;
      padding: 15px 16px;
      border-radius: 18px;
      border: 1px solid rgba(122, 255, 180, 0.14);
      background: rgba(3, 11, 6, 0.96);
      color: #ecffe0;
      outline: none;
      transition: border-color 0.25s ease, box-shadow 0.25s ease, transform 0.25s ease;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 13px;
    }

    .admin-field input::placeholder {
      color: rgba(207, 255, 221, 0.42);
    }

    .admin-field input:focus {
      border-color: rgba(182, 255, 92, 0.34);
      box-shadow: 0 0 0 3px rgba(92, 255, 149, 0.1);
      transform: translateY(-1px);
    }

    .admin-modal-status {
      min-height: 42px;
      color: rgba(207, 255, 221, 0.68);
      line-height: 1.65;
      font-size: 13px;
    }

    .admin-modal-actions {
      display: flex;
      gap: 12px;
      flex-wrap: wrap;
    }

    .admin-modal-actions .btn {
      justify-content: center;
    }

    .pricing {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 18px;
      align-items: stretch;
    }

    .price-card {
      padding: 30px;
      border-radius: 34px;
      background: linear-gradient(180deg, rgba(7, 20, 11, 0.88), rgba(3, 10, 5, 0.88));
      border: 1px solid rgba(122, 255, 180, 0.12);
      box-shadow: inset 0 1px 0 rgba(180, 255, 213, 0.04);
      display: flex;
      flex-direction: column;
      min-height: 100%;
    }

    .price-card.featured {
      background: linear-gradient(135deg, rgba(18, 58, 30, 0.96), rgba(5, 17, 9, 0.94));
      box-shadow: 0 30px 90px rgba(15, 110, 51, 0.22), 0 0 50px rgba(92, 255, 149, 0.08);
      transform: scale(1.03);
      position: relative;
      overflow: hidden;
      padding-top: 54px;
    }

    .price-ribbon {
      position: absolute;
      top: 14px;
      right: 26px;
      z-index: 3;
      display: inline-flex;
      align-items: center;
      gap: 8px;
      padding: 7px 12px;
      background: linear-gradient(135deg, #7a1010, #d02a2a);
      border: 1px solid rgba(255, 206, 206, 0.18);
      color: #fff4f4;
      font-family: 'IBM Plex Mono', monospace;
      font-size: 8px;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow:
        0 12px 24px rgba(102, 0, 0, 0.26),
        inset 0 1px 0 rgba(255, 255, 255, 0.08);
      transform: translateX(24%) rotate(24deg);
      white-space: nowrap;
    }

    .price-ribbon-dot {
      width: 8px;
      height: 8px;
      flex: 0 0 8px;
      border-radius: 50%;
      background: #59ff86;
      box-shadow:
        0 0 0 2px rgba(7, 31, 12, 0.34),
        0 0 12px rgba(89, 255, 134, 0.9),
        0 0 22px rgba(89, 255, 134, 0.46);
      animation: green-pulse 1.8s ease-in-out infinite;
    }

    .price-ribbon-text {
      animation: month-blink 1.1s step-end infinite;
    }

    .price-card-basic .price {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      flex-wrap: wrap;
    }

    .price-card.featured .price,
    .price-card-custom .price {
      display: flex;
      align-items: flex-end;
      gap: 6px;
      flex-wrap: wrap;
    }

    .price-card-basic .price-range {
      display: inline-flex;
      align-items: baseline;
      gap: 3px;
      font-size: 46px;
      line-height: 0.9;
      letter-spacing: -0.08em;
      color: #fff6c7;
      text-shadow:
        0 0 18px rgba(255, 226, 108, 0.12),
        0 0 34px rgba(92, 255, 149, 0.08);
    }

    .price-card-basic .price-divider {
      color: rgba(242, 213, 107, 0.62);
      transform: translateY(-2px);
    }

    .price-card-basic .price-currency {
      font-size: 22px;
      font-weight: 900;
      color: #f2d56b;
      letter-spacing: -0.04em;
      transform: translateY(-4px);
    }

    .price-card.featured .price-range {
      display: inline-flex;
      align-items: baseline;
      gap: 3px;
      font-size: 48px;
      line-height: 0.9;
      letter-spacing: -0.08em;
      color: #ecffe0;
      text-shadow:
        0 0 18px rgba(92, 255, 149, 0.16),
        0 0 34px rgba(182, 255, 92, 0.1);
    }

    .price-card.featured .price-divider {
      color: rgba(182, 255, 92, 0.7);
      transform: translateY(-2px);
    }

    .price-card.featured .price-currency {
      font-size: 22px;
      font-weight: 900;
      color: #b6ff5c;
      letter-spacing: -0.04em;
      transform: translateY(-4px);
    }

    .price-card-custom .price-range {
      display: inline-flex;
      align-items: baseline;
      gap: 3px;
      font-size: 44px;
      line-height: 0.9;
      letter-spacing: -0.08em;
      color: #d8ffe6;
      text-shadow:
        0 0 18px rgba(92, 255, 149, 0.12),
        0 0 34px rgba(92, 255, 149, 0.06);
    }

    .price-card-custom .price-divider {
      color: rgba(220, 255, 231, 0.7);
      transform: translateY(-1px);
    }

    .price-card-custom .price-currency {
      font-size: 22px;
      font-weight: 900;
      color: #73ffb5;
      letter-spacing: -0.04em;
      transform: translateY(-4px);
    }

    .price-card h3 {
      font-size: 23px;
      margin-bottom: 8px;
      color: var(--accent);
      font-family: 'IBM Plex Mono', monospace;
    }

    .price-card > p {
      color: rgba(207, 255, 221, 0.66);
      line-height: 1.6;
      min-height: 48px;
    }

    .price-card .price {
      font-size: 38px;
      font-weight: 900;
      letter-spacing: -0.05em;
      margin: 18px 0;
    }

    .price-card .price small {
      font-size: 13px;
      color: rgba(207, 255, 221, 0.55);
      margin-left: 2px;
      transform: translateY(-2px);
    }

    ul {
      list-style: none;
      display: grid;
      gap: 12px;
      margin: 22px 0 26px;
      color: rgba(207, 255, 221, 0.72);
      font-size: 14px;
      flex: 1;
    }

    li::before {
      content: '>';
      color: var(--accent);
      font-weight: 900;
      margin-right: 8px;
    }

    .price-warning {
      color: #ff6b6b;
    }

    .price-warning::before {
      color: #ff6b6b;
    }

    .pricing .btn {
      margin-top: auto;
      justify-content: center;
    }

    .cta {
      padding: 48px;
      border-radius: 42px;
      text-align: center;
      background:
        linear-gradient(135deg, rgba(12, 40, 20, 0.96), rgba(4, 12, 7, 0.94)),
        repeating-linear-gradient(90deg, rgba(122, 255, 180, 0.05) 0 1px, transparent 1px 26px);
      border: 1px solid rgba(122, 255, 180, 0.16);
      box-shadow: 0 30px 90px rgba(0, 0, 0, 0.36), inset 0 1px 0 rgba(190, 255, 219, 0.05);
    }

    .cta h2 {
      font-size: clamp(34px, 6vw, 64px);
      letter-spacing: -0.06em;
      margin-bottom: 14px;
    }

    .cta p {
      color: rgba(207, 255, 221, 0.68);
      line-height: 1.7;
      max-width: 650px;
      margin: 0 auto 26px;
    }

    #kontak .cta > .btn.btn-drip {
      display: none;
    }

    .contact-socials {
      display: flex;
      justify-content: center;
      gap: 18px;
      flex-wrap: wrap;
      margin-top: 10px;
    }

    .contact-social {
      width: 72px;
      height: 72px;
      border-radius: 50%;
      display: inline-flex;
      align-items: center;
      justify-content: center;
      background: linear-gradient(135deg, rgba(11, 32, 16, 0.95), rgba(4, 12, 7, 0.95));
      border: 1px solid rgba(122, 255, 180, 0.18);
      box-shadow:
        0 18px 34px rgba(0, 0, 0, 0.28),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(12px);
      transition: transform 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease;
      background-repeat: no-repeat;
      background-position: center;
      background-size: 30px 30px;
    }

    .contact-social:hover {
      transform: translateY(-4px);
      border-color: rgba(182, 255, 92, 0.34);
      box-shadow:
        0 24px 42px rgba(0, 0, 0, 0.34),
        0 0 22px rgba(92, 255, 149, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
    }

    .contact-social.wa {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235cff95' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M20 11.5A8.5 8.5 0 0 1 7.4 18.9L3 20l1.2-4.2A8.5 8.5 0 1 1 20 11.5Z'/%3E%3Cpath d='M8.8 9.1c.2-.4.4-.4.6-.4h.5c.2 0 .4 0 .5.4l.5 1.3c.1.2 0 .4-.1.5l-.4.5c-.1.1-.1.3 0 .5.3.6.8 1.1 1.4 1.4.2.1.4.1.5 0l.5-.4c.1-.1.3-.2.5-.1l1.3.5c.4.1.4.3.4.5v.5c0 .2 0 .5-.4.6a5.7 5.7 0 0 1-5.7-5.7Z'/%3E%3C/svg%3E");
    }

    .contact-social.tg {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235cff95' stroke-width='1.8' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M21 4 3.8 10.8c-.8.3-.8 1.4 0 1.7l4.4 1.5 1.5 4.4c.3.8 1.4.8 1.7 0L20 4c.2-.5-.3-1-.8-.8Z'/%3E%3Cpath d='m8.2 14 4.2-4.2'/%3E%3C/svg%3E");
    }

    .contact-social.dc {
      background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%235cff95' stroke-width='1.7' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpath d='M8.5 8.5c2.2-1 4.8-1 7 0'/%3E%3Cpath d='M7 16c2.7 1.5 7.3 1.5 10 0'/%3E%3Cpath d='M7.5 8.8 6 15l2 1.5'/%3E%3Cpath d='M16.5 8.8 18 15l-2 1.5'/%3E%3Ccircle cx='9.5' cy='12.3' r='1' fill='%235cff95' stroke='none'/%3E%3Ccircle cx='14.5' cy='12.3' r='1' fill='%235cff95' stroke='none'/%3E%3C/svg%3E");
    }

    footer {
      width: min(1180px, calc(100% - 32px));
      margin: 0 auto;
      padding: 28px 0 42px;
      color: rgba(207, 255, 221, 0.46);
      display: flex;
      justify-content: space-between;
      gap: 16px;
      flex-wrap: wrap;
      font-size: 14px;
      font-family: 'IBM Plex Mono', monospace;
    }

    @keyframes float {
      0%,
      100% {
        transform: translateY(0);
      }
      50% {
        transform: translateY(-16px);
      }
    }

    @keyframes matrix-rain {
      from {
        transform: translateY(-6%);
      }
      to {
        transform: translateY(6%);
      }
    }

    @keyframes matrix-sweep {
      from {
        transform: translate3d(-3%, -4%, 0);
      }
      to {
        transform: translate3d(3%, 4%, 0);
      }
    }

    @keyframes matrix-drop {
      from {
        transform: translate3d(0, -8%, 0);
      }
      to {
        transform: translate3d(0, 220vh, 0);
      }
    }

    @keyframes glitch-left {
      0%,
      78%,
      100% {
        clip-path: inset(0 0 0 0);
        transform: translateX(-1px);
      }
      8% {
        clip-path: inset(8% 0 62% 0);
        transform: translateX(-4px);
      }
      14% {
        clip-path: inset(48% 0 18% 0);
        transform: translateX(2px);
      }
      18% {
        clip-path: inset(72% 0 6% 0);
        transform: translateX(-3px);
      }
    }

    @keyframes glitch-right {
      0%,
      80%,
      100% {
        clip-path: inset(0 0 0 0);
        transform: translateX(1px);
      }
      10% {
        clip-path: inset(14% 0 58% 0);
        transform: translateX(4px);
      }
      16% {
        clip-path: inset(54% 0 14% 0);
        transform: translateX(-2px);
      }
      22% {
        clip-path: inset(76% 0 4% 0);
        transform: translateX(3px);
      }
    }

    @keyframes glitch-skew {
      0%,
      100% {
        transform: skewX(0deg);
      }
      9% {
        transform: skewX(8deg);
      }
      10% {
        transform: skewX(0deg);
      }
      20% {
        transform: skewX(-7deg);
      }
      21% {
        transform: skewX(0deg);
      }
    }

    @keyframes typing-main {
      0%,
      10% {
        width: 0;
      }
      42%,
      74% {
        width: calc(var(--title-ch, 11) * 1ch);
      }
      100% {
        width: 0;
      }
    }

    @keyframes typing-sub {
      0%,
      26% {
        width: 0;
      }
      54%,
      74% {
        width: calc(var(--sub-ch, 6) * 1ch);
      }
      100% {
        width: 0;
      }
    }

    @keyframes caret-blink {
      0%,
      50% {
        border-color: currentColor;
      }
      51%,
      100% {
        border-color: transparent;
      }
    }

    @keyframes green-pulse {
      0%,
      100% {
        transform: scale(1);
        opacity: 0.92;
      }
      50% {
        transform: scale(1.14);
        opacity: 1;
      }
    }

    @keyframes app-top-glitch-lines {
      0%,
      100% {
        transform: translateY(0);
        opacity: 0.68;
      }
      18% {
        transform: translateY(-1px);
      }
      19% {
        transform: translateY(2px);
        opacity: 0.92;
      }
      20% {
        transform: translateY(0);
      }
      57% {
        transform: translateY(0);
      }
      58% {
        transform: translateY(3px);
        opacity: 0.84;
      }
      60% {
        transform: translateY(-1px);
      }
      61% {
        transform: translateY(0);
      }
    }

    @keyframes app-top-glitch-band {
      0%,
      100% {
        transform: translate3d(0, 0, 0) skewX(0deg);
        opacity: 0.38;
      }
      12% {
        transform: translate3d(4px, -1px, 0) skewX(8deg);
        opacity: 0.72;
      }
      14% {
        transform: translate3d(-6px, 2px, 0) skewX(-9deg);
      }
      16% {
        transform: translate3d(0, 0, 0) skewX(0deg);
        opacity: 0.28;
      }
      48% {
        transform: translate3d(0, 0, 0) skewX(0deg);
      }
      50% {
        transform: translate3d(6px, 1px, 0) skewX(10deg);
        opacity: 0.7;
      }
      52% {
        transform: translate3d(-3px, -2px, 0) skewX(-8deg);
      }
      54% {
        transform: translate3d(0, 0, 0) skewX(0deg);
        opacity: 0.34;
      }
    }

    @keyframes month-blink {
      0%,
      48%,
      100% {
        opacity: 1;
      }
      49%,
      62% {
        opacity: 0.38;
      }
    }

    @keyframes preview-cta-pop {
      0% {
        transform: scale(1);
      }
      35% {
        transform: scale(0.94);
      }
      68% {
        transform: scale(1.08);
      }
      100% {
        transform: scale(1);
      }
    }

    @keyframes preview-cta-burst {
      0% {
        opacity: 0;
        transform: scale(0.45);
      }
      20% {
        opacity: 0.9;
      }
      100% {
        opacity: 0;
        transform: scale(1.8);
      }
    }

    @keyframes preview-cta-eye-blink {
      0%,
      100% {
        transform: scale(1);
        opacity: 0.92;
      }
      38% {
        transform: scale(0.84);
        opacity: 0.65;
      }
      68% {
        transform: scale(1.12);
        opacity: 1;
      }
    }

    @keyframes preview-screen-flash {
      0% {
        opacity: 0.24;
        transform: scale(1);
        filter: brightness(1);
      }
      38% {
        opacity: 0.92;
        transform: scale(1.02);
        filter: brightness(1.2);
      }
      100% {
        opacity: 0;
        transform: scale(1.08);
        filter: brightness(1);
      }
    }

    @keyframes preview-backdrop-in {
      0% {
        opacity: 0;
      }
      100% {
        opacity: 1;
      }
    }

    @keyframes preview-modal-in {
      0% {
        opacity: 0;
        transform: translateY(28px) scale(0.94);
      }
      100% {
        opacity: 1;
        transform: translateY(0) scale(1);
      }
    }

    @keyframes preview-device-in {
      0% {
        opacity: 0;
        transform: translateY(32px) rotateX(18deg) scale(0.92);
        filter: blur(8px);
      }
      100% {
        opacity: 1;
        transform: translateY(0) rotateX(0deg) scale(1);
        filter: blur(0);
      }
    }

    @keyframes preview-modal-content-in {
      0% {
        opacity: 0;
        transform: translateY(18px);
      }
      100% {
        opacity: 1;
        transform: translateY(0);
      }
    }

    @media (prefers-reduced-motion: reduce) {
      .preview-screen,
      .preview-image,
      .preview-cta,
      .preview-modal-backdrop,
      .preview-modal-panel {
        animation: none !important;
        transition: none !important;
      }
    }

    @media (max-width: 920px) {
      header {
        padding: 14px 18px;
      }

      nav {
        display: none;
      }

      .hero {
        grid-template-columns: 1fr;
        padding-top: 36px;
      }

      .phone-wrap {
        min-height: 680px;
      }

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

      .preview-modal-panel {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 26px 20px;
      }

      .admin-modal-panel {
        grid-template-columns: 1fr;
        gap: 22px;
        padding: 26px 20px;
      }

      .preview-modal-info h3 {
        font-size: clamp(28px, 8vw, 44px);
      }

      .admin-modal-copy h3 {
        font-size: clamp(28px, 8vw, 44px);
      }

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

      .price-card.featured {
        transform: none;
      }
    }

    @media (max-width: 520px) {
      body {
        padding-top: 14px;
      }

      header {
        top: 14px;
        border-radius: 24px 32px 24px 32px;
      }

      .phone {
        width: 295px;
        height: 595px;
      }

      .orbit-card {
        display: none;
      }

      .hero-actions {
        flex-direction: column;
      }

      .btn {
        justify-content: center;
      }

      .cta {
        padding: 32px 20px;
      }

      .preview-modal {
        padding: 14px;
      }

      .admin-modal {
        padding: 14px;
      }

      .preview-modal-panel {
        border-radius: 24px;
      }

      .admin-modal-panel {
        border-radius: 24px;
      }

      .preview-modal-actions {
        flex-direction: column;
      }

      .admin-modal-actions {
        flex-direction: column;
      }
    }
