:root {
      color-scheme: dark;
      --bg: #03050a;
      --bg-2: #070b14;
      --glass: rgba(255, 255, 255, 0.075);
      --glass-2: rgba(255, 255, 255, 0.12);
      --line: rgba(255, 255, 255, 0.15);
      --line-soft: rgba(255, 255, 255, 0.08);
      --text: #f7f8fb;
      --muted: #a9b2c1;
      --quiet: #727b89;
      --cyan: #25f4ee;
      --blue: #4fa3ff;
      --green: #74e0b2;
      --pink: #fe2c55;
      --violet: #b76cff;
      --gold: #ffd166;
      --radius: 30px;
      --shadow: 0 38px 120px rgba(0, 0, 0, 0.48);
    }

    * {
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      margin: 0;
      min-width: 320px;
      overflow-x: hidden;
      font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
      background:
        radial-gradient(circle at 12% -8%, rgba(37, 244, 238, 0.16), transparent 34vw),
        radial-gradient(circle at 92% 10%, rgba(254, 44, 85, 0.14), transparent 34vw),
        radial-gradient(circle at 62% 84%, rgba(79, 163, 255, 0.13), transparent 38vw),
        var(--bg);
      color: var(--text);
    }

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

    .grain,
    .scanlines {
      position: fixed;
      inset: 0;
      z-index: -2;
      pointer-events: none;
    }

    .grain {
      opacity: 0.24;
      background-image:
        linear-gradient(rgba(255, 255, 255, 0.028) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.022) 1px, transparent 1px);
      background-size: 72px 72px;
      mask-image: linear-gradient(to bottom, black, rgba(0, 0, 0, 0.68), transparent 94%);
    }

    .scanlines {
      z-index: -1;
      opacity: 0.16;
      background: repeating-linear-gradient(to bottom, rgba(255,255,255,0.035) 0 1px, transparent 1px 6px);
      mix-blend-mode: overlay;
    }

    .shell {
      width: min(1220px, calc(100% - 36px));
      margin: 0 auto;
    }

    .nav {
      position: fixed;
      top: 18px;
      left: 50%;
      z-index: 50;
      width: min(1220px, calc(100% - 36px));
      transform: translateX(-50%);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 18px;
      padding: 10px 12px;
      border: 1px solid var(--line-soft);
      border-radius: 999px;
      background: rgba(3, 5, 10, 0.64);
      backdrop-filter: blur(28px) saturate(1.45);
      box-shadow: 0 18px 90px rgba(0, 0, 0, 0.36);
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 12px;
      min-width: 0;
      padding-left: 2px;
      font-size: 14px;
      font-weight: 860;
      white-space: nowrap;
    }

    .brand img {
      width: 38px;
      height: 38px;
      filter: drop-shadow(0 0 24px rgba(37, 244, 238, 0.28));
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 8px;
      color: rgba(247, 248, 251, 0.72);
      font-size: 13px;
      font-weight: 760;
    }

    .nav-links a {
      padding: 10px 12px;
      border-radius: 999px;
      transition: background 220ms ease, color 220ms ease;
    }

    .nav-links a:hover {
      background: rgba(255, 255, 255, 0.08);
      color: var(--text);
    }

    .language-switch,
    .language-link,
    .button {
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }

    .language-switch {
      gap: 6px;
      padding: 4px;
      border: 1px solid var(--line-soft);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.045);
      backdrop-filter: blur(18px);
    }

    .language-link,
    .button {
      border-radius: 999px;
      font-weight: 920;
      white-space: nowrap;
      transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease, background 220ms ease;
    }

    .language-link {
      min-height: 32px;
      gap: 6px;
      padding: 0 10px;
      color: rgba(247, 248, 251, 0.68);
      font-size: 12px;
      letter-spacing: 0;
    }

    .language-link:hover,
    .language-link.is-active {
      background: #f7f8fb;
      color: #03050a;
      box-shadow: 0 0 34px rgba(255, 255, 255, 0.18);
    }

    .button {
      min-height: 54px;
      padding: 0 23px;
      font-size: 15px;
    }

    .button:hover,
    .language-link:hover {
      transform: translateY(-2px);
    }

    .button.primary {
      background: #f7f8fb;
      color: #03050a;
      box-shadow: 0 22px 80px rgba(255, 255, 255, 0.14);
    }

    .button.secondary {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.055);
      color: var(--text);
      backdrop-filter: blur(18px);
    }

    .hero {
      position: relative;
      min-height: 100svh;
      display: grid;
      align-items: center;
      padding: 132px 0 66px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: minmax(0, 1.02fr) minmax(370px, 0.78fr);
      align-items: center;
      gap: clamp(38px, 6vw, 92px);
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 23px;
      padding: 9px 12px;
      border: 1px solid var(--line);
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.055);
      color: rgba(247, 248, 251, 0.78);
      font-size: 12px;
      font-weight: 880;
      letter-spacing: 0.13em;
      text-transform: uppercase;
      backdrop-filter: blur(16px);
    }

    .pulse {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 0 0 rgba(116, 224, 178, 0.58);
      animation: pulse 1.8s ease-out infinite;
    }

    @keyframes pulse {
      to {
        box-shadow: 0 0 0 13px rgba(116, 224, 178, 0);
      }
    }

    h1 {
      margin: 0;
      max-width: 850px;
      font-size: clamp(56px, 8.6vw, 118px);
      line-height: 0.88;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .shine {
      display: inline-block;
      color: transparent;
      background:
        linear-gradient(100deg, #fff 0%, #dffbff 25%, #25f4ee 44%, #fe2c55 70%, #fff 100%);
      background-size: 220% 100%;
      background-clip: text;
      -webkit-background-clip: text;
      animation: text-shine 7s ease-in-out infinite;
    }

    @keyframes text-shine {
      0%, 100% {
        background-position: 0% 50%;
      }
      50% {
        background-position: 100% 50%;
      }
    }

    .hero-copy {
      max-width: 700px;
      margin: 28px 0 0;
      color: rgba(247, 248, 251, 0.72);
      font-size: clamp(18px, 2vw, 24px);
      line-height: 1.48;
      text-wrap: balance;
    }

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

    .proof-row {
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 10px;
      max-width: 680px;
      margin-top: 34px;
    }

    .proof {
      padding: 15px 16px;
      border: 1px solid var(--line-soft);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.05);
      backdrop-filter: blur(14px);
    }

    .proof strong {
      display: block;
      font-size: 18px;
      line-height: 1;
    }

    .proof span {
      display: block;
      margin-top: 7px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 760;
    }

    .launch-row {
      display: grid;
      grid-template-columns: 138px minmax(180px, 1fr);
      align-items: center;
      gap: 16px;
      max-width: 530px;
      margin-top: 28px;
      color: var(--muted);
      font-size: 13px;
      font-weight: 780;
    }

    .progress {
      height: 7px;
      overflow: hidden;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.09);
    }

    .progress span {
      display: block;
      width: 78%;
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(90deg, var(--cyan), var(--green), var(--pink));
      box-shadow: 0 0 28px rgba(37, 244, 238, 0.32);
    }

    .visual {
      position: relative;
      min-height: 590px;
      perspective: 1200px;
      overflow: visible;
      isolation: isolate;
    }

    .visual::before,
    .visual::after {
      content: "";
      position: absolute;
      pointer-events: none;
      border-radius: 50%;
      z-index: 0;
    }

    .visual::before {
      top: -20px;
      right: 0;
      width: min(570px, calc(100% - 4px));
      aspect-ratio: 1 / 1;
      background: url("../img/signal-rings.svg") center / contain no-repeat;
      opacity: 0.62;
      filter: drop-shadow(0 0 28px rgba(37,244,238,0.18));
      mix-blend-mode: screen;
      animation: data-ring 120s linear infinite;
      z-index: 2;
    }

    .visual::after {
      top: 36px;
      right: 62px;
      width: min(420px, calc(100% - 84px));
      aspect-ratio: 1 / 1;
      background: url("../img/signal-rings.svg") center / contain no-repeat;
      opacity: 0.28;
      filter: drop-shadow(0 0 22px rgba(254,44,85,0.12));
      mix-blend-mode: screen;
      animation: data-ring 96s linear infinite;
      z-index: 2;
    }

    .halo {
      position: absolute;
      inset: 5% -14% 5% -16%;
      border-radius: 50%;
      background:
        radial-gradient(circle at 30% 28%, rgba(37, 244, 238, 0.2), transparent 30%),
        radial-gradient(circle at 76% 64%, rgba(254, 44, 85, 0.22), transparent 34%),
        radial-gradient(circle at 50% 50%, rgba(255, 255, 255, 0.07), transparent 57%);
      filter: blur(2px);
      animation: floaty 7s ease-in-out infinite;
      z-index: 0;
    }

    @keyframes floaty {
      0%, 100% {
        transform: translateY(0) scale(1);
      }
      50% {
        transform: translateY(-15px) scale(1.025);
      }
    }

    .neural-engine {
      position: absolute;
      top: -18px;
      right: 0;
      width: min(570px, calc(100% - 4px));
      aspect-ratio: 1 / 1;
      pointer-events: none;
      mix-blend-mode: screen;
      z-index: 4;
    }

    .neural-engine svg {
      position: absolute;
      inset: 0;
      overflow: visible;
    }

    .neural-link {
      fill: none;
      stroke: rgba(37, 244, 238, 0.52);
      stroke-width: 0.42;
      stroke-linecap: round;
      stroke-dasharray: 1;
      stroke-dashoffset: 1;
      opacity: 0;
      filter: drop-shadow(0 0 4px rgba(37, 244, 238, 0.58));
      animation: neural-transfer 24s ease-in-out infinite;
    }

    .neural-link-b {
      stroke: rgba(254, 44, 85, 0.46);
      filter: drop-shadow(0 0 4px rgba(254, 44, 85, 0.5));
      animation-delay: 6s;
    }

    .neural-link-c {
      stroke: rgba(116, 224, 178, 0.48);
      filter: drop-shadow(0 0 4px rgba(116, 224, 178, 0.52));
      animation-delay: 12s;
    }

    .neural-link-d {
      stroke: rgba(183, 108, 255, 0.42);
      filter: drop-shadow(0 0 4px rgba(183, 108, 255, 0.48));
      animation-delay: 18s;
    }

    .neural-link-e {
      stroke: rgba(37, 244, 238, 0.58);
      stroke-width: 0.5;
      filter: drop-shadow(0 0 5px rgba(37, 244, 238, 0.62));
      animation-delay: 3s;
    }

    .neural-node {
      position: absolute;
      width: 7px;
      height: 7px;
      margin: -3.5px 0 0 -3.5px;
      border-radius: 50%;
      background: rgba(247, 248, 251, 0.72);
      box-shadow:
        0 0 0 1px rgba(255, 255, 255, 0.18),
        0 0 18px rgba(37, 244, 238, 0.34);
      opacity: 0.34;
      animation: neural-node-life 24s ease-in-out infinite;
    }

    .neural-node::after {
      content: "";
      position: absolute;
      inset: -9px;
      border-radius: 50%;
      border: 1px solid rgba(37, 244, 238, 0.16);
      opacity: 0;
      transform: scale(0.45);
      animation: neural-node-ring 24s ease-in-out infinite;
    }

    .neural-node-a { left: 18%; top: 40%; background: var(--cyan); }
    .neural-node-b { left: 68%; top: 36%; background: var(--green); animation-delay: 2.2s; }
    .neural-node-c { left: 61%; top: 71%; background: var(--pink); animation-delay: 8.2s; }
    .neural-node-d { left: 22%; top: 55%; background: var(--blue); animation-delay: 14.2s; }
    .neural-node-e { left: 58%; top: 53%; background: var(--violet); animation-delay: 20.2s; }
    .neural-node-f { left: 38%; top: 18%; background: var(--cyan); animation-delay: 5.2s; }

    .neural-node-b::after { border-color: rgba(116, 224, 178, 0.18); animation-delay: 2.2s; }
    .neural-node-c::after { border-color: rgba(254, 44, 85, 0.18); animation-delay: 8.2s; }
    .neural-node-d::after { border-color: rgba(79, 163, 255, 0.18); animation-delay: 14.2s; }
    .neural-node-e::after { border-color: rgba(183, 108, 255, 0.18); animation-delay: 20.2s; }
    .neural-node-f::after { border-color: rgba(37, 244, 238, 0.2); animation-delay: 5.2s; }

    .device {
      position: absolute;
      border: 1px solid rgba(255, 255, 255, 0.18);
      background: linear-gradient(145deg, rgba(255, 255, 255, 0.15), rgba(255, 255, 255, 0.045));
      backdrop-filter: blur(24px) saturate(1.38);
      box-shadow: var(--shadow);
    }

    .desktop {
      top: 52px;
      right: 0;
      width: min(540px, 96%);
      height: 340px;
      border-radius: 32px;
      transform: rotateY(-15deg) rotateX(7deg);
      transform-style: preserve-3d;
      overflow: hidden;
      z-index: 1;
    }

    .desktop::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 28% 24%, rgba(37, 244, 238, 0.3), transparent 24%),
        radial-gradient(circle at 83% 26%, rgba(254, 44, 85, 0.26), transparent 24%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.1), rgba(3, 5, 10, 0.72)),
        rgba(3, 5, 10, 0.78);
    }

    .browser-bar {
      position: absolute;
      top: 18px;
      left: 18px;
      right: 18px;
      height: 38px;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 999px;
      background: rgba(3, 5, 10, 0.68);
    }

    .browser-bar::before {
      content: "";
      position: absolute;
      left: 16px;
      top: 50%;
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: var(--pink);
      transform: translateY(-50%);
      box-shadow: 18px 0 0 var(--green), 36px 0 0 var(--cyan);
    }

    .dashboard {
      position: absolute;
      top: 82px;
      left: 28px;
      right: 28px;
      display: grid;
      grid-template-columns: 1fr 0.72fr;
      gap: 14px;
    }

    .metric-card {
      grid-column: 1 / -1;
      border: 1px solid rgba(37, 244, 238, 0.18);
      border-radius: 21px;
      background:
        radial-gradient(circle at 12% 12%, rgba(37, 244, 238, 0.16), transparent 32%),
        linear-gradient(135deg, rgba(255,255,255,0.07), rgba(3,5,10,0.62)),
        rgba(3, 5, 10, 0.78);
      padding: 18px;
      box-shadow:
        inset 0 0 0 1px rgba(255,255,255,0.035),
        0 0 34px rgba(37, 244, 238, 0.08);
    }

    .metric-card strong {
      display: block;
      max-width: 100%;
      font-size: clamp(26px, 2.7vw, 39px);
      line-height: 1;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .metric-card span,
    .mini span {
      display: block;
      margin-top: 8px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 850;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .mini {
      min-height: 96px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 20px;
      background: rgba(3, 5, 10, 0.34);
      padding: 15px;
    }

    .mini b {
      display: block;
      font-size: 24px;
    }

    .lines {
      display: grid;
      gap: 10px;
      align-content: center;
    }

    .lines i {
      display: block;
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.15);
    }

    .lines i:nth-child(1) {
      width: 90%;
      background: linear-gradient(90deg, var(--cyan), rgba(255, 255, 255, 0.15));
    }

    .lines i:nth-child(2) {
      width: 66%;
    }

    .lines i:nth-child(3) {
      width: 78%;
      background: linear-gradient(90deg, var(--green), rgba(255, 255, 255, 0.14));
    }

    .phone {
      right: 36px;
      bottom: 28px;
      width: 174px;
      height: 332px;
      border-radius: 40px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.08), rgba(3, 5, 10, 0.82)),
        rgba(3, 5, 10, 0.88);
      transform: rotateY(-24deg) rotateX(10deg) rotateZ(2deg) translateZ(70px);
      transform-style: preserve-3d;
      overflow: hidden;
      z-index: 3;
    }

    .phone::before {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 31px;
      background:
        radial-gradient(circle at 18% 8%, rgba(37, 244, 238, 0.2), transparent 24%),
        radial-gradient(circle at 92% 90%, rgba(254, 44, 85, 0.18), transparent 32%),
        linear-gradient(180deg, rgba(255, 255, 255, 0.055), rgba(255, 255, 255, 0.012)),
        #03050a;
    }

    .phone::after {
      content: "";
      position: absolute;
      inset: 10px;
      border-radius: 31px;
      background:
        linear-gradient(rgba(255,255,255,0.045) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.034) 1px, transparent 1px);
      background-size: 28px 28px;
      opacity: 0.42;
      mask-image: linear-gradient(to bottom, transparent, black 18%, black 82%, transparent);
    }

    .monitor-ui {
      position: absolute;
      inset: 22px 14px 18px;
      display: grid;
      grid-template-rows: auto minmax(0, 1fr) auto;
      gap: 8px;
      transform: translateZ(26px);
      z-index: 1;
    }

    .phone-status {
      grid-column: 1 / -1;
      display: flex;
      align-items: center;
      gap: 7px;
      min-height: 22px;
      padding: 0 2px;
      color: rgba(247, 248, 251, 0.66);
      font-size: 9px;
      font-weight: 920;
      letter-spacing: 0.1em;
      text-transform: uppercase;
    }

    .phone-status span {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 16px rgba(116, 224, 178, 0.72);
      animation: status-blink 1.9s ease-in-out infinite;
    }

    @keyframes status-blink {
      50% {
        transform: scale(0.68);
        opacity: 0.58;
      }
    }

    .monitor-window {
      position: relative;
      overflow: hidden;
      min-height: 238px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 22px;
      background:
        radial-gradient(circle at 20% 8%, rgba(37, 244, 238, 0.18), transparent 34%),
        linear-gradient(145deg, rgba(255,255,255,0.08), rgba(255,255,255,0.022)),
        rgba(3, 5, 10, 0.74);
      box-shadow: 0 18px 45px rgba(0, 0, 0, 0.32);
    }

    .monitor-window::before {
      content: "";
      position: absolute;
      inset: -30% -50%;
      background: linear-gradient(115deg, transparent 30%, rgba(255,255,255,0.16), transparent 68%);
      transform: translateX(-75%);
      animation: card-scan 4.6s ease-in-out infinite;
      pointer-events: none;
    }

    .monitor-track {
      position: relative;
      z-index: 1;
      display: flex;
      width: 400%;
      height: 100%;
      animation: monitor-swipe 22s cubic-bezier(0.76, 0, 0.24, 1) infinite;
    }

    .monitor-page {
      flex: 0 0 25%;
      min-height: 238px;
      padding: 10px;
      display: grid;
      align-content: start;
      gap: 9px;
    }

    .monitor-head {
      display: grid;
      gap: 3px;
    }

    .monitor-head span,
    .metric-pair span,
    .alert-line span {
      color: rgba(247, 248, 251, 0.62);
      font-size: 7.5px;
      font-weight: 900;
      letter-spacing: 0.07em;
      text-transform: uppercase;
    }

    .monitor-head strong {
      color: var(--text);
      font-size: 18px;
      line-height: 1;
    }

    .ring {
      position: relative;
      width: 78px;
      height: 78px;
      margin: 2px auto 0;
      display: grid;
      place-items: center;
      border-radius: 50%;
      background:
        radial-gradient(circle at 50% 50%, #07111f 0 54%, transparent 55%),
        conic-gradient(var(--cyan) 0 var(--value), rgba(255,255,255,0.08) var(--value) 100%);
      box-shadow: 0 0 34px rgba(37, 244, 238, 0.18);
    }

    .ring b {
      color: var(--text);
      font-size: 25px;
      line-height: 1;
    }

    .sparkline {
      height: 42px;
      display: flex;
      align-items: end;
      gap: 5px;
      padding: 7px;
      border-radius: 14px;
      background: rgba(255,255,255,0.055);
    }

    .sparkline i {
      flex: 1;
      min-height: 8px;
      border-radius: 999px;
      background: linear-gradient(180deg, var(--cyan), rgba(37,244,238,0.16));
      animation: bar-rise 2.8s ease-in-out infinite;
    }

    .sparkline i:nth-child(2) { height: 62%; animation-delay: -0.4s; }
    .sparkline i:nth-child(3) { height: 88%; animation-delay: -0.9s; }
    .sparkline i:nth-child(4) { height: 46%; animation-delay: -1.3s; }
    .sparkline i:nth-child(5) { height: 78%; animation-delay: -1.8s; }

    .bars {
      min-height: 90px;
      display: flex;
      align-items: end;
      gap: 8px;
      padding: 10px;
      border-radius: 16px;
      background:
        linear-gradient(rgba(255,255,255,0.055) 1px, transparent 1px),
        rgba(255,255,255,0.045);
      background-size: 100% 25%;
    }

    .bars i {
      flex: 1;
      display: block;
      border-radius: 999px 999px 5px 5px;
      background: linear-gradient(180deg, var(--pink), var(--cyan));
      box-shadow: 0 0 20px rgba(254,44,85,0.16);
    }

    .bars i:nth-child(1) { height: 44%; }
    .bars i:nth-child(2) { height: 64%; }
    .bars i:nth-child(3) { height: 78%; }
    .bars i:nth-child(4) { height: 96%; }

    .metric-pair {
      display: flex;
      justify-content: space-between;
      gap: 5px;
    }

    .metric-pair span,
    .alert-line {
      min-width: 0;
      padding: 6px 6px;
      border: 1px solid rgba(255,255,255,0.09);
      border-radius: 999px;
      background: rgba(255,255,255,0.055);
      white-space: nowrap;
    }

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

    .micro-grid i {
      height: 28px;
      border-radius: 10px;
      background: linear-gradient(135deg, rgba(37,244,238,0.22), rgba(254,44,85,0.1));
      animation: tile-pulse 3.2s ease-in-out infinite;
    }

    .micro-grid i:nth-child(2n) {
      background: linear-gradient(135deg, rgba(116,224,178,0.2), rgba(79,163,255,0.1));
      animation-delay: -1s;
    }

    .signal-chips {
      position: relative;
      display: grid;
      grid-template-columns: repeat(3, minmax(0, 1fr));
      gap: 5px;
      padding-top: 2px;
    }

    .signal-chips::before {
      content: "";
      position: absolute;
      left: 8%;
      right: 8%;
      top: 50%;
      height: 1px;
      background: linear-gradient(90deg, transparent, rgba(37,244,238,0.55), rgba(254,44,85,0.42), transparent);
      transform: translateY(-50%);
      opacity: 0.7;
    }

    .signal-chips span {
      position: relative;
      display: grid;
      place-items: center;
      min-height: 30px;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 12px;
      background:
        radial-gradient(circle at 50% 0%, rgba(37,244,238,0.18), transparent 46%),
        rgba(255,255,255,0.06);
      color: rgba(247,248,251,0.72);
      font-size: 7px;
      font-weight: 950;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      box-shadow: 0 0 18px rgba(37,244,238,0.08);
      animation: signal-chip 3.6s ease-in-out infinite;
    }

    .signal-chips span::before {
      content: "";
      position: absolute;
      top: 5px;
      width: 5px;
      height: 5px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(37,244,238,0.78);
      transform: translateY(-12px);
    }

    .signal-chips span:nth-child(2) {
      animation-delay: -1.1s;
    }

    .signal-chips span:nth-child(2)::before {
      background: var(--green);
      box-shadow: 0 0 12px rgba(116,224,178,0.78);
    }

    .signal-chips span:nth-child(3) {
      animation-delay: -2.2s;
    }

    .signal-chips span:nth-child(3)::before {
      background: var(--pink);
      box-shadow: 0 0 12px rgba(254,44,85,0.78);
    }

    .alert-line {
      display: flex;
      align-items: center;
      gap: 7px;
      border-radius: 13px;
    }

    .alert-line i {
      width: 7px;
      height: 7px;
      flex: 0 0 auto;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 16px rgba(116,224,178,0.58);
    }

    .ai-page {
      background:
        radial-gradient(circle at 84% 18%, rgba(183, 108, 255, 0.18), transparent 34%),
        radial-gradient(circle at 18% 84%, rgba(37, 244, 238, 0.14), transparent 30%);
    }

    .ai-typing {
      min-height: 126px;
      margin: 0;
      padding: 10px;
      overflow: hidden;
      border: 1px solid rgba(255,255,255,0.1);
      border-radius: 15px;
      background: rgba(3, 5, 10, 0.5);
      color: rgba(247, 248, 251, 0.82);
      font: 820 9px/1.55 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      white-space: pre-wrap;
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025);
    }

    .ai-typing b {
      color: var(--cyan);
      font-weight: 920;
    }

    .ai-typing em {
      color: var(--pink);
      font-style: normal;
    }

    .ai-typing .token-key {
      color: var(--green);
    }

    .ai-typing i {
      display: inline-block;
      width: 6px;
      height: 1.15em;
      margin-left: 2px;
      vertical-align: -0.18em;
      background: var(--cyan);
      box-shadow: 0 0 12px rgba(37,244,238,0.72);
      animation: cursor-blink 0.8s steps(2, start) infinite;
    }

    .neural-grid {
      position: relative;
      min-height: 44px;
      border: 1px solid rgba(255,255,255,0.08);
      border-radius: 15px;
      background:
        linear-gradient(90deg, rgba(37,244,238,0.14), transparent 38%, rgba(254,44,85,0.12)),
        rgba(255,255,255,0.045);
      overflow: hidden;
    }

    .neural-grid::before,
    .neural-grid::after {
      content: "";
      position: absolute;
      inset: 50% 11px auto;
      height: 1px;
      background: linear-gradient(90deg, rgba(37,244,238,0.74), rgba(116,224,178,0.5), rgba(254,44,85,0.64));
      transform: translateY(-50%);
      opacity: 0.72;
    }

    .neural-grid::after {
      inset: 12px auto auto 50%;
      width: 1px;
      height: calc(100% - 24px);
      background: linear-gradient(180deg, rgba(183,108,255,0.2), rgba(37,244,238,0.65), rgba(254,44,85,0.18));
      transform: translateX(-50%);
    }

    .neural-grid span {
      position: absolute;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 15px rgba(37,244,238,0.78);
      animation: neural-node 2.8s ease-in-out infinite;
    }

    .neural-grid span:nth-child(1) { left: 12%; top: 17%; }
    .neural-grid span:nth-child(2) { left: 34%; top: 63%; background: var(--green); animation-delay: -0.6s; }
    .neural-grid span:nth-child(3) { left: 50%; top: 42%; background: var(--violet); animation-delay: -1.2s; }
    .neural-grid span:nth-child(4) { right: 28%; top: 22%; background: var(--pink); animation-delay: -1.8s; }
    .neural-grid span:nth-child(5) { right: 12%; bottom: 18%; background: var(--cyan); animation-delay: -2.3s; }

    .monitor-dots {
      display: flex;
      justify-content: center;
      gap: 5px;
    }

    .monitor-dots span {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: rgba(255,255,255,0.22);
      animation: dot-cycle 22s linear infinite;
    }

    .monitor-dots span:nth-child(2) { animation-delay: 5.5s; }
    .monitor-dots span:nth-child(3) { animation-delay: 11s; }
    .monitor-dots span:nth-child(4) { animation-delay: 16.5s; }

    @keyframes monitor-swipe {
      0%, 18% { transform: translateX(0); }
      25%, 43% { transform: translateX(-25%); }
      50%, 68% { transform: translateX(-50%); }
      75%, 93% { transform: translateX(-75%); }
      100% { transform: translateX(0); }
    }

    @keyframes card-scan {
      0%, 28% {
        transform: translateX(-80%);
      }
      62%, 100% {
        transform: translateX(80%);
      }
    }

    @keyframes bar-rise {
      50% { transform: scaleY(0.72); opacity: 0.72; }
    }

    @keyframes tile-pulse {
      50% { transform: translateY(-2px); filter: brightness(1.25); }
    }

    @keyframes signal-chip {
      50% {
        transform: translateY(-2px);
        border-color: rgba(37,244,238,0.28);
        filter: brightness(1.22);
      }
    }

    @keyframes neural-node {
      50% {
        transform: scale(1.45);
        filter: brightness(1.35);
      }
    }

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

    @keyframes dot-cycle {
      0%, 20% {
        background: var(--cyan);
        box-shadow: 0 0 12px rgba(37,244,238,0.62);
      }
      25%, 100% {
        background: rgba(255,255,255,0.22);
        box-shadow: none;
      }
    }

    .code-card {
      left: 0;
      bottom: 72px;
      width: 292px;
      min-height: 214px;
      padding: 0;
      border-radius: 24px;
      background:
        radial-gradient(circle at 15% 0%, rgba(37, 244, 238, 0.12), transparent 38%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.075), rgba(3, 5, 10, 0.78)),
        rgba(3, 5, 10, 0.9);
      transform: rotateY(18deg) rotateX(4deg) translateZ(80px);
      overflow: hidden;
      z-index: 6;
    }

    .code-head {
      height: 42px;
      display: flex;
      align-items: center;
      gap: 8px;
      padding: 0 15px;
      border-bottom: 1px solid rgba(255, 255, 255, 0.1);
      background: rgba(3, 5, 10, 0.64);
    }

    .dot {
      width: 9px;
      height: 9px;
      border-radius: 50%;
      background: #ff5f57;
      box-shadow: 16px 0 0 #ffbd2e, 32px 0 0 #28c840;
    }

    .code-card pre {
      margin: 0;
      padding: 17px;
      color: rgba(247, 248, 251, 0.8);
      font: 820 13px/1.68 ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, "Liberation Mono", monospace;
      white-space: pre-wrap;
    }

    .code-card b {
      color: var(--cyan);
      font-weight: 920;
    }

    .code-card em {
      color: var(--pink);
      font-style: normal;
    }

    .orbit {
      position: absolute;
      top: 42px;
      right: 88px;
      width: min(330px, calc(100% - 148px));
      aspect-ratio: 1 / 1;
      border-radius: 50%;
      background: url("../img/signal-rings.svg") center / contain no-repeat;
      opacity: 0.22;
      filter: drop-shadow(0 0 20px rgba(37,244,238,0.14));
      mix-blend-mode: screen;
      pointer-events: none;
      animation: data-ring 84s linear infinite;
      z-index: 2;
    }

    .orbit::before,
    .orbit::after {
      content: "";
      position: absolute;
      display: none;
    }

    .orbit::before {
      inset: 58px;
    }

    .orbit::after {
      inset: 118px;
    }

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

    @keyframes neural-transfer {
      0%, 9% {
        stroke-dashoffset: 1;
        opacity: 0;
      }
      13% {
        opacity: 0.56;
      }
      30% {
        stroke-dashoffset: 0;
        opacity: 0.52;
      }
      42% {
        stroke-dashoffset: 0;
        opacity: 0.14;
      }
      48%, 100% {
        stroke-dashoffset: 0;
        opacity: 0;
      }
    }

    @keyframes neural-node-life {
      0%, 8%, 100% {
        opacity: 0.26;
        transform: scale(1);
        filter: brightness(1);
      }
      14%, 28% {
        opacity: 0.92;
        transform: scale(1.42);
        filter: brightness(1.34);
      }
      42% {
        opacity: 0.38;
        transform: scale(1);
        filter: brightness(1);
      }
    }

    @keyframes neural-node-ring {
      0%, 10%, 100% {
        opacity: 0;
        transform: scale(0.45);
      }
      18% {
        opacity: 0.62;
        transform: scale(0.92);
      }
      34% {
        opacity: 0;
        transform: scale(1.45);
      }
    }

    .ticker {
      overflow: hidden;
      border-block: 1px solid var(--line-soft);
      background: rgba(255, 255, 255, 0.035);
      backdrop-filter: blur(20px);
    }

    .ticker-track {
      display: flex;
      width: max-content;
      animation: marquee 28s linear infinite;
    }

    .ticker span {
      display: inline-flex;
      align-items: center;
      padding: 21px 22px;
      color: rgba(247, 248, 251, 0.84);
      font-size: 13px;
      font-weight: 920;
      letter-spacing: 0.16em;
      text-transform: uppercase;
      white-space: nowrap;
    }

    .ticker span::after {
      content: "";
      width: 7px;
      height: 7px;
      margin-left: 22px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--cyan), var(--pink));
    }

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

    .section {
      padding: clamp(76px, 10vw, 132px) 0;
    }

    .section-head {
      display: flex;
      align-items: end;
      justify-content: space-between;
      gap: 28px;
      margin-bottom: 30px;
    }

    .section h2 {
      margin: 0;
      max-width: 780px;
      font-size: clamp(38px, 6.5vw, 88px);
      line-height: 0.94;
      letter-spacing: 0;
      text-wrap: balance;
    }

    .section-head p {
      max-width: 390px;
      margin: 0 0 8px;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.5;
    }

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

    .service-card {
      position: relative;
      min-height: 300px;
      overflow: hidden;
      border: 1px solid var(--line-soft);
      border-radius: var(--radius);
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.115), rgba(255, 255, 255, 0.035));
      padding: 22px;
      box-shadow: 0 20px 80px rgba(0, 0, 0, 0.2);
      isolation: isolate;
      cursor: pointer;
      transition:
        border-color 260ms ease,
        box-shadow 260ms ease,
        filter 260ms ease,
        transform 260ms ease;
    }

    .service-card::before {
      content: "";
      position: absolute;
      inset: -1px;
      opacity: 0;
      border-radius: inherit;
      background:
        radial-gradient(circle at 30% 20%, rgba(37, 244, 238, 0.22), transparent 42%),
        linear-gradient(145deg, rgba(255,255,255,0.06), transparent);
      transition: opacity 240ms ease;
      z-index: -1;
    }

    .service-card::after {
      content: "";
      position: absolute;
      left: 22px;
      right: 22px;
      bottom: 18px;
      height: 3px;
      border-radius: 999px;
      background: linear-gradient(90deg, var(--cyan), var(--green), var(--pink));
      box-shadow: 0 0 22px rgba(37, 244, 238, 0.2);
      opacity: 0;
      transform: scaleX(0.16);
      transform-origin: left;
      z-index: 1;
    }

    .service-card:hover,
    .service-card:focus-visible,
    .service-card.is-active {
      border-color: rgba(37, 244, 238, 0.32);
      box-shadow:
        0 24px 90px rgba(0, 0, 0, 0.28),
        0 0 42px rgba(37, 244, 238, 0.08);
      filter: saturate(1.14) brightness(1.08);
      transform: translateY(-5px);
    }

    .service-card:hover::before,
    .service-card:focus-visible::before,
    .service-card.is-active::before {
      opacity: 1;
    }

    .service-card.is-active::after {
      opacity: 1;
      animation: service-progress 5.8s linear infinite;
    }

    .service-card:nth-child(1) {
      background:
        linear-gradient(90deg, rgba(3,5,10,0.72) 0%, rgba(3,5,10,0.36) 38%, rgba(3,5,10,0.02) 100%),
        linear-gradient(180deg, rgba(3,5,10,0.00) 0%, rgba(3,5,10,0.24) 100%),
        url("../img/services/photo/high-end-websites.png") center / cover no-repeat,
        radial-gradient(circle at 18% 16%, rgba(37, 244, 238, 0.22), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.13), rgba(255, 255, 255, 0.035));
    }

    .service-card:nth-child(2) {
      background:
        linear-gradient(90deg, rgba(3,5,10,0.74) 0%, rgba(3,5,10,0.34) 38%, rgba(3,5,10,0.02) 100%),
        linear-gradient(180deg, rgba(3,5,10,0.00) 0%, rgba(3,5,10,0.24) 100%),
        url("../img/services/photo/seo-foundation.png") center / cover no-repeat,
        radial-gradient(circle at 88% 16%, rgba(116, 224, 178, 0.22), transparent 34%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.032));
    }

    .service-card:nth-child(3) {
      background:
        linear-gradient(90deg, rgba(3,5,10,0.74) 0%, rgba(3,5,10,0.34) 38%, rgba(3,5,10,0.02) 100%),
        linear-gradient(180deg, rgba(3,5,10,0.00) 0%, rgba(3,5,10,0.24) 100%),
        url("../img/services/photo/social-brands.png") center / cover no-repeat,
        radial-gradient(circle at 22% 86%, rgba(254, 44, 85, 0.2), transparent 34%),
        radial-gradient(circle at 82% 18%, rgba(183, 108, 255, 0.16), transparent 32%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.032));
    }

    .service-card:nth-child(4) {
      background:
        linear-gradient(90deg, rgba(3,5,10,0.74) 0%, rgba(3,5,10,0.34) 38%, rgba(3,5,10,0.02) 100%),
        linear-gradient(180deg, rgba(3,5,10,0.00) 0%, rgba(3,5,10,0.24) 100%),
        url("../img/services/photo/apps-apis.png") center / cover no-repeat,
        radial-gradient(circle at 24% 24%, rgba(37, 244, 238, 0.22), transparent 36%),
        radial-gradient(circle at 90% 20%, rgba(254, 44, 85, 0.18), transparent 30%),
        radial-gradient(circle at 82% 78%, rgba(79, 163, 255, 0.24), transparent 36%),
        linear-gradient(145deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.032));
    }

    .service-signal {
      display: inline-grid;
      grid-template-columns: auto repeat(3, 7px);
      align-items: center;
      gap: 7px;
      min-height: 36px;
      padding: 0 12px;
      border: 1px solid rgba(255, 255, 255, 0.13);
      border-radius: 999px;
      background:
        radial-gradient(circle at 18% 0%, rgba(37,244,238,0.16), transparent 45%),
        rgba(3, 5, 10, 0.48);
      box-shadow: inset 0 0 0 1px rgba(255,255,255,0.025);
    }

    .service-signal span {
      color: var(--text);
      font-size: 10px;
      font-weight: 950;
      letter-spacing: 0.12em;
      text-transform: uppercase;
    }

    .service-signal i {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: rgba(255, 255, 255, 0.24);
      box-shadow: none;
      transition: background 220ms ease, box-shadow 220ms ease, transform 220ms ease;
    }

    .service-card.is-active .service-signal i,
    .service-card:hover .service-signal i,
    .service-card:focus-visible .service-signal i {
      background: var(--cyan);
      box-shadow: 0 0 13px rgba(37,244,238,0.62);
      animation: service-pulse 1.9s ease-in-out infinite;
    }

    .service-card.is-active .service-signal i:nth-of-type(2),
    .service-card:hover .service-signal i:nth-of-type(2),
    .service-card:focus-visible .service-signal i:nth-of-type(2) {
      background: var(--green);
      animation-delay: 0.24s;
    }

    .service-card.is-active .service-signal i:nth-of-type(3),
    .service-card:hover .service-signal i:nth-of-type(3),
    .service-card:focus-visible .service-signal i:nth-of-type(3) {
      background: var(--pink);
      animation-delay: 0.48s;
    }

    .service-card h3 {
      margin: 88px 0 12px;
      font-size: 24px;
      line-height: 1.04;
      letter-spacing: 0;
    }

    .service-card p {
      margin: 0;
      color: var(--muted);
      font-size: 15px;
      line-height: 1.45;
    }

    @keyframes service-progress {
      from {
        transform: scaleX(0.16);
      }
      to {
        transform: scaleX(1);
      }
    }

    @keyframes service-pulse {
      50% {
        transform: translateY(-2px) scale(1.2);
        filter: brightness(1.25);
      }
    }

    body.modal-open {
      overflow: hidden;
    }

    .service-modal {
      position: fixed;
      inset: 0;
      display: grid;
      place-items: center;
      padding: 24px;
      opacity: 0;
      visibility: hidden;
      transition: opacity 260ms ease, visibility 260ms ease;
      z-index: 90;
    }

    .service-modal.is-open {
      opacity: 1;
      visibility: visible;
    }

    .service-modal-backdrop {
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 18% 12%, rgba(37, 244, 238, 0.14), transparent 32%),
        radial-gradient(circle at 82% 78%, rgba(254, 44, 85, 0.12), transparent 36%),
        rgba(3, 5, 10, 0.82);
      backdrop-filter: blur(18px) saturate(1.18);
    }

    .service-modal-panel {
      --service-modal-image: url("../img/services/photo/high-end-websites-modal.png");
      position: relative;
      width: min(1180px, 100%);
      max-height: min(760px, calc(100vh - 48px));
      display: grid;
      grid-template-columns: minmax(0, 1.18fr) minmax(360px, 0.82fr);
      gap: 18px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.16);
      border-radius: 32px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035)),
        rgba(3, 5, 10, 0.92);
      box-shadow:
        0 38px 120px rgba(0, 0, 0, 0.52),
        inset 0 0 0 1px rgba(255, 255, 255, 0.035);
      padding: 18px;
      transform: translateY(18px) scale(0.97);
      transition: transform 260ms ease;
      outline: none;
    }

    .service-modal.is-open .service-modal-panel {
      transform: translateY(0) scale(1);
    }

    .service-modal-close {
      position: absolute;
      top: 18px;
      right: 18px;
      width: 42px;
      height: 42px;
      display: grid;
      place-items: center;
      border: 1px solid rgba(255, 255, 255, 0.14);
      border-radius: 50%;
      background: rgba(3, 5, 10, 0.66);
      color: var(--text);
      font-size: 28px;
      line-height: 1;
      cursor: pointer;
      z-index: 2;
    }

    .service-modal-close:hover,
    .service-modal-close:focus-visible {
      border-color: rgba(37, 244, 238, 0.38);
      box-shadow: 0 0 24px rgba(37, 244, 238, 0.12);
      outline: none;
    }

    .service-modal-visual {
      position: relative;
      min-height: 520px;
      overflow: hidden;
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 22px;
      background:
        radial-gradient(circle at 28% 26%, rgba(37,244,238,0.22), transparent 28%),
        radial-gradient(circle at 74% 76%, rgba(254,44,85,0.16), transparent 30%),
        linear-gradient(140deg, rgba(3,5,10,0.18), rgba(3,5,10,0.46)),
        rgba(3, 5, 10, 0.72);
    }

    .service-modal-visual::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(180deg, rgba(3,5,10,0.02), rgba(3,5,10,0.26)),
        linear-gradient(90deg, rgba(3,5,10,0.16), rgba(3,5,10,0.02) 48%, rgba(3,5,10,0.18)),
        var(--service-modal-image) center / contain no-repeat;
      opacity: 1;
      filter: saturate(1.14) contrast(1.04);
    }

    .service-modal-visual::after {
      content: "";
      position: absolute;
      inset: 0;
      background:
        linear-gradient(rgba(255,255,255,0.05) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.035) 1px, transparent 1px);
      background-size: 30px 30px, 30px 30px;
      background-position: 0 0, 0 0;
      mask-image: linear-gradient(to bottom, black, transparent 88%);
      opacity: 0.16;
      mix-blend-mode: screen;
    }

    .service-modal-visual span {
      position: absolute;
      width: 11px;
      height: 11px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 26px rgba(37,244,238,0.72);
      animation: neural-node-life 8s ease-in-out infinite;
    }

    .service-modal-visual span:nth-child(1) {
      left: 26%;
      top: 30%;
    }

    .service-modal-visual span:nth-child(2) {
      right: 24%;
      top: 47%;
      background: var(--green);
      animation-delay: -2.2s;
    }

    .service-modal-visual span:nth-child(3) {
      left: 42%;
      bottom: 25%;
      background: var(--pink);
      animation-delay: -4.4s;
    }

    .service-modal-content {
      display: grid;
      align-content: center;
      gap: 22px;
      min-height: 520px;
      padding: clamp(28px, 4vw, 52px);
      border: 1px solid rgba(255, 255, 255, 0.09);
      border-radius: 22px;
      background:
        radial-gradient(circle at 18% 0%, rgba(37,244,238,0.1), transparent 36%),
        rgba(3, 5, 10, 0.42);
    }

    .service-modal-kicker {
      width: fit-content;
      margin: 0;
      padding: 9px 13px;
      border: 1px solid rgba(37,244,238,0.24);
      border-radius: 999px;
      background: rgba(3, 5, 10, 0.45);
      color: var(--cyan);
      font-size: 11px;
      font-weight: 950;
      letter-spacing: 0.14em;
      text-transform: uppercase;
    }

    .service-modal-content h2 {
      margin: 0;
      max-width: 520px;
      font-size: clamp(36px, 5vw, 64px);
      line-height: 0.94;
      letter-spacing: 0;
    }

    .service-modal-content p {
      max-width: 560px;
      margin: 0;
      color: var(--muted);
      font-size: 18px;
      line-height: 1.55;
    }

    .service-modal-content ul {
      display: grid;
      gap: 10px;
      margin: 0;
      padding: 0;
      list-style: none;
    }

    .service-modal-content li {
      position: relative;
      padding-left: 24px;
      color: rgba(247, 248, 251, 0.82);
      font-size: 15px;
      font-weight: 850;
      line-height: 1.45;
    }

    .service-modal-content li::before {
      content: "";
      position: absolute;
      left: 0;
      top: 0.55em;
      width: 8px;
      height: 8px;
      border-radius: 50%;
      background: var(--green);
      box-shadow: 0 0 14px rgba(116,224,178,0.58);
    }

    .studio-strip {
      display: grid;
      grid-template-columns: minmax(0, 0.92fr) minmax(0, 1.08fr);
      gap: 18px;
    }

    .glass-panel {
      border: 1px solid var(--line-soft);
      border-radius: 34px;
      background:
        linear-gradient(145deg, rgba(255, 255, 255, 0.11), rgba(255, 255, 255, 0.035));
      box-shadow: var(--shadow);
      overflow: hidden;
    }

    .statement {
      padding: clamp(30px, 5vw, 62px);
      min-height: 450px;
      display: grid;
      align-content: space-between;
      gap: 34px;
    }

    .statement p {
      margin: 0;
      color: rgba(247, 248, 251, 0.9);
      font-size: clamp(32px, 4.55vw, 60px);
      line-height: 1;
      letter-spacing: 0;
      text-wrap: balance;
    }

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

    .signature span {
      padding: 11px 14px;
      border: 1px solid var(--line);
      border-radius: 999px;
      color: var(--muted);
      font-size: 12px;
      font-weight: 900;
      letter-spacing: 0.11em;
      text-transform: uppercase;
      background: rgba(255, 255, 255, 0.045);
      backdrop-filter: blur(14px);
    }

    .launch-card {
      position: relative;
      min-height: 450px;
      display: grid;
      align-content: end;
      padding: clamp(30px, 5vw, 62px);
    }

    .launch-card::before {
      content: "";
      position: absolute;
      inset: 0;
      background:
        radial-gradient(circle at 25% 25%, rgba(37, 244, 238, 0.3), transparent 28%),
        radial-gradient(circle at 80% 42%, rgba(254, 44, 85, 0.3), transparent 32%),
        linear-gradient(135deg, rgba(255, 255, 255, 0.06), transparent);
    }

    .launch-card > * {
      position: relative;
    }

    .launch-card img {
      position: absolute;
      top: 36px;
      right: 38px;
      width: min(210px, 38%);
      filter: drop-shadow(0 24px 50px rgba(0, 0, 0, 0.42));
      opacity: 0.95;
    }

    .launch-card h2 {
      max-width: 620px;
      margin: 0 0 22px;
      font-size: clamp(40px, 5.4vw, 78px);
      line-height: 0.94;
      text-wrap: balance;
    }

    .launch-card p {
      max-width: 620px;
      margin: 0;
      color: rgba(247, 248, 251, 0.76);
      font-size: clamp(17px, 1.55vw, 20px);
      line-height: 1.55;
    }

    .contact {
      display: grid;
      grid-template-columns: 1fr auto;
      gap: 22px;
      align-items: center;
      margin-top: 0;
      padding: clamp(24px, 4vw, 42px);
      border: 1px solid var(--line-soft);
      border-radius: 34px;
      background: linear-gradient(135deg, rgba(255,255,255,0.105), rgba(255,255,255,0.035));
      box-shadow: 0 24px 80px rgba(0,0,0,0.28);
    }

    .contact h2 {
      margin: 0;
      font-size: clamp(32px, 5.6vw, 72px);
      line-height: 0.95;
      max-width: 860px;
    }

    .contact p {
      max-width: 640px;
      margin: 15px 0 0;
      color: var(--muted);
      font-size: 17px;
      line-height: 1.5;
    }

    .footer {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 22px;
      padding: 32px 0 42px;
      color: var(--quiet);
      font-size: 13px;
      font-weight: 760;
    }

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

    @media (max-width: 980px) {
      .nav-links {
        display: none;
      }

      .hero-grid,
      .studio-strip,
      .contact {
        grid-template-columns: 1fr;
      }

      .visual {
        min-height: 540px;
      }

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

      .service-modal-panel {
        max-height: calc(100vh - 48px);
        grid-template-columns: 1fr;
        gap: 12px;
        overflow-y: auto;
      }

      .service-modal-visual {
        min-height: 320px;
      }

      .service-modal-content {
        min-height: auto;
      }

      .section-head {
        display: grid;
      }
    }

    @media (max-width: 640px) {
      .shell,
      .nav {
        width: min(100% - 28px, 1220px);
      }

      .brand span {
        max-width: 220px;
        overflow: hidden;
        text-overflow: ellipsis;
      }

      .nav {
        top: 12px;
      }

      .language-switch {
        flex-shrink: 0;
      }

      .language-link {
        min-height: 36px;
        padding: 0 10px;
      }

      .hero {
        padding-top: 106px;
      }

      .hero-grid {
        gap: 18px;
      }

      .hero-actions,
      .launch-row {
        align-items: stretch;
      }

      .button,
      .hero-actions a {
        width: 100%;
      }

      .proof-row,
      .launch-row {
        grid-template-columns: 1fr;
      }

      .visual {
        min-height: 470px;
        margin-top: 10px;
      }

      .desktop {
        width: calc(100% - 8px);
        height: 300px;
        right: 0;
        transform: rotateY(-10deg) rotateX(5deg);
      }

      .dashboard {
        grid-template-columns: 1fr;
        top: 76px;
        left: 22px;
        right: 22px;
      }

      .mini {
        display: none;
      }

      .phone {
        right: 4px;
        bottom: 20px;
        width: 162px;
        height: 310px;
      }

      .visual::before {
        top: -18px;
        right: 6px;
        width: min(500px, calc(100% - 12px));
      }

      .neural-engine {
        top: -18px;
        right: 6px;
        width: min(500px, calc(100% - 12px));
      }

      .visual::after {
        top: 36px;
        right: 56px;
        width: min(360px, calc(100% - 112px));
      }

      .orbit {
        top: 58px;
        right: 90px;
        width: min(260px, calc(100% - 178px));
      }

      .code-card {
        left: -8px;
        bottom: 54px;
        width: min(248px, 72vw);
      }

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

      .service-card {
        min-height: 238px;
      }

      .service-card h3 {
        margin-top: 58px;
      }

      .service-modal {
        padding: 14px;
      }

      .service-modal-panel {
        max-height: calc(100vh - 28px);
        grid-template-columns: 1fr;
        gap: 12px;
        padding: 12px;
        overflow-y: auto;
        border-radius: 26px;
      }

      .service-modal-visual {
        min-height: 230px;
      }

      .service-modal-content {
        min-height: auto;
        padding: 26px;
      }

      .service-modal-content h2 {
        font-size: clamp(32px, 10vw, 48px);
      }

      .service-modal-content p {
        font-size: 16px;
      }

      .statement,
      .launch-card {
        min-height: 330px;
        border-radius: 28px;
      }

      .statement {
        gap: 28px;
      }

      .launch-card img {
        width: 150px;
        top: 24px;
        right: 24px;
      }

      .footer {
        display: grid;
      }
    }

    @media (max-width: 430px) {
      .brand span {
        max-width: 180px;
      }

      .phone {
        width: 150px;
        height: 288px;
      }

      .monitor-ui {
        inset: 21px 13px 16px;
      }

      .monitor-page {
        padding: 9px;
      }

      .orbit {
        right: 78px;
        width: min(240px, calc(100% - 152px));
      }

      .visual::before {
        right: 10px;
        width: min(430px, calc(100% - 20px));
      }

      .neural-engine {
        right: 10px;
        width: min(430px, calc(100% - 20px));
      }

      .visual::after {
        right: 48px;
        width: min(320px, calc(100% - 96px));
      }
    }

    @media (max-width: 360px) {
      .brand span {
        max-width: 124px;
      }
    }

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