:root {
      --bg: #0b1020;
      --bg-soft: #121933;
      --card: rgba(255, 255, 255, 0.06);
      --line: rgba(255, 255, 255, 0.12);
      --text: #f5f7ff;
      --muted: #aab4d6;
      --accent: #6c7cff;
      --accent-2: #00d4ff;
      --success: #5ee7a0;
      --shadow: 0 20px 50px rgba(0, 0, 0, 0.35);
      --radius: 20px;
      --max: 1200px;
    }

    * {
      box-sizing: border-box;
      margin: 0;
      padding: 0;
    }

    html {
      scroll-behavior: smooth;
    }

    body {
      font-family: Inter, Arial, sans-serif;
      background:
        radial-gradient(circle at top left, rgba(108, 124, 255, 0.22), transparent 28%),
        radial-gradient(circle at top right, rgba(0, 212, 255, 0.15), transparent 24%),
        linear-gradient(180deg, #070b16 0%, #0b1020 100%);
      color: var(--text);
      line-height: 1.6;
    }

    a {
      color: inherit;
      text-decoration: none;
    }

    img {
      max-width: 100%;
      display: block;
    }

    .container {
      width: min(92%, var(--max));
      margin: 0 auto;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 14px 24px;
      border-radius: 999px;
      font-weight: 700;
      transition: 0.25s ease;
      border: 1px solid transparent;
      cursor: pointer;
    }

    .btn-primary {
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      color: white;
      box-shadow: 0 10px 30px rgba(108, 124, 255, 0.35);
    }

    .btn-primary:hover {
      transform: translateY(-2px);
      opacity: 0.95;
    }

    .btn-secondary {
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
      color: var(--text);
    }

    .btn-secondary:hover {
      background: rgba(255, 255, 255, 0.08);
    }

    .section {
      padding: 90px 0;
    }

    .eyebrow {
      display: inline-block;
      font-size: 0.82rem;
      text-transform: uppercase;
      letter-spacing: 0.14em;
      color: var(--accent-2);
      margin-bottom: 14px;
      font-weight: 700;
    }

    h1, h2, h3 {
      line-height: 1.1;
    }

    h1 {
      font-size: clamp(2.7rem, 6vw, 5rem);
      letter-spacing: -0.04em;
    }

    h2 {
      font-size: clamp(2rem, 4vw, 3rem);
      letter-spacing: -0.03em;
      margin-bottom: 18px;
    }

    h3 {
      font-size: 1.25rem;
      margin-bottom: 12px;
    }

    p.lead {
      font-size: 1.08rem;
      color: var(--muted);
      max-width: 700px;
    }

    p {
      color: var(--muted);
    }

    header {
      position: sticky;
      top: 0;
      z-index: 50;
      backdrop-filter: blur(16px);
      background: rgba(7, 11, 22, 0.65);
      border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }

    .nav {
      display: flex;
      align-items: center;
      justify-content: space-between;
      min-height: 78px;
      gap: 20px;
    }

    .logo {
      display: flex;
      align-items: center;
      gap: 12px;
      font-weight: 800;
      font-size: 1.1rem;
    }

    .logo-mark {
      width: 38px;
      height: 38px;
      border-radius: 12px;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
      display: grid;
      place-items: center;
      color: white;
      font-weight: 900;
      box-shadow: 0 10px 30px rgba(108, 124, 255, 0.35);
    }

    .nav-links {
      display: flex;
      align-items: center;
      gap: 28px;
      list-style: none;
    }

    .nav-links a {
      color: var(--muted);
      font-weight: 600;
      transition: 0.2s ease;
    }

    .nav-links a:hover {
      color: white;
    }

    .hero {
      padding: 110px 0 80px;
    }

    .hero-grid {
      display: grid;
      grid-template-columns: 1.15fr 0.85fr;
      gap: 40px;
      align-items: center;
    }

    .hero-copy p {
      margin: 22px 0 30px;
    }

    .hero-actions {
      display: flex;
      flex-wrap: wrap;
      gap: 14px;
      margin-bottom: 36px;
    }

    .hero-metrics {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 16px;
    }

    .metric {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 18px;
      background: rgba(255, 255, 255, 0.04);
    }

    .metric strong {
      display: block;
      font-size: 1.4rem;
      color: white;
      margin-bottom: 6px;
    }

    .hero-card {
      background: linear-gradient(180deg, rgba(255,255,255,0.09), rgba(255,255,255,0.04));
      border: 1px solid var(--line);
      border-radius: 28px;
      padding: 24px;
      box-shadow: var(--shadow);
      position: relative;
      overflow: hidden;
    }

    .hero-card::before {
      content: "";
      position: absolute;
      inset: auto -60px -60px auto;
      width: 220px;
      height: 220px;
      border-radius: 50%;
      background: radial-gradient(circle, rgba(0,212,255,0.35), transparent 65%);
    }

    .dashboard {
      display: grid;
      gap: 16px;
    }

    .dash-panel {
      background: rgba(11, 16, 32, 0.78);
      border: 1px solid var(--line);
      border-radius: 20px;
      padding: 20px;
    }

    .dash-top {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 18px;
    }

    .badge {
      padding: 8px 12px;
      border-radius: 999px;
      background: rgba(94, 231, 160, 0.12);
      color: var(--success);
      font-size: 0.85rem;
      font-weight: 700;
      border: 1px solid rgba(94, 231, 160, 0.2);
    }

    .bars {
      display: grid;
      gap: 12px;
    }

    .bar-row span {
      display: flex;
      justify-content: space-between;
      font-size: 0.92rem;
      margin-bottom: 6px;
      color: var(--muted);
    }

    .bar {
      height: 10px;
      border-radius: 999px;
      background: rgba(255, 255, 255, 0.08);
      overflow: hidden;
    }

    .bar-fill {
      height: 100%;
      border-radius: inherit;
      background: linear-gradient(135deg, var(--accent), var(--accent-2));
    }

    .brands {
      border-top: 1px solid rgba(255,255,255,0.06);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      padding: 28px 0;
      background: rgba(255,255,255,0.02);
    }

    .brands-wrap {
      display: grid;
      grid-template-columns: repeat(5, 1fr);
      gap: 18px;
      align-items: center;
      text-align: center;
    }

    .brand {
      padding: 18px;
      border: 1px solid var(--line);
      border-radius: 16px;
      color: #d8def6;
      font-weight: 700;
      background: rgba(255, 255, 255, 0.03);
    }

    .section-head {
      display: flex;
      justify-content: space-between;
      gap: 30px;
      align-items: end;
      margin-bottom: 40px;
    }

    .grid-3 {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .card {
      padding: 28px;
      border-radius: 22px;
      background: var(--card);
      border: 1px solid var(--line);
      box-shadow: var(--shadow);
    }

    .icon {
      width: 50px;
      height: 50px;
      border-radius: 14px;
      display: grid;
      place-items: center;
      margin-bottom: 18px;
      font-weight: 800;
      background: linear-gradient(135deg, rgba(108,124,255,0.2), rgba(0,212,255,0.18));
      border: 1px solid rgba(255,255,255,0.1);
    }

    .stats {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 18px;
    }

    .stat {
      text-align: center;
      padding: 26px 18px;
      border-radius: 20px;
      border: 1px solid var(--line);
      background: rgba(255,255,255,0.04);
    }

    .stat strong {
      display: block;
      font-size: 2rem;
      color: white;
      margin-bottom: 8px;
    }

    .case-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
    }

    .case-card {
      overflow: hidden;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: rgba(255, 255, 255, 0.04);
      box-shadow: var(--shadow);
    }

    .case-image {
      height: 220px;
      background:
        linear-gradient(135deg, rgba(108,124,255,0.7), rgba(0,212,255,0.4)),
        url('https://images.unsplash.com/photo-1551434678-e076c223a692?auto=format&fit=crop&w=1200&q=80') center/cover;
    }

    .case-image.two {
      background:
        linear-gradient(135deg, rgba(108,124,255,0.7), rgba(0,212,255,0.4)),
        url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1200&q=80') center/cover;
    }

    .case-image.three {
      background:
        linear-gradient(135deg, rgba(108,124,255,0.7), rgba(0,212,255,0.4)),
        url('https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?auto=format&fit=crop&w=1200&q=80') center/cover;
    }

    .case-content {
      padding: 24px;
    }

    .case-tag {
      display: inline-block;
      margin-bottom: 14px;
      font-size: 0.8rem;
      color: var(--accent-2);
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.12em;
    }

    .quote {
      padding: 34px;
      border-radius: 24px;
      border: 1px solid var(--line);
      background: linear-gradient(180deg, rgba(255,255,255,0.06), rgba(255,255,255,0.03));
      box-shadow: var(--shadow);
      max-width: 850px;
      margin: 0 auto;
      text-align: center;
    }

    .quote p {
      font-size: 1.2rem;
      color: #dde4ff;
      margin-bottom: 18px;
    }

    .quote small {
      color: var(--muted);
    }

    .cta-box {
      padding: 42px;
      border-radius: 28px;
      border: 1px solid var(--line);
      background:
        radial-gradient(circle at top right, rgba(0,212,255,0.16), transparent 30%),
        radial-gradient(circle at bottom left, rgba(108,124,255,0.2), transparent 28%),
        rgba(255,255,255,0.04);
      box-shadow: var(--shadow);
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 24px;
      flex-wrap: wrap;
    }

    footer {
      padding: 40px 0 50px;
      border-top: 1px solid rgba(255,255,255,0.06);
      color: var(--muted);
    }

    .footer-wrap {
      display: flex;
      justify-content: space-between;
      gap: 20px;
      flex-wrap: wrap;
    }

    @media (max-width: 1024px) {
      .hero-grid,
      .grid-3,
      .case-grid,
      .stats {
        grid-template-columns: 1fr 1fr;
      }

      .brands-wrap {
        grid-template-columns: repeat(3, 1fr);
      }
    }

    @media (max-width: 768px) {
      .nav {
        flex-direction: column;
        padding: 0px 0;
      }

      .nav-links {
        flex-wrap: wrap;
        justify-content: center;
      }

      .hero-grid,
      .grid-3,
      .case-grid,
      .stats,
      .hero-metrics,
      .brands-wrap {
        grid-template-columns: 1fr;
      }

      .section-head,
      .cta-box,
      .footer-wrap {
        flex-direction: column;
        align-items: flex-start;
      }

      .hero {
        padding-top: 70px;
      }
    }
    .logo {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 800;
  font-size: 1.1rem;
}

.logo-img {
  width: 178px;
  height: 44px;
  object-fit: contain;
}

.logo-text {
  letter-spacing: 0.5px;
}

@media (max-width: 768px) {
  .nav {
    display: flex;
    flex-direction: row;   
    align-items: center;
    justify-content: center;
    min-height: 0;
    height: auto;
    padding: 10px 0;
    gap: 0;                
  }

  .nav-links,
  .nav .btn {
    display: none;
  }

  .logo {
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0;
  }
}