:root {
      --blue-900: #082B6E;
      --blue-700: #0E4FCB;
      --blue-600: #1461F0;
      --blue-500: #2E7CFB;
      --blue-400: #5B9CFF;
      --blue-100: #E8F0FF;
      --sky: #EFF5FF;
      --ink: #0B1730;
      --steel: #5B6B85;
      --steel-light: #8C9AB5;
      --white: #FFFFFF;
      --amber: #FFB020;
      --line: #DCE6F7;
      --radius: 18px;
      --navy-deep: #0B1440;
      --navy-panel: #101B54;
      --indigo: #5B4FE9;
      --blue: #3D6FE0;
      --cyan: #3ED6E8;
      --paper: #F4F6FB;
 
      --ink-soft: #5B6280;
      --line: #E3E7F3;
      --line-dark: rgba(255, 255, 255, 0.12);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Manrope', sans-serif;
      background: var(--white);
      color: var(--ink);
      line-height: 1.6;
      -webkit-font-smoothing: antialiased;
      overflow-x: hidden;
    }

    h1,
    h2,
    h3,
    h4 {
      font-family: 'Sora', sans-serif;
      font-weight: 600;
      letter-spacing: -0.02em;
      color: var(--ink);
    }

    .mono {
      font-family: 'JetBrains Mono', monospace;
      letter-spacing: 0.06em;
      text-transform: uppercase;
    }

    a {
      text-decoration: none;
      color: inherit;
    }

    ul {
      list-style: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: 100%;
      max-width: 1220px;
      margin: 0 auto;
      padding: 0 50px;
    }

    [data-reveal] {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity .7s cubic-bezier(.22, .68, 0, 1.01), transform .7s cubic-bezier(.22, .68, 0, 1.01);
    }

    [data-reveal].in {
      opacity: 1;
      transform: translateY(0);
    }

    .btn {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 12px 25px;
      border-radius: 100px;
      font-weight: 700;
      font-size: 15px;
      cursor: pointer;
      border: none;
      transition: all .3s cubic-bezier(.22, .68, 0, 1.01);
      font-family: 'Manrope', sans-serif;
      position: relative;
      overflow: hidden;
    }

    .btn-primary {
      background: var(--blue-600);
      color: var(--white);
      box-shadow: 0 10px 30px rgba(20, 97, 240, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-3px) scale(1.02);
      box-shadow: 0 16px 36px rgba(20, 97, 240, 0.45);
    }

    .btn-primary::after {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(120deg, transparent, rgba(255, 255, 255, 0.35), transparent);
      transform: translateX(-120%);
      transition: transform .6s ease;
    }

    .btn-primary:hover::after {
      transform: translateX(120%);
    }

    .btn-ghost {
      background: var(--white);
      border: 1.5px solid var(--line);
      color: var(--ink);
    }

    .btn-ghost:hover {
      border-color: var(--blue-500);
      color: var(--blue-600);
      transform: translateY(-2px);
    }

    /* NAV */
    header {
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      z-index: 1000;
      background: rgba(255, 255, 255, 0.82);
      backdrop-filter: blur(16px);
      -webkit-backdrop-filter: blur(16px);
      border-bottom: 1px solid var(--line);
      transition: box-shadow .3s ease;
    }

    header.scrolled {
      box-shadow: 0 8px 30px rgba(8, 43, 110, 0.08);
    }

    nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      padding: 18px 32px;
      max-width: 1220px;
      margin: 0 auto;
    }

    .brand {
      display: flex;
      align-items: center;
      gap: 9px;
      font-family: 'Sora', sans-serif;
      font-weight: 800;
      font-size: 23px;
      color: var(--blue-700);
    }

    .brand .plus {
      color: var(--blue-500);
      position: relative;
      display: inline-flex;
      width: 14px;
      height: 14px;
      align-items: center;
      justify-content: center;
    }

    .brand .plus::before,
    .brand .plus::after {
      content: "";
      position: absolute;
      background: var(--blue-500);
      border-radius: 2px;
    }

    .brand .plus::before {
      width: 14px;
      height: 3px;
    }

    .brand .plus::after {
      width: 3px;
      height: 14px;
    }

    .navlist {
      display: flex;
      align-items: center;
      gap: 38px;
    }

    .navlist a {
      color: var(--steel);
      font-size: 14.5px;
      font-weight: 600;
      position: relative;
      padding: 4px 0;
    }

    .navlist a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -2px;
      width: 0;
      height: 2px;
      background: var(--blue-500);
      transition: width .25s ease;
    }

    .navlist a:hover {
      color: var(--ink);
    }

    .navlist a:hover::after {
      width: 100%;
    }

    .nav-toggle {
      display: none;
      background: none;
      border: none;
      color: var(--blue-700);
      font-size: 22px;
      cursor: pointer;
    }

    /* HERO */
    .hero {
      position: relative;
      padding: 130px 0 30px;
      overflow: hidden;
      background: var(--sky);
    }

    .hero-bg-blob {
      position: absolute;
      top: -220px;
      right: -180px;
      width: 760px;
      height: 760px;
      border-radius: 50%;
      background:radial-gradient(circle at 35% 35%, #c0d8ff 0%, #a0c1ff 60%, transparent 72%);
      opacity: 0.16;
      filter: blur(10px);
      animation: float1 9s ease-in-out infinite;
    }

    .hero-bg-blob2 {
      position: absolute;
      bottom: -260px;
      left: -220px;
      width: 600px;
      height: 600px;
      border-radius: 50%;
      background: radial-gradient(circle at 60% 40%, var(--blue-400) 0%, transparent 70%);
      opacity: 0.18;
      animation: float2 11s ease-in-out infinite;
    }

    @keyframes float1 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(-30px, 30px) scale(1.05);
      }
    }

    @keyframes float2 {

      0%,
      100% {
        transform: translate(0, 0) scale(1);
      }

      50% {
        transform: translate(25px, -25px) scale(1.08);
      }
    }

    .hero::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(20, 97, 240, 0.14) 1.4px, transparent 1.4px);
      background-size: 26px 26px;
      mask-image: radial-gradient(ellipse 65% 55% at 50% 25%, black 30%, transparent 100%);
      pointer-events: none;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 2.05fr 0.95fr;
      gap: 50px;
      align-items: center;
      position: relative;
      z-index: 2;
    }

    .eyebrow {
      display: inline-flex;
      align-items: center;
      gap: 9px;
      padding: 9px 16px;
      border-radius: 100px;
      font-size: 12px;
      font-weight: 700;
      color: var(--blue-700);
      margin-bottom: 26px;
      background: var(--white);
      border: 1px solid var(--line);
      box-shadow: 0 6px 18px rgba(20, 97, 240, 0.08);
      animation: fadeUp .8s ease both;
      letter-spacing: 1px;
    }

    .eyebrow .dot {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: var(--amber);
      box-shadow: 0 0 0 3px rgba(255, 176, 32, 0.25);
      animation: pulse 2s infinite;
    }

    @keyframes pulse {
      0% {
        box-shadow: 0 0 0 0 rgba(255, 176, 32, 0.5);
      }

      70% {
        box-shadow: 0 0 0 9px rgba(255, 176, 32, 0);
      }

      100% {
        box-shadow: 0 0 0 0 rgba(255, 176, 32, 0);
      }
    }

    @keyframes fadeUp {
      from {
        opacity: 0;
        transform: translateY(18px);
      }

      to {
        opacity: 1;
        transform: translateY(0);
      }
    }

    .hero h1 {
      font-size: 54px;
      line-height: 1.14;
      margin-bottom: 22px;
      animation: fadeUp .8s ease .1s both;
    }

    .hero h1 .grad {
      background: linear-gradient(100deg, var(--blue-600), var(--blue-400));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .hero p.lead {
      font-size: 17.5px;
      color: var(--steel);
      max-width: 690px;
      margin-bottom: 14px;
      animation: fadeUp .8s ease .2s both;
    }

    .hero-actions {
      display: flex;
      gap: 16px;
      flex-wrap: wrap;
      margin-bottom: 48px;
      animation: fadeUp .8s ease .3s both;
    }

    .trust-row {
      display: flex;
      gap: 38px;
      flex-wrap: wrap;
      padding-top: 30px;
      border-top: 1px solid var(--line);
      animation: fadeUp .8s ease .4s both;
    }

    .trust-row .item {
      display: flex;
      flex-direction: column;
      gap: 3px;
    }

    .trust-row .num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 23px;
      font-weight: 600;
      color: var(--blue-700);
    }

    .trust-row .label {
      font-size: 12px;
      color: var(--steel-light);
    }

    .device-stage {
      position: relative;
      display: flex;
      align-items: center;
      justify-content: center;
      height: 520px;
      animation: fadeUp 1s ease .2s both;
    }

    .orbit-ring {
      position: absolute;
      border-radius: 50%;
      border: 1.5px dashed rgba(20, 97, 240, 0.25);
      animation: spin 30s linear infinite;
    }

    .orbit-ring.r1 {
      width: 460px;
      height: 460px;
    }

    .orbit-ring.r2 {
      width: 460px;
      height: 460px;
      animation: spin 22s linear infinite reverse;
      border-style: solid;
      border-color: rgba(20, 97, 240, 0.12);
    }

    @keyframes spin {
      to {
        transform: rotate(360deg);
      }
    }

    .orbit-dot {
      position: absolute;
      width: 12px;
      height: 12px;
      border-radius: 50%;
      background: var(--blue-500);
      box-shadow: 0 0 14px rgba(20, 97, 240, 0.6);
      top: -6px;
      left: 50%;
    }

    .pulse-ring {
      position: absolute;
      width: 300px;
      height: 300px;
      border-radius: 50%;
      border: 2px solid var(--blue-500);
      opacity: 0;
      animation: pulseRing 3s ease-out infinite;
    }

    .pulse-ring.d2 {
      animation-delay: 1s;
    }

    .pulse-ring.d3 {
      animation-delay: 2s;
    }

    @keyframes pulseRing {
      0% {
        transform: scale(0.6);
        opacity: 0.5;
      }

      100% {
        transform: scale(1.15);
        opacity: 0;
      }
    }

    .device-card {
    position: relative;
    z-index: 3;
    background: transparent;
    /* border: 1px solid var(--line); */
    border-radius: 26px;
    /*padding: 20px;*/
    /* box-shadow: 0 40px 90px rgba(8, 43, 110, 0.18); */
    animation: hover 4s ease-in-out infinite;
    }

    @keyframes hover {

      0%,
      100% {
        transform: translateY(0);
      }

      50% {
        transform: translateY(-14px);
      }
    }

    .device-card img {
      width: 400px;
      border-radius: 16px;
    }

    .status-chip {
      position: absolute;
      z-index: 4;
      display: flex;
      align-items: center;
      gap: 8px;
      background: var(--ink);
      color: var(--white);
      padding: 10px 15px;
      border-radius: 100px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 11.5px;
      font-weight: 600;
      box-shadow: 0 14px 30px rgba(8, 43, 110, 0.3);
    }

    .status-chip.a {
      top: 44px;
      right: -10px;
      animation: hover 4s ease-in-out infinite .3s;
    }

    .status-chip.b {
      bottom: 70px;
      left: -20px;
      animation: hover 4s ease-in-out infinite .6s;
    }

    .status-chip .led {
      width: 7px;
      height: 7px;
      border-radius: 50%;
      background: #2FD16B;
      box-shadow: 0 0 0 3px rgba(47, 209, 107, 0.28);
    }

    .status-chip.b .led {
      background: var(--blue-400);
      box-shadow: 0 0 0 3px rgba(91, 156, 255, 0.3);
    }

  .ticker-strip {
  background: var(--blue-700);
  padding: 17px 0;
  width: 100%;
  overflow: hidden;
}

