:root{
      --bg:#0a0c0f;
      --bg-soft:#10141a;
      --panel:#12171e;
      --text:#f4f6f8;
      --muted:#aab2bc;
      --line:#242b34;
      --accent:#4f7cff;
      --accent-soft:rgba(79,124,255,.14);
      --accent-2:#0e7c7b;
      --accent-2b:#14b8a6;
      --warm:#c9a06a;
      --good:#34d399;
      --max:1240px;
      --radius:22px;
    }

    *{box-sizing:border-box}
    html{scroll-behavior:smooth}
    body{
      margin:0;
      background:var(--bg);
      color:var(--text);
      font-family:Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
      line-height:1.5;
      overflow-x:hidden;
    }

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

    .page{
      position:relative;
      min-height:100vh;
      background:
        radial-gradient(circle at 85% 7%, rgba(79,124,255,.08), transparent 24rem),
        linear-gradient(180deg,#090b0e 0%,#0a0c0f 46%,#0d1014 100%);
    }

    /* Clip the map's rightward hover overhang so it never adds a horizontal scrollbar.
       overflow-x:clip (not hidden) avoids making a scroll container / forcing overflow-y:auto,
       and main is a sibling of the sticky nav so this doesn't break sticky. */
    main{ overflow-x:clip; }

    .container{
      width:min(calc(100% - 44px),var(--max));
      margin:0 auto;
    }

    .nav{
      position:sticky;
      top:0;
      z-index:50;
      backdrop-filter:blur(16px);
      background:rgba(10,12,15,.76);
      border-bottom:1px solid rgba(255,255,255,.055);
    }

    .nav-inner{
      min-height:94px;
      display:flex;
      align-items:center;
      justify-content:space-between;
      gap:28px;
    }

    .brand{
      font-size:1.04rem;
      font-weight:800;
      letter-spacing:.23em;
      white-space:nowrap;
    }

    .nav-links{
      display:flex;
      align-items:center;
      gap:28px;
      color:#d8dde3;
      font-size:.93rem;
    }

    .nav-links a{
      transition:opacity .2s ease;
    }

    .nav-links a:hover{opacity:.64}

    .cta{
      display:inline-flex;
      align-items:center;
      justify-content:center;
      gap:10px;
      padding:12px 16px;
      border:1px solid #334055;
      border-radius:999px;
      background:rgba(255,255,255,.025);
      transition:.25s ease;
      white-space:nowrap;
    }

    .cta:hover{
      background:var(--accent);
      border-color:var(--accent);
      transform:translateY(-1px);
    }

    .hero{
      min-height:calc(100vh - 95px);
      display:grid;
      grid-template-columns:minmax(0,1.05fr) minmax(400px,.95fr);
      align-items:center;
      gap:38px;
      padding:64px 0 76px;
    }

    .eyebrow{
      display:flex;
      align-items:center;
      gap:10px;
      margin-bottom:24px;
      color:#bcc4ce;
      text-transform:uppercase;
      letter-spacing:.16em;
      font-size:.73rem;
      font-weight:700;
    }

    .eyebrow::before{
      content:"";
      width:24px;
      height:1px;
      background:var(--accent);
    }

    h1{
      margin:0;
      max-width:850px;
      font-size:clamp(2.6rem,5.2vw,5rem);
      line-height:.92;
      letter-spacing:-.055em;
      font-weight:760;
    }

    .hero p{
      max-width:700px;
      margin:28px 0 0;
      color:var(--muted);
      font-size:clamp(1.05rem,1.5vw,1.28rem);
    }

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

    .hero-actions .primary{
      background:var(--text);
      color:#0a0c0f;
      padding:14px 18px;
      border-radius:999px;
      font-weight:700;
      transition:.25s ease;
    }

    .hero-actions .primary:hover{
      background:var(--accent);
      color:white;
    }

    .hero-actions .secondary{
      color:#c9d0d8;
      padding:14px 4px;
      display:inline-flex;
      align-items:center;
      gap:8px;
    }

    .chevron-down{
      width:19px;
      height:19px;
      fill:none;
      stroke:var(--accent);
      stroke-width:2.5;
      stroke-linecap:round;
      stroke-linejoin:round;
      animation:bounce-down 1.8s ease-in-out infinite;
    }
    @keyframes bounce-down{
      0%,100%{transform:translateY(0)}
      50%{transform:translateY(4px)}
    }
    @media (prefers-reduced-motion: reduce){
      .chevron-down{animation:none}
    }

    .network-shell{
      position:relative;
      height:560px;
      min-width:0;
      border:1px solid rgba(255,255,255,.07);
      border-radius:30px;
      overflow:hidden;
      background:
        linear-gradient(rgba(255,255,255,.016) 1px,transparent 1px),
        linear-gradient(90deg,rgba(255,255,255,.016) 1px,transparent 1px),
        radial-gradient(circle at 30% 28%,rgba(79,124,255,.11),transparent 20rem),
        radial-gradient(circle at 74% 72%,rgba(20,184,166,.10),transparent 20rem),
        radial-gradient(circle at 88% 12%,rgba(14,124,123,.09),transparent 16rem),
        #0b0f14;
      background-size:42px 42px,42px 42px,auto,auto,auto,auto;
      box-shadow:inset 0 0 110px rgba(0,0,0,.5);
    }

    .network-shell::after{
      content:"";
      position:absolute;
      inset:0;
      background:linear-gradient(180deg,transparent 55%,rgba(8,10,13,.62));
      pointer-events:none;
    }

    /* Desktop-only hover-expand: the map grows RIGHTWARD (origin center-left) so it never
       collides with the hero headline; the rightward overhang is clipped (overflow-x:hidden
       on body/hero) rather than scrollable.
       Selectors carry .fade-up (0,3,0) so they outrank .fade-up.visible{transform:none}
       (0,2,0), which otherwise pins the transform and blocks the hover scale. */
    @media (hover:hover) and (pointer:fine){
      .network-shell.fade-up{
        transform-origin:center left;
        transition:transform .45s ease, box-shadow .45s ease, opacity .7s ease;
        will-change:transform;
      }
      .network-shell.fade-up:hover{
        transform:scale(1.4);
        z-index:40;
        box-shadow:
          0 44px 100px -34px rgba(0,0,0,.9),
          0 0 0 1px rgba(20,184,166,.14),
          inset 0 0 110px rgba(0,0,0,.5);
      }
    }

    svg.network{
      position:absolute;
      inset:0;
      width:100%;
      height:100%;
    }

    .wire{
      stroke:#384352;
      stroke-width:1.4;
      fill:none;
      opacity:.72;
    }

    .wire.hot{
      stroke:var(--accent);
      opacity:.48;
      stroke-dasharray:3 10;
      animation:dash 6s linear infinite;
    }

    .wire.hot-teal{
      stroke:var(--accent-2b);
      opacity:.5;
      stroke-dasharray:3 10;
      animation:dash 6s linear infinite;
    }

    .wire.vpn{
      stroke:var(--accent-2b);
      opacity:.42;
      stroke-dasharray:6 7;
      animation:dash 5.4s linear infinite reverse;
    }

    @keyframes dash{to{stroke-dashoffset:-180}}

    .node circle{
      fill:#0c1117;
      stroke:#5d6977;
      stroke-width:1.3;
    }

    .node.cat-blue circle{
      stroke:var(--accent);
      filter:drop-shadow(0 0 8px rgba(79,124,255,.55));
    }
    .node.cat-teal circle{
      stroke:var(--accent-2b);
      filter:drop-shadow(0 0 8px rgba(20,184,166,.5));
    }
    .node.cat-warm circle{
      stroke:var(--warm);
      filter:drop-shadow(0 0 7px rgba(201,160,106,.42));
    }

    .node text{
      fill:#c7ced7;
      font-size:12px;
      letter-spacing:.04em;
    }
    .node.cat-teal text{fill:#bfe7e0}
    .node.cat-warm text{fill:#e2d3b8}

    .pulse{
      fill:var(--accent);
      opacity:.85;
      filter:drop-shadow(0 0 4px rgba(79,124,255,.7));
    }
    .pulse.teal{
      fill:var(--accent-2b);
      filter:drop-shadow(0 0 4px rgba(20,184,166,.75));
    }

    .node,.wire,.pulse{transition:opacity .45s ease}
    .node{cursor:pointer;outline:none}
    .node circle{transition:stroke .25s ease,filter .25s ease}
    .node:hover circle,.node:focus-visible circle{
      stroke:var(--accent);
      filter:drop-shadow(0 0 8px rgba(79,124,255,.6));
    }
    .node:focus-visible text{fill:#eef2ff}

    svg.network.zoomed .wire{opacity:.07}
    svg.network.zoomed .pulse{opacity:.07}
    svg.network.zoomed .node{opacity:.07}
    svg.network.zoomed .node.focus{opacity:1}

    .satellites{pointer-events:none}
    .sat-line{stroke:var(--accent);stroke-width:.6;opacity:0;transition:opacity .4s ease .1s}
    .sat-dot{fill:#0c1117;stroke:var(--accent);stroke-width:.8;opacity:0;transition:opacity .4s ease .16s}
    .sat-label{fill:#c7ced7;font-size:6.5px;letter-spacing:.02em;opacity:0;transition:opacity .4s ease .2s}
    .satellites.show .sat-line,
    .satellites.show .sat-dot,
    .satellites.show .sat-label{opacity:1}
    .satellites.show .sat-line{opacity:.5}

    .diagram-hint,.diagram-back{
      position:absolute;
      top:18px;
      z-index:5;
      font-size:.72rem;
      letter-spacing:.04em;
      padding:8px 13px;
      border-radius:999px;
      border:1px solid rgba(255,255,255,.12);
      background:rgba(11,15,20,.82);
      backdrop-filter:blur(10px);
      color:#c7ced7;
      transition:opacity .35s ease;
    }
    .diagram-hint{
      left:18px;
      display:flex;
      align-items:center;
      gap:8px;
    }
    .diagram-hint::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--accent);
      box-shadow:0 0 8px rgba(79,124,255,.7);
    }
    .diagram-back{
      right:18px;
      cursor:pointer;
      opacity:0;
      pointer-events:none;
      transform:translateY(-4px);
      transition:opacity .35s ease,transform .35s ease,background .2s ease,border-color .2s ease;
    }
    .diagram-back:hover{background:var(--accent);border-color:var(--accent);color:#fff}
    .network-shell.zoomed-shell .diagram-hint{opacity:0;pointer-events:none}
    .network-shell.zoomed-shell .diagram-back{opacity:1;pointer-events:auto;transform:none}

    .status-bar{
      position:absolute;
      left:0;
      right:0;
      bottom:0;
      z-index:4;
      display:flex;
      align-items:center;
      gap:13px;
      padding:11px 16px;
      border-top:1px solid rgba(255,255,255,.09);
      background:linear-gradient(180deg,rgba(10,14,19,.62),rgba(10,14,19,.9));
      backdrop-filter:blur(13px);
    }

    .status-top{
      display:flex;
      align-items:center;
      gap:9px;
      flex:0 0 auto;
      font-size:.68rem;
      color:#9ba5b1;
      text-transform:uppercase;
      letter-spacing:.09em;
      white-space:nowrap;
    }

    .healthy{
      display:flex;
      align-items:center;
      gap:8px;
      color:#bff0d8;
      font-weight:600;
    }

    .healthy::before{
      content:"";
      width:8px;
      height:8px;
      border-radius:50%;
      background:var(--good);
      box-shadow:0 0 0 0 rgba(52,211,153,.5),0 0 6px rgba(52,211,153,.8);
      animation:pulse-green 2.2s infinite;
    }

    .status-main{
      flex:1 1 auto;
      text-align:center;
      margin:0;
      font-size:.84rem;
      font-weight:600;
      color:#e6ebf1;
      white-space:nowrap;
      overflow:hidden;
      text-overflow:ellipsis;
    }

    .status-detail{
      flex:0 0 auto;
      margin:0;
      color:#8f99a5;
      font-size:.75rem;
      white-space:nowrap;
      text-align:right;
    }

    @media (max-width:640px){
      .status-main{display:none}
    }

    section{
      padding:118px 0;
      border-top:1px solid rgba(255,255,255,.06);
    }

    .section-head{
      display:grid;
      grid-template-columns:.52fr 1.48fr;
      gap:42px;
      margin-bottom:66px;
    }

    .kicker{
      color:#98a2ae;
      font-size:.78rem;
      letter-spacing:.14em;
      text-transform:uppercase;
      font-weight:700;
      padding-top:10px;
    }

    .section-head h2{
      margin:0;
      max-width:860px;
      font-size:clamp(1.9rem,3.6vw,3.6rem);
      line-height:1;
      letter-spacing:-.045em;
    }

    .section-copy{
      grid-column:2;
      max-width:720px;
      color:var(--muted);
      font-size:1.08rem;
      margin-top:-34px;
    }

    .services{
      border-top:1px solid var(--line);
    }

    .service-item{
      border-bottom:1px solid var(--line);
    }

    .service{
      display:grid;
      grid-template-columns:90px 1fr auto;
      gap:28px;
      align-items:start;
      padding:34px 0 36px;
      transition:.3s ease;
      cursor:pointer;
      outline:none;
    }

    .service:hover,
    .service:focus-visible{
      padding-left:10px;
      background:linear-gradient(90deg,rgba(79,124,255,.045),transparent 58%);
    }

    .service.open{
      background:linear-gradient(90deg,rgba(79,124,255,.06),transparent 62%);
    }

    .service-panel{
      max-height:0;
      overflow:hidden;
      transition:max-height .45s cubic-bezier(.4,0,.2,1);
    }

    .service-panel-inner{
      padding:0 0 34px 118px;
      max-width:820px;
    }

    .service-panel-inner p{
      margin:0 0 16px;
      color:#aab4c0;
      font-size:1rem;
      line-height:1.62;
    }

    .map-link{
      display:inline-flex;
      align-items:center;
      gap:6px;
      color:#cdd8ff;
      font-size:.9rem;
      font-weight:600;
      border-bottom:1px solid rgba(79,124,255,.4);
      padding-bottom:2px;
      transition:color .2s ease,border-color .2s ease;
    }

    .map-link:hover{
      color:var(--accent-2b);
      border-color:var(--accent-2b);
    }

    .service-num{
      color:#697482;
      font-size:.83rem;
      padding-top:7px;
    }

    .service h3{
      margin:0;
      font-size:clamp(1.7rem,2.8vw,3rem);
      letter-spacing:-.035em;
    }

    .service p{
      max-width:760px;
      margin:12px 0 0;
      color:#9da7b3;
      font-size:.98rem;
    }

    .service-arrow{
      color:#738196;
      font-size:1.7rem;
      transition:.25s ease;
    }

    .service:hover .service-arrow{
      color:var(--accent-2b);
      transform:translateX(5px);
    }

    .service.open .service-arrow{
      color:var(--accent);
      transform:rotate(90deg);
    }

    .split{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:70px;
      align-items:start;
    }

    .big-statement{
      margin:0;
      font-size:clamp(2rem,3.4vw,3.8rem);
      line-height:.98;
      letter-spacing:-.05em;
    }

    .body-copy{
      color:var(--muted);
      font-size:1.05rem;
      max-width:590px;
    }

    .monitor-panel{
      margin-top:36px;
      padding:18px;
      border:1px solid rgba(255,255,255,.09);
      border-radius:var(--radius);
      background:
        radial-gradient(120% 80% at 20% 0%,rgba(79,124,255,.06),transparent 60%),
        radial-gradient(120% 80% at 90% 100%,rgba(20,184,166,.06),transparent 60%),
        linear-gradient(180deg,#151d26,#0c1015);
      box-shadow:
        0 28px 60px -24px rgba(0,0,0,.75),
        0 2px 0 rgba(255,255,255,.05) inset,
        0 -18px 40px -30px rgba(0,0,0,.8) inset;
    }

    .monitor-row{
      display:grid;
      grid-template-columns:1.4fr .8fr auto;
      gap:20px;
      padding:14px 16px;
      margin-bottom:9px;
      border:1px solid rgba(255,255,255,.055);
      border-radius:13px;
      background:linear-gradient(180deg,rgba(255,255,255,.03),rgba(255,255,255,.006));
      box-shadow:
        0 1px 0 rgba(255,255,255,.05) inset,
        0 8px 16px -12px rgba(0,0,0,.7);
      align-items:center;
      transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
    }

    .monitor-row:last-child{margin-bottom:0}
    .monitor-row:hover{
      transform:translateY(-1px);
      border-color:rgba(20,184,166,.32);
      box-shadow:0 1px 0 rgba(255,255,255,.06) inset,0 12px 22px -12px rgba(0,0,0,.75);
    }
    .monitor-label{color:#d3dae2;font-weight:600}
    .monitor-detail{color:#778290;font-size:.88rem}
    .monitor-state{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:5px 12px 5px 10px;
      border:1px solid rgba(52,211,153,.42);
      border-radius:999px;
      color:#9af0cd;
      font-size:.72rem;
      letter-spacing:.07em;
      text-transform:uppercase;
      font-weight:600;
      background:linear-gradient(180deg,rgba(52,211,153,.18),rgba(52,211,153,.045));
      box-shadow:0 1px 0 rgba(255,255,255,.12) inset,0 4px 10px -6px rgba(52,211,153,.4);
    }
    .monitor-state::before{
      content:"";
      width:7px;
      height:7px;
      border-radius:50%;
      background:var(--good);
      box-shadow:0 0 0 0 rgba(52,211,153,.55),0 0 6px rgba(52,211,153,.8);
      animation:pulse-green 2.4s infinite;
    }
    @keyframes pulse-green{
      0%{box-shadow:0 0 0 0 rgba(52,211,153,.55),0 0 6px rgba(52,211,153,.8)}
      70%{box-shadow:0 0 0 7px rgba(52,211,153,0),0 0 6px rgba(52,211,153,.4)}
      100%{box-shadow:0 0 0 0 rgba(52,211,153,0),0 0 6px rgba(52,211,153,.4)}
    }

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

    .step{
      min-height:270px;
      padding:28px;
      border:1px solid var(--line);
      border-radius:var(--radius);
      background:rgba(255,255,255,.012);
    }

    .step-num{
      color:#6e7a89;
      font-size:.76rem;
      letter-spacing:.12em;
      margin-bottom:70px;
    }

    .step h3{
      margin:0 0 10px;
      font-size:1.55rem;
    }

    .step p{
      margin:0;
      color:#929ca8;
      font-size:.95rem;
    }

    .history{
      max-width:900px;
    }

    .history-stat{
      display:flex;
      align-items:center;
      gap:24px;
      margin-bottom:26px;
    }
    .history-num{
      font-size:clamp(4.5rem,11vw,9rem);
      font-weight:800;
      line-height:.82;
      letter-spacing:-.06em;
      background:linear-gradient(150deg,var(--accent) 12%,var(--accent-2b));
      -webkit-background-clip:text;
      background-clip:text;
      -webkit-text-fill-color:transparent;
      color:var(--accent-2b);
    }
    .history-stat-label{
      font-size:clamp(1rem,1.6vw,1.35rem);
      font-weight:700;
      line-height:1.15;
      color:#c7ced7;
      letter-spacing:.02em;
      text-transform:uppercase;
    }

    .history p{
      color:var(--muted);
      font-size:clamp(1.12rem,1.8vw,1.32rem);
    }

    .final{
      padding:130px 0 145px;
      text-align:left;
    }

    .final h2{
      max-width:930px;
      margin:0;
      font-size:clamp(2.3rem,4.2vw,4.6rem);
      line-height:.94;
      letter-spacing:-.055em;
    }

    .final p{
      max-width:720px;
      color:var(--muted);
      font-size:1.06rem;
      margin:28px 0 32px;
    }

    .phone-block{
      margin:0 0 24px;
    }
    .phone-heading{
      color:var(--accent-2b);
      font-size:.76rem;
      font-weight:700;
      letter-spacing:.18em;
      text-transform:uppercase;
      margin:0 0 12px;
      display:flex;
      align-items:center;
      gap:9px;
    }
    .phone-heading::before{
      content:"";
      width:22px;
      height:1px;
      background:var(--accent-2b);
    }
    .phone-line{
      display:flex;
      gap:16px;
      flex-wrap:wrap;
    }
    .phone{
      display:flex;
      flex-direction:column;
      gap:3px;
      padding:14px 20px;
      border:1px solid var(--line);
      border-radius:14px;
      background:rgba(255,255,255,.015);
      transition:border-color .2s ease,background .2s ease,transform .2s ease;
    }
    .phone:hover{
      border-color:var(--accent);
      background:rgba(79,124,255,.06);
      transform:translateY(-1px);
    }
    .phone-region{
      color:#8f99a5;
      font-size:.72rem;
      letter-spacing:.1em;
      text-transform:uppercase;
      font-weight:700;
    }
    .phone-number{
      color:#eef2f6;
      font-size:1.45rem;
      font-weight:750;
      letter-spacing:-.01em;
    }
    .phone:hover .phone-number{color:var(--accent)}

    .contact-line{
      display:flex;
      align-items:center;
      gap:12px;
      flex-wrap:wrap;
      margin:0 0 30px;
      color:#8f99a5;
      font-size:.98rem;
    }
    .contact-line a{
      color:#c9d0d8;
      border-bottom:1px solid rgba(79,124,255,.35);
      padding-bottom:1px;
      transition:color .2s ease,border-color .2s ease;
    }
    .contact-line a:hover{color:var(--accent-2b);border-color:var(--accent-2b)}
    .contact-sep{color:#4a525c}

    .contact-form{
      margin-top:36px;
      max-width:640px;
      display:flex;
      flex-direction:column;
      gap:16px;
    }
    .cf-row{
      display:grid;
      grid-template-columns:1fr 1fr;
      gap:16px;
    }
    .cf-field{
      display:flex;
      flex-direction:column;
      gap:7px;
    }
    .cf-field > span{
      color:#9aa4b0;
      font-size:.74rem;
      font-weight:600;
      letter-spacing:.09em;
      text-transform:uppercase;
    }
    .cf-field input,
    .cf-field textarea{
      width:100%;
      padding:12px 14px;
      border:1px solid var(--line);
      border-radius:12px;
      background:rgba(255,255,255,.02);
      color:var(--text);
      font:inherit;
      font-size:.98rem;
      transition:border-color .2s ease,box-shadow .2s ease,background .2s ease;
    }
    .cf-field textarea{resize:vertical;min-height:110px}
    .cf-field input:focus,
    .cf-field textarea:focus{
      outline:none;
      border-color:var(--accent-2b);
      background:rgba(20,184,166,.05);
      box-shadow:0 0 0 3px rgba(20,184,166,.14);
    }
    .cf-field input::placeholder,
    .cf-field textarea::placeholder{color:#6b7580}
    .cf-hp{
      position:absolute;
      left:-9999px;
      width:1px;
      height:1px;
      overflow:hidden;
    }
    .cf-actions{
      display:flex;
      align-items:center;
      gap:16px;
      flex-wrap:wrap;
    }
    .cf-submit{
      display:inline-flex;
      align-items:center;
      gap:8px;
      padding:13px 22px;
      border:0;
      border-radius:999px;
      background:linear-gradient(135deg,var(--accent),var(--accent-2b));
      color:#fff;
      font-weight:700;
      font-size:.96rem;
      cursor:pointer;
      transition:transform .2s ease,box-shadow .2s ease,opacity .2s ease;
      box-shadow:0 12px 26px -12px rgba(20,184,166,.6);
    }
    .cf-submit:hover{transform:translateY(-1px);box-shadow:0 16px 30px -12px rgba(20,184,166,.7)}
    .cf-submit:disabled{opacity:.55;cursor:default;transform:none}
    .cf-status{font-size:.9rem;color:#9aa4b0}
    .cf-status.ok{color:#8ff0c8}
    .cf-status.err{color:#ff9b9b}

    @media (max-width:640px){
      .cf-row{grid-template-columns:1fr}
    }

    footer{
      border-top:1px solid var(--line);
      padding:34px 0 46px;
      color:#75808d;
      font-size:.88rem;
    }

    .footer-links{
      display:flex;
      gap:20px;
      flex-wrap:wrap;
    }
    .footer-links a{
      color:#9aa4b0;
      transition:color .2s ease;
    }
    .footer-links a:hover{color:var(--accent-2b)}
    .footer-contact a{
      color:#9aa4b0;
      transition:color .2s ease;
    }
    .footer-contact a:hover{color:var(--accent-2b)}

    .footer-inner{
      display:flex;
      justify-content:space-between;
      gap:28px;
      flex-wrap:wrap;
    }

    .mobile-menu{
      display:none;
      background:none;
      border:0;
      color:white;
      font-size:1.4rem;
      padding:8px;
    }

    .fade-up{
      opacity:0;
      transform:translateY(24px);
      transition:opacity .7s ease,transform .7s ease;
    }

    .fade-up.visible{
      opacity:1;
      transform:none;
    }

    @media (max-width: 980px){
      .nav-links{display:none}
      .mobile-menu{display:block}
      .hero{
        grid-template-columns:1fr;
        min-height:auto;
        padding-top:82px;
      }
      .network-shell{height:470px}
      .section-head{grid-template-columns:1fr}
      .section-copy{grid-column:1;margin-top:-20px}
      .split{grid-template-columns:1fr}
      .steps{grid-template-columns:1fr}
    }

    @media (max-width: 640px){
      .container{width:min(calc(100% - 28px),var(--max))}
      .nav-inner{min-height:68px}
      .nav .cta{display:none}
      .hero{padding:62px 0}
      h1{font-size:clamp(2.6rem,14vw,5rem)}
      .network-shell{height:400px;border-radius:22px}
      .service{grid-template-columns:54px 1fr auto;gap:12px}
      section{padding:88px 0}
      .section-head{gap:28px;margin-bottom:45px}
      .steps{gap:12px}
      .step{min-height:220px}
      .step-num{margin-bottom:42px}
      .final{padding:100px 0}
    }
    /* ---- Logomark ---- */
    .brand{
      display:inline-flex;
      align-items:center;
      gap:12px;
    }
    .nav .brand{
      font-size:1.62rem;
      letter-spacing:.2em;
    }
    .logo-mark{
      height:48px;
      width:48px;
      flex:0 0 auto;
      overflow:visible;
    }
    .logo-mark circle,
    .logo-mark ellipse,
    .logo-mark path{
      fill:none;
      stroke:url(#lmGrad);
      stroke-width:1.25;
      vector-effect:non-scaling-stroke;
    }
    .logo-mark .lm-node{
      fill:var(--accent-2b);
      stroke:none;
      filter:drop-shadow(0 0 3px rgba(20,184,166,.7));
    }
    .logo-mark .lm-link{
      stroke-width:.85;
      opacity:.7;
    }
    .logo-mark .lm-spin{
      transform-box:view-box;
      transform-origin:16px 16px;
      animation:lm-orbit 16s linear infinite;
    }
    @keyframes lm-orbit{to{transform:rotate(360deg)}}
    @media (prefers-reduced-motion: reduce){
      .logo-mark .lm-spin{animation:none}
    }
    footer .logo-mark{
      height:27px;
      width:27px;
    }
    footer .brand{
      font-size:1.08rem;
    }

    /* ---- Scrollytelling: CSS scroll-driven motion (progressive enhancement) ---- */
    @supports (animation-timeline: view()){
      @media (prefers-reduced-motion: no-preference){
        .kicker{
          animation:kicker-in linear both;
          animation-timeline:view();
          animation-range:entry 0% entry 45%;
        }
        @keyframes kicker-in{
          from{opacity:0;transform:translateX(-16px)}
          to{opacity:1;transform:none}
        }

        .monitor-row{
          animation:mrow-in linear both;
          animation-timeline:view();
          animation-range:entry 6% cover 22%;
        }
        @keyframes mrow-in{
          from{opacity:0;transform:translateY(15px)}
          to{opacity:1;transform:none}
        }
        .monitor-row:nth-child(2){animation-range:entry 11% cover 27%}
        .monitor-row:nth-child(3){animation-range:entry 16% cover 32%}
        .monitor-row:nth-child(4){animation-range:entry 21% cover 37%}
      }
    }
