    /* :root {
      --bg: #07090d;
      --panel: rgba(255, 255, 255, 0.06);
      --panel-border: rgba(255, 255, 255, 0.14);
      --text: #f2f5f8;
      --muted: #a9b0bc;
      --accent: #ffffff;
      --soft: #1a1f28;
      --radius: 18px;
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      font-family: "Space Grotesk", sans-serif;
      color: var(--text);
      background: radial-gradient(circle at 20% 0%, #1a1f28 0%, #07090d 42%), var(--bg);
      min-height: 100vh;
      overflow-x: hidden;
    }

    a {
      color: inherit;
      text-decoration: none;
      position: relative;
      display: inline-block;
    }

    a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 100%;
      height: 2px;
      background: currentColor;
      transform: scaleX(0);
      transform-origin: right;
      transition: transform 220ms ease;
    }

    a:hover::after {
      transform: scaleX(1);
      transform-origin: left;
    }

    .site {
      position: relative;
      isolation: isolate;
    }

    .stars {
      position: fixed;
      inset: 0;
      pointer-events: none;
      z-index: -2;
      background:
        radial-gradient(circle at 20% 10%, rgba(255, 255, 255, 0.20), transparent 24%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.12), transparent 32%),
        #04060a;
    }

    .stars::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image:
        radial-gradient(1px 1px at 6% 9%, rgba(255, 255, 255, .6) 95%, transparent),
        radial-gradient(1px 1px at 22% 35%, rgba(255, 255, 255, .44) 95%, transparent),
        radial-gradient(1px 1px at 49% 21%, rgba(255, 255, 255, .5) 95%, transparent),
        radial-gradient(1px 1px at 77% 41%, rgba(255, 255, 255, .44) 95%, transparent),
        radial-gradient(2px 2px at 90% 18%, rgba(255, 255, 255, .44) 95%, transparent),
        radial-gradient(2px 2px at 10% 52%, rgba(255, 255, 255, .34) 95%, transparent),
        radial-gradient(2px 2px at 55% 67%, rgba(255, 255, 255, .32) 95%, transparent),
        radial-gradient(1px 1px at 66% 80%, rgba(255, 255, 255, .58) 95%, transparent),
        radial-gradient(2px 2px at 85% 74%, rgba(255, 255, 255, .38) 95%, transparent),
        radial-gradient(1px 1px at 36% 88%, rgba(255, 255, 255, .34) 95%, transparent);
      opacity: .9;
      animation: drift 16s linear infinite alternate;
    }

    .beam {
      position: absolute;
      top: -240px;
      left: 50%;
      width: 380px;
      height: 560px;
      transform: translateX(-50%) rotate(30deg);
      background: linear-gradient(180deg, rgba(255, 255, 255, .4), rgba(255, 255, 255, 0));
      filter: blur(24px);
      opacity: .45;
      pointer-events: none;
    }

    @keyframes drift {
      from {
        transform: translateY(-10px);
      }

      to {
        transform: translateY(18px);
      }
    }

    .topbar {
      position: sticky;
      top: 0;
      z-index: 10;
      height: 70px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 0 clamp(18px, 4vw, 48px);
      background: linear-gradient(180deg, rgba(17, 20, 26, .92), rgba(17, 20, 26, .6));
      border-bottom: 1px solid rgba(255, 255, 255, .08);
      backdrop-filter: blur(7px);
    }

    .logo-box {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      background: #0e1218;
      display: flex;
      align-items: center;
      justify-content: center;
      padding: 4px;
    }

    .logo-box img {
      width: 100%;
      height: 100%;
      object-fit: contain;
      display: block;
    }

    .menu-btn {
      width: 38px;
      height: 38px;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .18);
      background: #0e1218;
      display: grid;
      place-items: center;
      cursor: pointer;
    }

    .menu-btn i,
    .menu-btn i::before,
    .menu-btn i::after {
      content: "";
      width: 18px;
      height: 2px;
      background: #eef2f7;
      display: block;
      border-radius: 2px;
      position: relative;
    }

    .menu-btn i::before {
      top: -6px;
      position: absolute;
    }

    .menu-btn i::after {
      top: 6px;
      position: absolute;
    }

    .hero {
      position: relative;
      text-align: center;
      padding: clamp(70px, 12vh, 130px) 18px 80px;
      max-width: 980px;
      margin: 0 auto;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      margin-bottom: 12rem;
    }

    .kicker {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: .75rem;
      letter-spacing: .06em;
      color: #cfd5de;
      background: rgba(255, 255, 255, .1);
      border: 1px solid rgba(255, 255, 255, .14);
      text-transform: uppercase;
    }

    h1 {
      margin: 18px auto 0;
      max-width: 860px;
      font-size: clamp(2.2rem, 7vw, 5rem);
      line-height: .94;
      letter-spacing: -0.03em;
      text-wrap: balance;
      font-weight: 700;
    }

    .intro {
      margin: 22px auto 0;
      max-width: 700px;
      color: var(--muted);
      font-size: clamp(1rem, 2.2vw, 1.35rem);
      line-height: 1.5;
    }

    .hero-actions {
      margin-top: 32px;
      display: flex;
      justify-content: center;
      gap: 12px;
      flex-wrap: wrap;
    }

    .btn {
      border-radius: 14px;
      padding: 13px 24px;
      font-weight: 600;
      border: 1px solid transparent;
      transition: .2s ease;
    }

    .btn.primary {
      background: #fff;
      color: #0a0e15;
    }

    .btn.secondary {
      background: rgba(255, 255, 255, .12);
      color: #f3f6f9;
      border-color: rgba(255, 255, 255, .16);
    }

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

    .trust-line {
      margin-top: 88px;
      font-size: .78rem;
      letter-spacing: .08em;
      color: #8f98a7;
      text-transform: uppercase;
    }

    .logo-strip {
      margin-top: 18px;
      width: 100%;
      overflow: hidden;
      mask-image: linear-gradient(90deg, transparent 0%, #000 15%, #000 85%, transparent 100%);
    }

    .logo-track {
      display: flex;
      align-items: center;
      gap: 42px;
      width: max-content;
      animation: marquee 28s linear infinite;
    }

    .logo-track img {
      height: 48px;
      width: auto;
      object-fit: contain;
      opacity: .82;
      filter: grayscale(1) brightness(1.3);
    }

    @keyframes marquee {
      from {
        transform: translateX(0);
      }

      to {
        transform: translateX(-50%);
      }
    }

    .content {
      max-width: 1100px;
      margin: 0 auto;
      padding: 0 18px 80px;
      display: grid;
      gap: 0;
      grid-template-columns: 1fr;
    }

    .panel {
      min-height: 100vh;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      padding: clamp(34px, 6vw, 72px) 0;
      display: grid;
      align-content: center;
      background: none;
    }

    .panel h2 {
      margin: 0 0 18px;
      font-size: clamp(2rem, 6vw, 4.8rem);
      line-height: .95;
      letter-spacing: -0.03em;
      color: #f4f7fb;
      text-transform: none;
    }

    .panel p,
    .panel li {
      color: #c3c9d4;
      line-height: 1.7;
      font-size: clamp(1rem, 1.55vw, 1.25rem);
    }

    .about,
    .process,
    .contact {
      grid-column: span 1;
    }

    .skills,
    .steps {
      margin: 20px 0 0;
      padding-left: 18px;
      display: grid;
      gap: 0;
    }

    .skills li,
    .steps li {
      padding: 14px 0;
      border-bottom: 1px solid rgba(255, 255, 255, .1);
      line-height: 1.6;
    }

    .about p,
    .process p,
    .contact p {
      max-width: 72ch;
    }

    .services-showcase {
      max-width: 1100px;
      margin: 0 auto;
      padding: 24px 18px 10px;
    }

    .services-composite {
      min-height: 100vh;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      padding: clamp(28px, 5vw, 52px) 0;
      display: grid;
      grid-template-rows: auto 1fr;
      gap: clamp(20px, 4vw, 42px);
    }

    .services-top {
      display: grid;
      grid-template-columns: 1.2fr auto;
      gap: 20px;
      align-items: start;
    }

    .services-kicker {
      display: inline-block;
      padding: 8px 14px;
      border-radius: 999px;
      font-size: .75rem;
      letter-spacing: .06em;
      color: #cfd5de;
      background: rgba(255, 255, 255, .08);
      border: 1px solid rgba(255, 255, 255, .14);
      text-transform: uppercase;
      margin-bottom: 16px;
    }

    .services-title {
      margin: 0;
      max-width: 620px;
      font-size: clamp(2rem, 6.6vw, 5.3rem);
      line-height: .96;
      letter-spacing: -0.03em;
    }

    .services-title .muted {
      color: rgba(242, 245, 248, .34);
      display: block;
    }

    .services-top .btn {
      align-self: start;
      margin-top: 52px;
    }

    .services-grid {
      display: grid;
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: clamp(18px, 2.2vw, 36px);
      align-content: end;
    }

    .services-card {
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      padding-bottom: clamp(18px, 2.2vw, 26px);
    }

    .services-row {
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: clamp(14px, 2.2vw, 24px);
    }

    .services-value {
      margin: 0;
      font-size: clamp(3rem, 9.8vw, 8rem);
      line-height: .9;
      letter-spacing: -0.04em;
      color: #f2f5f8;
      font-weight: 700;
    }

    .services-text {
      margin: clamp(12px, 2vw, 20px) 0 0;
      color: #aeb6c2;
      font-size: clamp(1.2rem, 2.9vw, 2.7rem);
      letter-spacing: -0.02em;
    }

    .service-screen {
      min-height: 100vh;
      display: flex;
      align-items: center;
      border-bottom: 1px solid rgba(255, 255, 255, .12);
      scroll-margin-top: 80px;
    }

    .service-item {
      width: 100%;
      display: grid;
      grid-template-columns: auto 1fr;
      align-items: center;
      gap: clamp(14px, 2.5vw, 26px);
      padding: clamp(18px, 3vw, 30px) 0;
    }

    .metric-dot {
      width: clamp(20px, 2.4vw, 32px);
      height: clamp(20px, 2.4vw, 32px);
      border-radius: 50%;
      box-shadow: 0 0 0 14px rgba(255, 255, 255, .04);
      margin-top: 12px;
      animation: pulse 2.2s ease-in-out infinite;
    }

    .metric-dot.pink {
      background: #e2537f;
      box-shadow: 0 0 0 14px rgba(226, 83, 127, .15);
    }

    .metric-dot.lime {
      background: #96d963;
      box-shadow: 0 0 0 14px rgba(150, 217, 99, .14);
    }

    .metric-dot.green {
      background: #4fc784;
      box-shadow: 0 0 0 14px rgba(79, 199, 132, .14);
    }

    .metric-dot.blue {
      background: #44a2ff;
      box-shadow: 0 0 0 14px rgba(68, 162, 255, .14);
    }

    @keyframes pulse {

      0%,
      100% {
        transform: scale(1);
        opacity: 1;
      }

      50% {
        transform: scale(1.13);
        opacity: 0.85;
      }
    }

    .metric-value {
      margin: 0;
      font-size: clamp(3rem, 12vw, 9rem);
      line-height: .9;
      letter-spacing: -0.04em;
      color: #f2f5f8;
      font-weight: 700;
    }

    .metric-label {
      margin: clamp(16px, 3vw, 26px) 0 0;
      color: #aeb6c2;
      font-size: clamp(1.4rem, 3.3vw, 3.1rem);
      letter-spacing: -0.02em;
    }

    .contact a {
      color: #f0f4ff;
    }

    .contact .social-link {
      display: inline-flex;
      align-items: center;
      gap: 1em;
      justify-self: start;
      width: fit-content;
    }

    .contact .social-link::after {
      display: none;
    }

    .contact .social-link img {
      margin-right: 0;
    }

    .contact-form {
      margin-top: 24px;
      display: grid;
      gap: 12px;
      max-width: 760px;
    }

    .contact-form input,
    .contact-form textarea {
      width: 100%;
      border-radius: 10px;
      border: 1px solid rgba(255, 255, 255, .16);
      background: rgba(8, 11, 16, .76);
      color: #f5f7fb;
      padding: 12px;
      font: inherit;
    }

    .contact-form button {
      border: 0;
      cursor: pointer;
      font: inherit;
    }

    footer {
      text-align: center;
      color: #97a0ae;
      padding: 10px 18px 34px;
      font-size: .9rem;
    }

    @media (max-width: 900px) {
      .services-composite {
        min-height: auto;
      }

      .services-top {
        grid-template-columns: 1fr;
        gap: 14px;
      }

      .services-top .btn {
        margin-top: 0;
        justify-self: start;
      }

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

      .service-screen {
        min-height: 82vh;
      }

      .panel {
        min-height: 86vh;
      }
    }

    @media (max-width: 560px) {
      .topbar {
        height: 62px;
      }

      .hero {
        padding-top: 62px;
      }

      .logo-track img {
        height: 38px;
      }

      .metric-label {
        max-width: 18ch;
      }

      .services-text {
        max-width: 18ch;
      }
    } */