.ticker-track {
  display: flex;
  /*width: max-content;*/
  animation: ticker-scroll 15s linear infinite;
  will-change: transform;
}

.ticker-group {
  display: flex;
  align-items: center;
  gap: 70px;

  /* Important: exactly same spacing between groups */
  padding-right: 70px;
  flex-shrink: 0;
}

.ticker-group span {
  display: flex;
  align-items: center;
  white-space: nowrap;

  font-family: 'JetBrains Mono', monospace;
  font-size: 12.5px;
  color: rgba(255, 255, 255, 0.85);
  letter-spacing: 0.08em;
  font-weight: 500;
}

.ticker-group span i {
  color: var(--blue-400);
  margin-right: 8px;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

    .section {
      padding: 70px 0;
    }

    .sec-head {
      max-width: 620px;
      margin-bottom: 30px;
    }

    .kicker {
      display: flex;
      align-items: center;
      gap: 10px;
      font-family: 'JetBrains Mono', monospace;
      font-size: 12px;
      color: var(--blue-600);
      font-weight: 600;
      margin-bottom: 16px;
    }

    .kicker::before {
      content: "";
      width: 24px;
      height: 2px;
      background: var(--blue-500);
      border-radius: 2px;
    }

    .sec-head h2 {
      font-size: 38px;
      line-height: 1.2;
      margin-bottom: 14px;
    }

    .sec-head p {
      color: var(--steel);
      font-size: 16px;
    }

    .center {
      text-align: center;
      margin-left: auto;
      margin-right: auto;
    }

    .center .kicker {
      justify-content: center;
    }

    .center .kicker::before {
      display: none;
    }

    /* PROTECTS */
    .protects {
      background: var(--white);
    }

    .protect-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .protect-card {
      background: var(--sky);
      border-radius: 20px;
      padding: 36px 30px;
      transition: all .35s cubic-bezier(.22, .68, 0, 1.01);
      position: relative;
      overflow: hidden;
      border: 1px solid transparent;
    }

    .protect-card::before {
      content: "";
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      height: 3px;
      background: linear-gradient(90deg, var(--blue-500), var(--blue-400));
      transform: scaleX(0);
      transform-origin: left;
      transition: transform .35s ease;
    }

    .protect-card:hover {
      background: var(--white);
      border-color: var(--line);
      box-shadow: 0 24px 50px #99bcff1a;
      transform: translateY(-6px);
    }

    .protect-card:hover::before {
      transform: scaleX(1);
    }

    .protect-card .ic {
      width: 45px;
      height: 45px;
      border-radius: 0px;
      background: var(--white);
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 21px;
      color: var(--blue-600);
      margin-bottom: 22px;
      box-shadow: 0 8px 20px rgba(8, 43, 110, 0.08);
      transition: transform .35s ease;
    }

    .protect-card:hover .ic {
      transform: scale(1.1) rotate(-6deg);
      background: var(--blue-600);
      color: var(--white);
    }

    .protect-card h4 {
      font-size: 17px;
      margin-bottom: 8px;
    }

    .protect-card p {
      font-size: 14px;
      color: var(--steel);
    }

    /* FEATURES */
    .features {
      background: var(--sky);
    }

    .feat-grid {
      display: grid;
      grid-template-columns: 0.9fr 1.1fr;
      gap: 40px;
      align-items: center;
    }

    .feat-visual {
    position: relative;
    background: linear-gradient(160deg, #ffffff 0%, #ffffff 100%);
    /* border-radius: 28px; */
    padding: 5px;
    display: flex;
    align-items: center;
    border: 4px solid #a8b0d5;
    justify-content: center;
    min-height: 399px;
    box-shadow: -22px 10px 10px rgb(184 184 199 / 40%);
    overflow: hidden;
    /*width: 410px;*/
    }

    .feat-visual::before {
      content: "";
      position: absolute;
      width: 340px;
      height: 340px;
      border-radius: 50%;
      /*background: radial-gradient(circle, rgba(91, 156, 255, 0.35), transparent 70%);*/
      top: -80px;
      right: -80px;
      animation: float1 8s ease-in-out infinite;
    }

    .feat-visual img {
      /*width: 100%;*/
      /*max-width: 400px;*/
      /*filter: drop-shadow(0 30px 50px rgba(0, 0, 0, 0.35));*/
      position: relative;
      z-index: 2;
    }

    .feat-row {
      display: flex;
      gap: 20px;
      padding: 14px 0;
      border-bottom: 1px solid var(--line);
      opacity: 0;
      transform: translateX(-16px);
      transition: all .5s cubic-bezier(.22, .68, 0, 1.01);
    }

    .feat-row.in {
      opacity: 1;
      transform: translateX(0);
    }

    .feat-row:first-child {
      padding-top: 0;
    }

    .feat-row:last-child {
      border-bottom: none;
    }

    .feat-num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 13px;
      color: var(--blue-500);
      font-weight: 700;
      min-width: 36px;
      padding-top: 3px;
    }

    .feat-row h4 {
      font-size: 14px;
      margin-bottom: 6px;
    }

    .feat-row p {
      font-size: 14.5px;
      color: var(--steel);
    }

  
    .range {
      background: var(--white);
    }

    .range-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 26px;
    }

    .range-card {
      border: 1px solid var(--line);
      border-radius: 22px;
      padding: 34px 30px 30px;
      transition: all .35s cubic-bezier(.22, .68, 0, 1.01);
      position: relative;
      background: var(--white);
    }

    .range-card:hover {
      border-color: var(--blue-500);
      box-shadow: 0 26px 60px rgb(138 179 254 / 14%);
      transform: translateY(-8px);
    }

    .range-card .tag {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11px;
      color: var(--blue-600);
      background: var(--blue-100);
      padding: 5px 11px;
      border-radius: 100px;
      margin-bottom: 18px;
      display: inline-block;
      font-weight: 600;
    }

    .range-card .imgwrap {
      background: var(--sky);
      border-radius: 16px;
      padding: 26px;
      margin-bottom: 22px;
      display: flex;
      align-items: center;
      justify-content: center;
      min-height: 180px;
      transition: background .3s ease;
    }

    .range-card:hover .imgwrap {
      background: var(--blue-100);
    }

    .range-card h3 {
      font-size: 20px;
      margin-bottom: 8px;
    }

    .range-card p {
      font-size: 14px;
      color: var(--steel);
      margin-bottom: 20px;
    }

    .range-card a {
      font-size: 13.5px;
      font-weight: 700;
      color: var(--blue-700);
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .range-card a i {
      font-size: 12px;
      transition: transform .2s ease;
    }

    .range-card a:hover i {
      transform: translateX(4px);
    }

   
    .process {
      background: linear-gradient(165deg, var(--blue-900) 0%, var(--blue-700) 100%);
      color: var(--white);
      position: relative;
      overflow: hidden;
    }

    .process::before {
      content: "";
      position: absolute;
      inset: 0;
      background-image: radial-gradient(circle, rgba(255, 255, 255, 0.06) 1.4px, transparent 1.4px);
      background-size: 28px 28px;
    }

    .process .sec-head p {
      color: rgba(255, 255, 255, 0.65);
    }

    .process .kicker {
      color: var(--blue-400);
    }

    .process .kicker::before {
      background: var(--blue-400);
    }

    .process .sec-head h2 {
      color: var(--white);
    }

    .proc-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
      position: relative;
      z-index: 2;
    }

    .proc-step {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid rgba(255, 255, 255, 0.12);
      border-radius: 20px;
      padding: 32px 26px;
      transition: all .3s ease;
    }

    .proc-step:hover {
      background: rgba(255, 255, 255, 0.1);
      transform: translateY(-6px);
    }

    .proc-mark {
      width: 46px;
      height: 46px;
      border-radius: 12px;
      background: var(--white);
      color: var(--blue-700);
      display: flex;
      align-items: center;
      justify-content: center;
      font-family: 'JetBrains Mono', monospace;
      font-size: 14px;
      font-weight: 700;
      margin-bottom: 24px;
    }

    .proc-step h4 {
      color: var(--white);
      font-size: 16.5px;
      margin-bottom: 10px;
    }

    .proc-step p {
      color: rgba(255, 255, 255, 0.65);
      font-size: 14px;
    }

    /* STATS */
    .stats-band {
      background: var(--white);
      padding: 0;
      border-top: 1px solid var(--line);
      border-bottom: 1px solid var(--line);
    }

    .stats-grid {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
    }

    .stat-cell {
      padding: 20px 32px;
      text-align: center;
      border-right: 1px solid var(--line);
    }

    .stat-cell:last-child {
      border-right: none;
    }

    .stat-cell .num {
      font-family: 'JetBrains Mono', monospace;
      font-size: 36px;
      font-weight: 700;
      margin-bottom: 6px;
      background: linear-gradient(100deg, var(--blue-700), var(--blue-500));
      -webkit-background-clip: text;
      background-clip: text;
      color: transparent;
    }

    .stat-cell .label {
      font-size: 12.5px;
      color: var(--steel);
      font-weight: 600;
      letter-spacing: 0.02em;
    }

  
    .contact {
      background: var(--sky);
    }

    .contact-panel {
      display: grid;
      grid-template-columns: 0.95fr 1.05fr;
      background: var(--white);
      border-radius: 28px;
      overflow: hidden;
      box-shadow: 0 40px 90px rgba(8, 43, 110, 0.12);
    }

    .contact-info {
      background: linear-gradient(165deg, var(--blue-700) 0%, var(--blue-900) 100%);
      color: var(--white);
      padding: 58px 50px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      position: relative;
      overflow: hidden;
    }

    .contact-info::before {
      content: "";
      position: absolute;
      width: 280px;
      height: 280px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(91, 156, 255, 0.3), transparent 70%);
      bottom: -100px;
      left: -100px;
    }

    .contact-info h3 {
      color: var(--white);
      font-size: 27px;
      margin-bottom: 14px;
      position: relative;
    }

    .contact-info p {
      color: rgba(255, 255, 255, 0.65);
      font-size: 14.5px;
      margin-bottom: 38px;
      position: relative;
    }

    .contact-line {
      display: flex;
      gap: 16px;
      align-items: flex-start;
      margin-bottom: 24px;
      position: relative;
    }

    .contact-line i {
      color: var(--blue-400);
      font-size: 16px;
      margin-top: 3px;
      width: 20px;
    }

    .contact-line .t1 {
      font-size: 13.5px;
      color: #ffffffe3;
      margin-bottom: 2px;
    }

    .contact-line .t2 {
      font-size: 15px;
      color: var(--white);
      font-weight: 600;
    }

    .contact-form {
      padding: 30px 30px;
    }

    .contact-form h5 {
      font-size: 13px;
      color: var(--steel);
      margin-bottom: 26px;
      letter-spacing: 0.02em;
    }

    .form-row {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 16px;
      margin-bottom: 16px;
    }

    .form-group {
      margin-bottom: 16px;
    }

    input,
    textarea {
      width: 100%;
      padding: 15px 18px;
      border: 1.5px solid var(--line);
      border-radius: 12px;
      font-family: 'Manrope', sans-serif;
      font-size: 14.5px;
      color: var(--ink);
      background: var(--sky);
      transition: all .25s ease;
    }

    input:focus,
    textarea:focus {
      outline: none;
      border-color: var(--blue-500);
      background: var(--white);
      box-shadow: 0 0 0 4px rgba(20, 97, 240, 0.1);
    }

    textarea {
      resize: vertical;
      min-height: 115px;
    }

    .contact-form .btn-primary {
      width: 100%;
      justify-content: center;
      margin-top: 6px;
    }


    footer {
      background: var(--blue-900);
      color: rgba(255, 255, 255, 0.6);
      padding: 74px 0 0;
    }

    .footer-grid {
      display: grid;
      grid-template-columns: 1.4fr 1fr 1fr 1fr;
      gap: 40px;
      padding-bottom: 15px;
      border-bottom: 1px solid #ffffff45;
    }

    .footer-brand .brand {
      color: var(--white);
      margin-bottom: 16px;
    }

    .footer-brand .brand .plus::before,
    .footer-brand .brand .plus::after {
      background: var(--blue-400);
    }

    .footer-brand p {
      font-size: 14px;
      color: rgb(255 255 255 / 75%);
      max-width: 280px;
    }

    .footer-col h5 {
      font-family: 'JetBrains Mono', monospace;
      font-size: 11.5px;
      color: rgba(255, 255, 255, 0.85);
      margin-bottom: 20px;
      letter-spacing: 0.08em;
    }

    .footer-col ul li {
      margin-bottom: 12px;
    }

    .footer-col a {
      font-size: 14px;
      color: rgb(255 255 255 / 75%);
      transition: color .2s ease;
    }

    .footer-col a:hover {
      color: var(--white);
    }

    .footer-bottom {
      display: flex;
      justify-content: space-between;
      align-items: center;
      padding: 26px 0;
      font-size: 13.5px;
      color: rgb(255 255 255 / 75%);
    }

    .footer-bottom a {
         color: #fff;
    font-weight: 700;;
    }

    @media (max-width:980px) {
      .hero-grid {
        grid-template-columns: 1fr;
      }

      .device-stage {
        height: 380px;
        order: 0 !important;
      }

      .hero h1 {
        font-size: 38px;
      }

      .feat-grid {
        grid-template-columns: 1fr;
        gap: 40px;
      }

      .protect-grid {
        grid-template-columns: 1fr 1fr;
      }

      .range-grid {
        grid-template-columns: 1fr;
      }

      .proc-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .stat-cell {
        border-bottom: 1px solid var(--line);
      }

      .contact-panel {
        grid-template-columns: 1fr;
      }

      .form-row {
        grid-template-columns: 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr 1fr;
      }

      .navlist {
        display: none;
      }

      .nav-toggle {
        display: block;
      }
    }

    @media (max-width:560px) {
      .container {
        padding: 0 50px !important; 
      }

      .hero {
        padding: 130px 0 60px;
      }

      .hero h1 {
        font-size: 29px;
      }

      .device-card img {
        width: 210px;
      }

      .orbit-ring {
        width: 300px !important;
        height: 300px !important;
      }

      .pulse-ring {
        width: 220px;
        height: 220px;
      }

      .protect-grid {
        grid-template-columns: 1fr;
      }

      .section {
        padding: 74px 0;
      }

      .sec-head h2 {
        font-size: 27px;
      }

      .proc-grid {
        grid-template-columns: 1fr;
      }

      .stats-grid {
        grid-template-columns: 1fr 1fr;
      }

      .footer-grid {
        grid-template-columns: 1fr;
      }

      .footer-bottom {
        flex-direction: column;
        gap: 10px;
        text-align: center;
      }
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation-duration: 0.001ms !important;
        animation-iteration-count: 1 !important;
      }

      [data-reveal] {
        opacity: 1;
        transform: none;
      }
    }
    
    


    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Inter', sans-serif;
      background: #fff;
      color: var(--ink);
      line-height: 1.65;
      -webkit-font-smoothing: antialiased;
    }

    h1,
    h2,
    .brand,
    .eyebrow {
      font-family: 'Space Grotesk', sans-serif;
    }

    a {
      color: inherit;
    }

    @media (prefers-reduced-motion: reduce) {
      * {
        animation: none !important;
        transition: none !important;
      }
    }

    .topbar {
      background: #fff;
      border-bottom: 1px solid var(--line-dark);
      position: sticky;
      top: 0;
      z-index: 50;
    }

    .topbar-inner {
      max-width: 1080px;
      margin: 0 auto;
      padding: 18px 24px;
      display: flex;
      align-items: center;
      justify-content: space-between;
    }

    .brand {
      color: #fff;
      font-weight: 700;
      font-size: 1.15rem;
      letter-spacing: 0.01em;
      display: flex;
      align-items: center;
      gap: 8px;
      text-decoration: none;
    }

    .brand .plus {
      color: var(--cyan);
    }

    .topbar nav a {
       color: #393a51;
    text-decoration: none;
    font-size: 1.06rem;
    font-weight: 500;
    margin-left: 28px;
    transition: color .2s;
    }

    .topbar nav a:hover {
      color: #4551ff;
    }

    .topbar nav a.active {
      color: #4551ff;
      
    }

    /*.hero {*/
    /*  background:linear-gradient(165deg, #082b6e  0%, #0e4fcb 100%);*/
    /*  color: #fff;*/
    /*  padding: 40px 24px 40px;*/
    /*  position: relative;*/
    /*  overflow: hidden;*/
    /*}*/

    /*.hero::after {*/
    /*  content: "";*/
    /*  position: absolute;*/
    /*  inset: 0;*/
    /*  background-image:*/
    /*    linear-gradient(rgba(255, 255, 255, 0.045) 1px, transparent 1px),*/
    /*    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px);*/
    /*  background-size: 42px 42px;*/
    /*  mask-image: radial-gradient(ellipse at 70% 30%, black, transparent 70%);*/
    /*  pointer-events: none;*/
    /*}*/

    .hero-inner {
      max-width: 1280px;
      margin: 0 auto;
      position: relative;
    }

    /*.eyebrow {*/
    /*  display: inline-flex;*/
    /*  align-items: center;*/
    /*  gap: 8px;*/
    /*  font-size: 0.78rem;*/
    /*  font-weight: 600;*/
    /*  letter-spacing: 0.14em;*/
    /*  text-transform: uppercase;*/
    /*  color: var(--cyan);*/
    /*  margin-bottom: 0px;*/
    /*}*/

    .eyebrow .dot {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 10px var(--cyan);
    }

    .hero h1 {
      font-size: clamp(2.1rem, 5vw, 3.1rem);
      font-weight: 700;
      letter-spacing: -0.01em;
      /*margin-bottom: 0px;*/
    }


    .hero .meta {
      font-size: 0.88rem;
    color: rgb(34 78 144);
    display: flex;
    gap: 18px;
    flex-wrap: wrap;
    font-weight: 600;
    }

    .hero .meta span {
      display: flex;
      align-items: center;
      gap: 7px;
    }

    .page {
      max-width: 1300px;
      margin: 0 auto;
      padding: 56px 24px 100px;
      display: grid;
      grid-template-columns: 230px 1fr;
      gap: 56px;
    }

    .toc {
      position: sticky;
      top: 82px;
      align-self: start;
      display: none;
    }

    .toc-label {
      font-size: 0.72rem;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      color: var(--ink-soft);
      margin-bottom: 14px;
    }

    .toc ol {
      list-style: none;
      border-left: 2px solid var(--line);
    }

    .toc li a {
      display: block;
      padding: 7px 0 7px 16px;
      margin-left: -2px;
      border-left: 2px solid transparent;
      font-size: 0.86rem;
      color: var(--ink-soft);
      text-decoration: none;
      transition: color .15s, border-color .15s;
    }

    .toc li a:hover {
      color: var(--indigo);
    }

    .toc li a.active {
      color: var(--indigo);
      border-left-color: var(--indigo);
      font-weight: 600;
    }

    .content {
      min-width: 0;
    }

    .doc-title {
      font-size: 1.6rem;
      font-weight: 700;
      margin-bottom: 6px;
    }

    .doc-sub {
      color: var(--ink-soft);
      font-size: 0.95rem;
      margin-bottom: 44px;
    }

    section.clause {
      padding: 20px 0 15px;
      border-top: 1px solid var(--line);
      scroll-margin-top: 90px;
    }

    section.clause:first-of-type {
      border-top: none;
      padding-top: 0;
    }

    .clause-head {
      display: flex;
      align-items: baseline;
      gap: 14px;
      margin-bottom: 14px;
    }

    .clause-num {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 0.85rem;
      font-weight: 700;
      color: #fff;
      background: linear-gradient(135deg, var(--indigo), var(--blue));
      border-radius: 6px;
      padding: 3px 9px;
      flex-shrink: 0;
    }

    .clause-head h2 {
      font-size: 1.18rem;
      font-weight: 700;
      color: var(--ink);
    }

    .clause p {
      color: #3A4160;
      font-size: 0.98rem;
      margin-bottom: 12px;
    }

    .clause p:last-child {
      margin-bottom: 0;
    }

    .trace {
      display: flex;
      align-items: center;
      gap: 0;
      margin: 8px 0 8px 2px;
      height: 14px;
    }

    .trace .seg {
      height: 2px;
      width: 22px;
      background: repeating-linear-gradient(90deg, var(--cyan) 0 4px, transparent 4px 7px);
    }

    .trace .node {
      width: 6px;
      height: 6px;
      border-radius: 50%;
      background: var(--cyan);
      box-shadow: 0 0 8px var(--cyan);
    }

    .contact-card {
      margin-top: 8px;
      background: var(--navy-panel);
      color: #fff;
      border-radius: 14px;
      padding: 28px 30px;
      display: grid;
      gap: 14px;
      background-image: radial-gradient(circle at 90% 0%, rgba(62, 214, 232, 0.16), transparent 60%);
    }

    .contact-card h3 {
      font-family: 'Space Grotesk', sans-serif;
      font-size: 1.05rem;
      margin-bottom: 2px;
    }

    .contact-row {
      display: flex;
      flex-wrap: wrap;
      gap: 8px 26px;
      font-size: 0.92rem;
      color: rgba(255, 255, 255, 0.85);
    }

    .contact-row a {
      color: var(--cyan);
      text-decoration: none;
    }

    .contact-row a:hover {
      text-decoration: underline;
    }

    .contact-addr {
      font-size: 0.88rem;
      color: rgba(255, 255, 255, 0.62);
    }

    .cross-link {
      margin-top: 40px;
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #fff;
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 18px 22px;
    }

    .cross-link span {
      font-size: 0.92rem;
      color: var(--ink-soft);
    }

    .cross-link a {
      font-weight: 600;
      color: var(--indigo);
      text-decoration: none;
      display: inline-flex;
      align-items: center;
      gap: 6px;
    }

    .cross-link a:hover {
      color: var(--blue);
    }

    @media (min-width:860px) {
      .toc {
        display: block;
      }
    }

     .data-grid {
      display: grid;
      grid-template-columns: repeat(auto-fit, minmax(210px, 1fr));
      gap: 14px;
      margin-top: 16px;
    }

    .data-item {
      border: 1px solid var(--line);
      border-radius: 12px;
      padding: 16px 18px;
      background: #fff;
    }

    .data-item .tag {
      display: inline-block;
      font-size: 0.68rem;
      font-weight: 700;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--blue);
      background: rgba(61, 111, 224, 0.09);
      border-radius: 5px;
      padding: 2px 8px;
      margin-bottom: 8px;
    }

    .data-item p {
      font-size: 0.9rem;
      color: #3A4160;
      margin: 0;
    }

    .badge-row {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      margin-top: 14px;
    }

    .badge {
      display: flex;
      align-items: center;
      gap: 8px;
      border: 1px solid var(--line);
      border-radius: 999px;
      padding: 8px 14px;
      font-size: 0.85rem;
      font-weight: 600;
      color: var(--ink);
      background: #fff;
    }

    .badge .check {
      width: 16px;
      height: 16px;
      border-radius: 50%;
      background: linear-gradient(135deg, var(--indigo), var(--blue));
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }

    .badge .check::after {
      content: "✓";
      color: #fff;
      font-size: 10px;
      font-weight: 700;
    }
