   :root {
      --bg: #f5f5f7;
      --text: #0f0f12;
      --muted: #6c6c75;
      --purple: #6f2cff;
      --purple-soft: #b18aff;
      --card: #ffffff;
      --dark-card: #14141d;
      --border: rgba(111, 44, 255, 0.14);
      --shadow: 0 20px 50px rgba(111, 44, 255, 0.08);
    }

    * {
      margin: 0;
      padding: 0;
      box-sizing: border-box;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: 'Montserrat', sans-serif;
      background: var(--bg);
      color: var(--text);
      overflow-x: hidden;
    }

    .bg-glow {
      position: fixed;
      width: 700px;
      height: 700px;
      background: radial-gradient(circle, rgba(111,44,255,.18) 0%, transparent 70%);
      top: -200px;
      right: -200px;
      z-index: -1;
      pointer-events: none;
      filter: blur(10px);
    }

    .container {
      width: min(1200px, 92%);
      margin: auto;
    }

    header {
      position: sticky;
      top: 0;
      backdrop-filter: blur(14px);
      background: rgba(245,245,247,.78);
      border-bottom: 1px solid rgba(0,0,0,.04);
      z-index: 999;
    }

    nav {
      height: 82px;
      display: flex;
      justify-content: space-between;
      align-items: center;
    }

    .logo {
      display: flex;
      align-items: center;
    }

    .logo-image img {
      height: 150px;
      width: auto;
      object-fit: contain;
    }

    

    .nav-links {
      display: flex;
      gap: 34px;
      list-style: none;
    }

    .nav-links a {
      text-decoration: none;
      color: var(--text);
      font-weight: 600;
      transition: .3s;
      position: relative;
    }
    .hero-actions a{
    text-decoration:none;
    }

    .nav-links a::after {
      content: "";
      position: absolute;
      left: 0;
      bottom: -6px;
      width: 0;
      height: 2px;
      background: var(--purple);
      transition: .3s;
    }

    .nav-links a:hover::after {
      width: 100%;
    }

    .btn {
      background: var(--purple);
      color: white;
      border: none;
      padding: 16px 28px;
      border-radius: 18px;
      font-weight: 700;
      cursor: pointer;
      transition: .35s;
      box-shadow: 0 10px 30px rgba(111,44,255,.25);
    }

    .btn:hover {
      transform: translateY(-4px);
      box-shadow: 0 18px 35px rgba(111,44,255,.35);
    }

    section {
      padding: 110px 0;
    }

    .hero {
      min-height: calc(100vh - 82px);
      display: flex;
      align-items: center;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.1fr .9fr;
      gap: 60px;
      align-items: center;
    }

    .eyebrow {
      color: var(--purple);
      font-weight: 700;
      letter-spacing: 1px;
      margin-bottom: 18px;
      display: inline-block;
    }

    .hero h1 {
      font-size: clamp(3rem, 7vw, 6rem);
      line-height: .92;
      font-weight: 900;
      margin-bottom: 28px;
      text-transform: uppercase;
    }

    .hero h1 span {
      color: var(--purple);
    }

    .hero p {
      color: var(--muted);
      font-size: 1.08rem;
      line-height: 1.8;
      max-width: 650px;
      margin-bottom: 36px;
    }

    .hero-actions {
      display: flex;
      align-items: center;
      gap: 18px;
      flex-wrap: wrap;
    }

    .outline-btn {
      border: 2px solid var(--purple);
      color: var(--purple);
      background: transparent;
      padding: 14px 24px;
      border-radius: 16px;
      font-weight: 700;
      cursor: pointer;
      transition: .3s;
    }

    .outline-btn:hover {
      background: var(--purple);
      color: white;
    }

    .hero-visual {
      position: relative;
      height: 620px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .circle {
      position: absolute;
      width: 540px;
      height: 540px;
      border: 2px solid rgba(111,44,255,.35);
      border-radius: 50%;
      animation: pulse 5s infinite ease-in-out;
    }

    .dashboard {
      width: 100%;
      max-width: 520px;
      background: var(--dark-card);
      border-radius: 30px;
      padding: 28px;
      position: relative;
      overflow: hidden;
      box-shadow: 0 30px 70px rgba(0,0,0,.28);
      transform-style: preserve-3d;
      transition: transform .2s ease;
    }

    .dashboard::before {
      content: "";
      position: absolute;
      inset: 0;
      background: linear-gradient(130deg, rgba(111,44,255,.18), transparent 40%);
    }

    .dashboard-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 28px;
    }

    .dashboard-title {
      color: white;
      font-size: 1.2rem;
      font-weight: 700;
    }

    .dots {
      display: flex;
      gap: 6px;
    }

    .dots span {
      width: 10px;
      height: 10px;
      background: rgba(255,255,255,.3);
      border-radius: 50%;
    }

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

    .card {
      background: rgba(255,255,255,.04);
      border: 1px solid rgba(255,255,255,.05);
      border-radius: 20px;
      padding: 20px;
      position: relative;
      overflow: hidden;
    }

    .card small {
      color: rgba(255,255,255,.65);
      display: block;
      margin-bottom: 14px;
    }

    .card strong {
      font-size: 2rem;
      color: white;
      display: block;
      margin-bottom: 8px;
    }

    .mini-chart {
      height: 70px;
      display: flex;
      align-items: end;
      gap: 10px;
    }

    .mini-chart span {
      flex: 1;
      background: linear-gradient(to top, var(--purple), var(--purple-soft));
      border-radius: 10px 10px 2px 2px;
      animation: grow 2s ease-in-out infinite alternate;
    }

    .mini-chart span:nth-child(1){height:35%;}
    .mini-chart span:nth-child(2){height:50%; animation-delay:.2s;}
    .mini-chart span:nth-child(3){height:65%; animation-delay:.4s;}
    .mini-chart span:nth-child(4){height:80%; animation-delay:.6s;}

    .line-chart {
      width: 100%;
      height: 80px;
      position: relative;
    }

    .line-chart svg {
      width: 100%;
      height: 100%;
    }

    .stats {
      margin-top: 80px;
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 24px;
    }

    .stat-box {
      background: var(--card);
      padding: 28px;
      border-radius: 24px;
      border: 1px solid var(--border);
      box-shadow: var(--shadow);
      transition: .35s;
    }

    .stat-box:hover {
      transform: translateY(-8px);
    }

    .stat-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: rgba(111,44,255,.1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 20px;
    }

    .stat-box h3 {
      margin-bottom: 10px;
      font-size: 1.1rem;
    }

    .stat-box p {
      color: var(--muted);
      line-height: 1.7;
      font-size: .95rem;
    }

    .services {
      position: relative;
    }

    .section-title {
      text-align: center;
      margin-bottom: 70px;
    }

    .section-title h2 {
      font-size: clamp(2.5rem, 5vw, 4rem);
      text-transform: uppercase;
      font-weight: 900;
      margin-bottom: 18px;
    }

    .section-title h2 span {
      color: var(--purple);
    }

    .section-title p {
      max-width: 760px;
      margin: auto;
      color: var(--muted);
      line-height: 1.8;
    }

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

    .service-card {
      background: white;
      border-radius: 28px;
      padding: 34px;
      border: 1px solid var(--border);
      position: relative;
      overflow: hidden;
      transition: .35s;
      box-shadow: var(--shadow);
    }

    .service-card:hover {
      transform: translateY(-10px);
    }

    .service-card::before {
      content: "";
      position: absolute;
      width: 180px;
      height: 180px;
      background: rgba(111,44,255,.07);
      border-radius: 50%;
      right: -60px;
      top: -60px;
    }

    .service-icon {
      width: 70px;
      height: 70px;
      border-radius: 20px;
      background: rgba(111,44,255,.12);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 24px;
      position: relative;
      z-index: 2;
    }

    .service-card h3 {
      font-size: 1.4rem;
      margin-bottom: 16px;
      position: relative;
      z-index: 2;
    }

    .service-card p {
      color: var(--muted);
      line-height: 1.8;
      position: relative;
      z-index: 2;
    }

    .engineering-section {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 60px;
      align-items: center;
      padding: 80px 0;
    }

    .engineering-content h2 {
      font-size: clamp(2.8rem, 5vw, 5rem);
      line-height: .95;
      font-weight: 900;
      margin-bottom: 28px;
      text-transform: uppercase;
    }

    .engineering-content h2 span {
      color: var(--purple);
    }

    .engineering-content p {
      color: var(--muted);
      line-height: 1.9;
      font-size: 1.05rem;
      margin-bottom: 40px;
      max-width: 580px;
    }

    .engineering-list {
      display: flex;
      flex-direction: column;
      gap: 22px;
    }

    .engineering-item {
      display: flex;
      align-items: center;
      gap: 18px;
      font-weight: 600;
      font-size: 1.05rem;
    }

    .engineering-icon {
      width: 58px;
      height: 58px;
      border-radius: 18px;
      background: rgba(111,44,255,.08);
      display: flex;
      align-items: center;
      justify-content: center;
      border: 1px solid rgba(111,44,255,.12);
    }

    .engineering-visual {
      position: relative;
      height: 500px;
      display: flex;
      align-items: center;
      justify-content: center;
    }

    .engineering-circle {
      position: absolute;
      width: 520px;
      height: 520px;
      background: rgba(111,44,255,.05);
      border-radius: 50%;
    }

    .laptop-wireframe {
      position: relative;
      z-index: 2;
      width: 420px;
      animation: float 4s ease-in-out infinite;
    }

    .screen {
      width: 100%;
      height: 250px;
      border: 4px solid var(--purple);
      border-radius: 20px 20px 10px 10px;
      display: flex;
      align-items: center;
      justify-content: center;
      background: rgba(255,255,255,.3);
      backdrop-filter: blur(4px);
    }

    .code-symbol {
      color: var(--purple);
      font-size: 5rem;
      font-weight: 700;
    }

    .base {
      width: 115%;
      height: 18px;
      border: 4px solid var(--purple);
      border-top: none;
      border-radius: 0 0 30px 30px;
      margin-left: -7.5%;
    }

    .cta {
      text-align: center;
      background: linear-gradient(135deg, #121219, #1a1228);
      border-radius: 40px;
      padding: 90px 40px;
      position: relative;
      overflow: hidden;
    }

    .cta::before,
    .cta::after {
      content: "";
      position: absolute;
      width: 320px;
      height: 320px;
      border-radius: 50%;
      background: rgba(111,44,255,.14);
      filter: blur(10px);
    }

    .cta::before {
      top: -100px;
      left: -80px;
    }

    .cta::after {
      bottom: -120px;
      right: -100px;
    }

    .cta h2 {
      color: white;
      font-size: clamp(2.6rem, 5vw, 5rem);
      text-transform: uppercase;
      line-height: 1;
      font-weight: 900;
      margin-bottom: 24px;
      position: relative;
      z-index: 2;
    }

    .cta h2 span  {
      color: var(--purple-soft);
    }
    .eyebrow_contact{
        color: var(--purple-soft);
    }

    .cta p {
      color: rgba(255,255,255,.72);
      line-height: 1.8;
      max-width: 760px;
      margin: auto auto 40px;
      position: relative;
      z-index: 2;
    }

    footer {
      padding: 60px 0 40px;
    }

    .footer-content {
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 20px;
      flex-wrap: wrap;
      border-top: 1px solid rgba(0,0,0,.08);
      padding-top: 40px;
    }

    .footer-content p {
      color: var(--muted);
    }

    .reveal {
      opacity: 0;
      transform: translateY(40px);
      transition: all .8s ease;
    }

    .reveal.active {
      opacity: 1;
      transform: translateY(0);
    }

    @keyframes pulse {
      0%,100% { transform: scale(1); opacity: .7; }
      50% { transform: scale(1.03); opacity: 1; }
    }

    @keyframes grow {
      from { transform: scaleY(.8); }
      to { transform: scaleY(1); }
    }

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

    @media (max-width: 1080px) {
      .hero-grid,
      .engineering-section,
      .services-grid,
      .stats {
        grid-template-columns: 1fr;
      }

      .hero {
        padding-top: 60px;
      }

      .hero-visual {
        height: auto;
      }

      .circle {
        width: 100%;
        height: 100%;
      }

      .nav-links {
        display: none;
      }
    }

    @media (max-width: 700px) {
      section {
        padding: 80px 0;
      }

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

      .hero h1 {
        font-size: 3rem;
      }

      .dashboard {
        padding: 20px;
      }

      .cta {
        padding: 70px 24px;
      }
    }
.nav-orbit-icon{
  width:54px;
  height:54px;
  position:relative;
  display:flex;
  align-items:center;
  justify-content:center;
}

.orbit-core{
  width:12px;
  height:12px;
  border-radius:50%;
  background:#6f2cff;
  position:relative;
  box-shadow:0 0 18px rgba(111,44,255,.45);
}

.orbit-core::before{
  content:'';
  position:absolute;
  width:34px;
  height:34px;
  border:2px solid rgba(111,44,255,.55);
  border-radius:50%;
  top:50%;
  left:50%;
  transform:translate(-50%,-50%);
  animation:rotateOrbit 4s linear infinite;
}

.orbit-core::after{
  content:'';
  position:absolute;
  width:6px;
  height:6px;
  background:#6f2cff;
  border-radius:50%;
  top:-11px;
  left:50%;
  transform:translateX(-50%);
  box-shadow:0 0 10px rgba(111,44,255,.55);
}

@keyframes rotateOrbit{
  from{
    transform:translate(-50%,-50%) rotate(0deg);
  }
  to{
    transform:translate(-50%,-50%) rotate(360deg);
  }
}