.sp-cta {
    --sp-blue: #1a5fd9;
    --sp-blue-dark: #0f47ad;
    --sp-navy: #0c1c3e;
    --sp-navy-2: #142a56;
    --sp-ink: #0c1c3e;
    --sp-muted: #64748b;
    --sp-line: #e6ebf5;
    /*--sp-radius: 20px;*/
 background: linear-gradient(165deg, var(--blue-900) 0%, var(--blue-700) 100%);
    position: relative;
    /*margin: 96px auto;*/
    /*max-width: 1200px;*/
    /*padding: 0 24px;*/
    font-family: inherit;
  }
 
  .sp-cta__panel {
    position: relative;
    overflow: hidden;
    
    border-radius: var(--sp-radius);
    padding: 60px 20px;
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    align-items: center;
    gap: 40px;
    isolation: isolate;
  }
 
  /* decorative radar-style rings — nods to "always watching" without being literal */
  .sp-cta::before {
    content: "";
    position: absolute;
    right: -120px;
    top: 50%;
    transform: translateY(-50%);
    width: 480px;
    height: 480px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 0 0 60px rgba(255, 255, 255, 0.03), 0 0 0 120px rgba(255, 255, 255, 0.015);
    z-index: 0;
  }
 
  .sp-cta__copy { position: relative; z-index: 1; }
 
  .sp-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: #9fc0ff;
    margin: 0 0 18px;
  }
 
  .sp-cta__eyebrow::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #4d9bff;
    box-shadow: 0 0 0 4px rgba(77, 155, 255, 0.25);
  }
 
  .sp-cta__headline {
    font-size: 34px;
    line-height: 1.25;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 18px;
    max-width: 30ch;
  }
 
  .sp-cta__headline strong {
    color: #6fa8ff;
    font-weight: 700;
  }
 
  .sp-cta__sub {
    font-size: 16px;
    line-height: 1.7;
    color: #c3cde3;
    max-width: 46ch;
    margin: 0 0 32px;
  }
 
  .sp-cta__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 34px;
  }
 
  .sp-cta__pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 9px 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.12);
    color: #e7ecf7;
    font-size: 13.5px;
    font-weight: 500;
  }
 
  .sp-cta__pill svg { flex-shrink: 0; opacity: 0.9; }
 
  .sp-cta__actions { display: flex; align-items: center; gap: 18px; flex-wrap: wrap; }
 
  .sp-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: #ffffff;
    color: var(--sp-blue-dark);
    font-size: 15.5px;
    font-weight: 700;
    padding: 15px 26px;
    border-radius: 999px;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease;
    box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
  }
 
  .sp-cta__btn:hover {
    transform: translateY(-2px);
    background: #f2f6ff;
    box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
  }
 
  .sp-cta__btn svg { transition: transform 0.18s ease; }
  .sp-cta__btn:hover svg { transform: translateX(3px); }
 
  .sp-cta__phone {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: #e7ecf7;
    text-decoration: none;
    font-size: 15px;
    font-weight: 600;
  }
 
  .sp-cta__phone svg { color: #6fa8ff; flex-shrink: 0; }
  .sp-cta__phone:hover { color: #ffffff; }
 
  /* right-side feature card stack */
  .sp-cta__cards {
    position: relative;
    z-index: 1;
    display: grid;
    gap: 14px;
  }
 
  .sp-cta__card {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 14px;
    padding: 18px 20px;
    backdrop-filter: blur(6px);
  }
 
  .sp-cta__card-icon {
    flex-shrink: 0;
    width: 40px;
    height: 40px;
    border-radius: 11px;
    background: rgba(111, 168, 255, 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7fb0ff;
  }
 
  .sp-cta__card-title {
    font-size: 14.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 3px;
  }
 
  .sp-cta__card-text {
    font-size: 13px;
    line-height: 1.55;
    color: #b7c2dc;
    margin: 0;
  }
 
  @media (max-width: 900px) {
    .sp-cta { margin: 64px auto; padding: 0 18px; }
    .sp-cta__panel {
      grid-template-columns: 1fr;
      padding: 40px 26px;
      border-radius: 18px;
    }
    .sp-cta__panel::before { display: none; }
    .sp-cta__headline { font-size: 26px; max-width: 100%; }
    .sp-cta__sub { max-width: 100%; }
    .sp-cta__actions { flex-direction: column; align-items: flex-start; gap: 16px; }
    .sp-cta__btn { width: 100%; justify-content: center; }
  }
  
  
  
      .social-rail {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 45;
    display: flex;
    flex-direction: column;
    gap: 4px;
    background: #fff;
    padding: 8px;
    border: 1px solid #c7dbff;
    border-right: none;
    border-radius: 16px 0 0 16px;
    box-shadow: -10px 14px 34px -20px rgba(20, 19, 25, .5)
  }

  .social-rail a {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    display: grid;
    place-items: center;
    color: var(--brand, #141319);
    transition: .2s ease
  }

  .social-rail a svg {
    width: 20px;
    height: 20px
  }

  .social-rail a:hover {
    background: var(--brand);
    color: #fff;
    transform: translateX(-3px)
  }

.sr-ig {
  --brand: #E4405F;
}

.sr-ig:hover {
  --brand: linear-gradient(
    135deg,
    #833AB4 0%,
    #C13584 30%,
    #E1306C 55%,
    #FD1D1D 75%,
    #FCAF45 100%
  );
}


.sr-fb {
  --brand: #1877F2;
}

.sr-fb:hover {
  --brand: linear-gradient(
    135deg,
    #1877F2 0%,
    #0A66C2 50%,
    #0047AB 100%
  );
}


.sr-li {
  --brand: #0A66C2;
}

.sr-li:hover {
  --brand: linear-gradient(
    135deg,
    #0A66C2 0%,
    #0077B5 50%,
    #004182 100%
  );
}


.sr-gg {
  --brand: #4285F4;
}

.sr-gg:hover {
  --brand: linear-gradient(
    135deg,
    #4285F4 0%,
    #34A853 35%,
    #FBBC05 65%,
    #EA4335 100%
  );
}


.sr-yt {
  --brand: #FF0000;
}

.sr-yt:hover {
  --brand: linear-gradient(
    135deg,
    #FF0000 0%,
    #CC0000 50%,
    #8B0000 100%
  );
}


html,
body {
    width: 100%;
    max-width: 100%;
    overflow-x: hidden !important;
}

section,
header,
footer,
main,
.container,
.hero,
.ticker-strip,
.sp-cta {
    max-width: 100%;
}

* {
    min-width: 0;
}

img,
svg,
video,
iframe {
    max-width: 100%;
}

@media (max-width: 560px) {

    nav {
        width: 100%;
        padding-left: 20px;
        padding-right: 20px;
    }

    .hero,
    .hero-grid,
    .device-stage {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .hero-bg-blob,
    .hero-bg-blob2 {
        max-width: none;
    }

    .status-chip.a {
        right: 0;
    }

    .status-chip.b {
        left: 0;
    }

    .ticker-strip {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .sp-cta,
    .sp-cta__panel {
        width: 100%;
        max-width: 100%;
        overflow: hidden;
    }

    .social-rail {
        right: 0;
        max-width: 45px;
        overflow: hidden;
    }

}
  .device-card {
  position: relative; /* keep whatever else you already have on this */
}

.device-img {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  object-fit: contain;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
  pointer-events: none;
}

.device-img.active {
  opacity: 1;
  position: relative; /* first image sets the box's natural size */
}