
      :root {
        --bg: #070a18;
        --panel: rgba(255, 255, 255, 0.06);
        --panel2: rgba(255, 255, 255, 0.08);
        --text: rgba(255, 255, 255, 0.92);
        --muted: rgba(255, 255, 255, 0.72);
        --faint: rgba(255, 255, 255, 0.55);
        --line: rgba(255, 255, 255, 0.12);

        --a: #6a5cff;
        --b: #23d5ff;
        --c: #ff4fd8;
        --d: #7dff7a;
        --e: #ffd36e;

        /* Accent aliases (used by a few components like the logo mark) */
        --accent: var(--a);
        --accent2: var(--b);
        --accent3: var(--c);

        --shadow: 0 20px 70px rgba(0, 0, 0, 0.5);
        --radius: 18px;
        --radius2: 26px;

        --max: 1120px;
        --pad: 22px;

        /* Neutral surfaces that adapt to theme */
        --surface: rgba(0, 0, 0, 0.22);
        --surface2: rgba(0, 0, 0, 0.18);
        --surfaceInput: rgba(0, 0, 0, 0.25);

        /* Theme-dependent background (overridden by light theme) */
        --bg-grad: radial-gradient(
            1200px 600px at 20% 10%,
            rgba(106, 92, 255, 0.28),
            transparent 60%
          ),
          radial-gradient(
            900px 540px at 80% 10%,
            rgba(35, 213, 255, 0.22),
            transparent 55%
          ),
          radial-gradient(
            900px 600px at 55% 70%,
            rgba(255, 79, 216, 0.16),
            transparent 60%
          ),
          radial-gradient(
            700px 520px at 15% 85%,
            rgba(125, 255, 122, 0.12),
            transparent 55%
          ),
          linear-gradient(180deg, #050713 0%, #070a18 40%, #040513 100%);
      }

      /* Light theme overrides */
      html[data-theme="light"] {
        --bg: #f7f8ff;
        --panel: rgba(0, 0, 0, 0.05);
        --panel2: rgba(0, 0, 0, 0.07);
        --text: rgba(0, 0, 0, 0.88);
        --muted: rgba(0, 0, 0, 0.62);
        --faint: rgba(0, 0, 0, 0.5);
        --line: rgba(0, 0, 0, 0.12);
        --shadow: 0 20px 70px rgba(0, 0, 0, 0.18);
        --surface: rgba(255, 255, 255, 0.72);
        --surface2: rgba(255, 255, 255, 0.62);
        --surfaceInput: rgba(255, 255, 255, 0.75);
        --bg-grad: radial-gradient(
            1200px 600px at 20% 10%,
            rgba(106, 92, 255, 0.14),
            transparent 60%
          ),
          radial-gradient(
            900px 540px at 80% 10%,
            rgba(35, 213, 255, 0.12),
            transparent 55%
          ),
          radial-gradient(
            900px 600px at 55% 70%,
            rgba(255, 79, 216, 0.09),
            transparent 60%
          ),
          radial-gradient(
            700px 520px at 15% 85%,
            rgba(125, 255, 122, 0.08),
            transparent 55%
          ),
          linear-gradient(180deg, #ffffff 0%, #f7f8ff 55%, #ffffff 100%);
      }

      * {
        box-sizing: border-box;
      }
      html,
      body {
        height: 100%;
      }
      body {
        margin: 0;
        font-family: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Helvetica, Arial,
          "Apple Color Emoji", "Segoe UI Emoji";
        color: var(--text);
        background: var(--bg-grad);
        overflow-x: hidden;
      }

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

      /* Ambient “aurora” layer */
      .aurora {
        position: fixed;
        inset: -200px;
        z-index: -2;
        filter: blur(30px);
        opacity: 0.8;
        pointer-events: none;
        background: conic-gradient(
          from 180deg at 50% 50%,
          rgba(106, 92, 255, 0.3),
          rgba(35, 213, 255, 0.25),
          rgba(255, 79, 216, 0.22),
          rgba(125, 255, 122, 0.18),
          rgba(255, 211, 110, 0.18),
          rgba(106, 92, 255, 0.3)
        );
        animation: spin 20s linear infinite;
      }
      @keyframes spin {
        to {
          transform: rotate(360deg);
        }
      }

      /* Layout */
      .container {
        width: min(var(--max), calc(100% - 2 * var(--pad)));
        margin: 0 auto;
      }

      header {
        position: sticky;
        top: 0;
        z-index: 50;
        backdrop-filter: blur(14px);
        background: rgba(7, 10, 24, 0.55);
        border-bottom: 1px solid var(--line);
      }

      /* Theme selector */
      html[data-theme="light"] header {
        background: rgba(255, 255, 255, 0.65);
      }

      .nav {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 16px;
        padding: 14px 0;
      }

      .brand {
        display: flex;
        align-items: center;
        gap: 12px;
        font-weight: 800;
        font-size: 20px;
        letter-spacing: 0.2px;
      }
      .logo {
        font-size: 14px;
        width: 38px;
        height: 38px;
        border-radius: 12px;
        background: radial-gradient(circle at 30% 20%, rgba(255, 255, 255, 0.9), rgba(255, 255, 255, 0.25) 35%, transparent 60%),
          linear-gradient(135deg, rgba(106, 92, 255, 1), rgba(35, 213, 255, 1), rgba(255, 79, 216, 1));
        box-shadow: 0 10px 30px rgba(106, 92, 255, 0.28);
        position: relative;
        overflow: hidden;
      }
      .logo-img {
        width: 56px;
        height: 56px;
        object-fit: contain;
        border-radius: 10px;
      }
      .logo::after {
        content: "";
        position: absolute;
        inset: -30%;
        background: radial-gradient(circle at 30% 40%, rgba(255, 255, 255, 0.35), transparent 55%);
        transform: rotate(15deg);
      }

      .navlinks {
        display: flex;
        align-items: center;
        gap: 18px;
        color: var(--muted);
        font-weight: 600;
        font-size: 14px;
      }
      .navlinks a {
        padding: 10px 10px;
        border-radius: 12px;
        transition: transform 0.15s ease, background 0.15s ease, color 0.15s ease;
      }
      .navlinks a:hover {
        background: rgba(255, 255, 255, 0.06);
        color: var(--text);
        transform: translateY(-1px);
      }

      .navcta {
        display: flex;
        gap: 10px;
        align-items: center;
      }

      /* Theme selector */
      .theme-switch {
        display: inline-flex;
        align-items: center;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.06);
        border-radius: 999px;
        padding: 4px;
        gap: 0px;
      }
      html[data-theme="light"] .theme-switch {
        background: rgba(0, 0, 0, 0.04);
      }
      .theme-switch button {
        width: 38px;
        height: 38px;
        border: 0;
        border-radius: 999px;
        background: transparent;
        color: var(--text);
        cursor: pointer;
        display: grid;
        place-items: center;
        transition: background 0.15s ease, transform 0.15s ease;
      }
      .theme-switch button:hover {
        background: rgba(255, 255, 255, 0.08);
        transform: translateY(-1px);
      }
      html[data-theme="light"] .theme-switch button:hover {
        background: rgba(0, 0, 0, 0.06);
      }
      .theme-switch button[aria-pressed="true"] {
        background: rgba(255, 255, 255, 0.12);
      }
      html[data-theme="light"] .theme-switch button[aria-pressed="true"] {
        background: rgba(0, 0, 0, 0.09);
      }
      .theme-icon {
        width: 18px;
        height: 18px;
        display: block;
      }
      .sr-only {
        position: absolute;
        width: 1px;
        height: 1px;
        padding: 0;
        margin: -1px;
        overflow: hidden;
        clip: rect(0, 0, 0, 0);
        white-space: nowrap;
        border: 0;
      }

      /* Buttons */
      .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;
        gap: 10px;
        padding: 11px 14px;
        border-radius: 14px;
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.06);
        color: var(--text);
        font-weight: 700;
        font-size: 14px;
        transition: transform 0.15s ease, box-shadow 0.15s ease, background 0.15s ease,
          border-color 0.15s ease;
        cursor: pointer;
        user-select: none;
      }
      .btn:hover {
        transform: translateY(-1px);
        background: rgba(255, 255, 255, 0.09);
        box-shadow: 0 16px 50px rgba(0, 0, 0, 0.28);
        border-color: rgba(255, 255, 255, 0.18);
      }
      .btn-primary {
        border: 0;
        background: linear-gradient(135deg, rgba(106, 92, 255, 1), rgba(35, 213, 255, 1), rgba(255, 79, 216, 1));
        box-shadow: 0 18px 60px rgba(106, 92, 255, 0.25);
      }
      .btn-primary:hover {
        box-shadow: 0 22px 80px rgba(35, 213, 255, 0.18), 0 20px 70px rgba(255, 79, 216, 0.12);
      }

      .badge {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 8px 12px;
        border-radius: 999px;
        border: 1px solid rgba(255, 255, 255, 0.14);
        background: rgba(255, 255, 255, 0.06);
        color: var(--muted);
        font-weight: 700;
        font-size: 13px;
      }
      .dot {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        background: linear-gradient(135deg, var(--b), var(--c));
        box-shadow: 0 0 0 4px rgba(35, 213, 255, 0.12);
      }

      /* Hero */
      .hero {
        padding: 58px 0 26px;
      }

      .hero-grid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 26px;
        align-items: start;
      }

      h1 {
        margin: 14px 0 10px;
        font-size: clamp(34px, 4vw, 54px);
        line-height: 1.04;
        letter-spacing: -0.02em;
      }

      .gradtext {
        background: linear-gradient(90deg, rgba(35, 213, 255, 1), rgba(106, 92, 255, 1), rgba(255, 79, 216, 1), rgba(255, 211, 110, 1));
        -webkit-background-clip: text;
        background-clip: text;
        color: transparent;
      }

      .lead {
        margin: 12px 0 18px;
        color: var(--muted);
        font-size: 16px;
        line-height: 1.55;
        max-width: 58ch;
      }

      .hero-actions {
        display: flex;
        flex-wrap: wrap;
        gap: 10px;
        margin-top: 12px;
      }

      .hero-card {
        border-radius: var(--radius2);
        border: 1px solid var(--line);
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
        box-shadow: var(--shadow);
        overflow: hidden;
        position: relative;
      }
      .hero-card::before {
        content: "";
        position: absolute;
        inset: -1px;
        background: radial-gradient(600px 280px at 20% 20%, rgba(35, 213, 255, 0.22), transparent 55%),
          radial-gradient(500px 260px at 70% 30%, rgba(255, 79, 216, 0.18), transparent 55%),
          radial-gradient(420px 260px at 50% 80%, rgba(125, 255, 122, 0.12), transparent 55%);
        pointer-events: none;
      }
      .hero-card-inner {
        position: relative;
        padding: 18px;
      }

      .statgrid {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 12px;
        margin-top: 8px;
      }
      .stat {
        padding: 14px;
        border-radius: 16px;
        background: var(--surface);
        border: 1px solid rgba(255, 255, 255, 0.12);
      }
      html[data-theme="light"] .stat {
        background: rgba(255, 255, 255, 0.72);
        border: 1px solid rgba(0, 0, 0, 0.1);
      }
      .stat strong {
        display: block;
        font-size: 16px;
        letter-spacing: -0.01em;
      }
      .stat span {
        display: block;
        margin-top: 4px;
        color: var(--faint);
        font-weight: 650;
        font-size: 12.5px;
        line-height: 1.3;
      }

      .mini {
        margin-top: 14px;
        padding: 14px;
        border-radius: 18px;
        border: 1px dashed rgba(255, 255, 255, 0.18);
        background: rgba(255, 255, 255, 0.04);
      }
      html[data-theme="light"] .mini {
        border: 1px dashed rgba(0, 0, 0, 0.16);
        background: rgba(255, 255, 255, 0.65);
      }
      .mini p {
        margin: 0;
        color: var(--muted);
        line-height: 1.45;
        font-size: 13.5px;
      }

      /* Sections */
      section {
        padding: 28px 0;
      }

      .section-title {
        display: flex;
        align-items: baseline;
        justify-content: space-between;
        gap: 18px;
        margin-bottom: 14px;
      }
      .section-title h2 {
        margin: 0;
        font-size: 22px;
        letter-spacing: -0.01em;
      }
      .section-title p {
        margin: 0;
        color: var(--muted);
        max-width: 60ch;
        font-size: 14px;
        line-height: 1.55;
      }

      .grid3 {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 14px;
      }
      .grid2 {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 14px;
      }

      .card {
        border-radius: var(--radius2);
        border: 1px solid var(--line);
        background: rgba(255, 255, 255, 0.06);
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.3);
        overflow: hidden;
        position: relative;
      }
      html[data-theme="light"] .card {
        background: rgba(255, 255, 255, 0.78);
        box-shadow: 0 18px 60px rgba(0, 0, 0, 0.12);
      }
      .card .inner {
        padding: 18px;
      }
      .card .topline {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 10px;
        color: var(--muted);
        font-weight: 800;
        font-size: 12px;
        letter-spacing: 0.08em;
        text-transform: uppercase;
      }

      .pill {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 7px 10px;
        border-radius: 999px;
        background: var(--surface);
        border: 1px solid rgba(255, 255, 255, 0.12);
        color: var(--muted);
        font-weight: 750;
        font-size: 12px;
        text-transform: none;
        letter-spacing: 0;
      }
      html[data-theme="light"] .pill {
        background: rgba(255, 255, 255, 0.7);
        border: 1px solid rgba(0, 0, 0, 0.12);
      }
      .pill i {
        width: 10px;
        height: 10px;
        border-radius: 999px;
        display: inline-block;
        background: linear-gradient(135deg, var(--b), var(--c));
      }

      .card h3 {
        margin: 12px 0 8px;
        font-size: 18px;
        letter-spacing: -0.01em;
      }
      .card p {
        margin: 0 0 14px;
        color: var(--muted);
        font-size: 14px;
        line-height: 1.55;
      }

      .list {
        display: grid;
        gap: 10px;
        margin: 0;
        padding: 0;
        list-style: none;
      }
      .li {
        display: flex;
        gap: 10px;
        align-items: flex-start;
        padding: 10px 12px;
        border-radius: 16px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: var(--surface2);
      }
      html[data-theme="light"] .li {
        border: 1px solid rgba(0, 0, 0, 0.1);
        background: rgba(255, 255, 255, 0.72);
      }
      .check {
        width: 18px;
        height: 18px;
        border-radius: 6px;
        flex: 0 0 auto;
        background: linear-gradient(135deg, var(--d), var(--b));
        box-shadow: 0 10px 30px rgba(35, 213, 255, 0.15);
        position: relative;
        margin-top: 1px;
      }
      .check::after {
        content: "";
        position: absolute;
        left: 5px;
        top: 4px;
        width: 7px;
        height: 4px;
        border-left: 2px solid rgba(0, 0, 0, 0.5);
        border-bottom: 2px solid rgba(0, 0, 0, 0.5);
        transform: rotate(-45deg);
        opacity: 0.55;
      }
      .li strong {
        display: block;
        font-size: 13.5px;
      }
      .li span {
        display: block;
        color: var(--faint);
        font-size: 12.5px;
        margin-top: 2px;
        line-height: 1.35;
        font-weight: 650;
      }

      .solution {
        background: linear-gradient(180deg, rgba(255, 255, 255, 0.07), rgba(255, 255, 255, 0.03));
      }
      .solution::before {
        content: "";
        position: absolute;
        inset: -1px;
        pointer-events: none;
        opacity: 0.9;
      }
      .solution.s1::before {
        background: radial-gradient(520px 280px at 20% 10%, rgba(106, 92, 255, 0.28), transparent 60%),
          radial-gradient(520px 280px at 85% 25%, rgba(35, 213, 255, 0.22), transparent 55%);
      }
      .solution.s2::before {
        background: radial-gradient(520px 280px at 15% 15%, rgba(125, 255, 122, 0.18), transparent 58%),
          radial-gradient(520px 280px at 85% 35%, rgba(35, 213, 255, 0.2), transparent 58%);
      }
      .solution.s3::before {
        background: radial-gradient(520px 280px at 20% 10%, rgba(255, 79, 216, 0.22), transparent 58%),
          radial-gradient(520px 280px at 85% 30%, rgba(255, 211, 110, 0.16), transparent 55%);
      }

      .ctaRow {
        display: flex;
        gap: 10px;
        flex-wrap: wrap;
        margin-top: 10px;
      }

      /* Footer */
      footer {
        padding: 26px 0 40px;
        border-top: 1px solid var(--line);
        color: var(--muted);
      }
      .footgrid {
        display: grid;
        grid-template-columns: 1.2fr 0.8fr;
        gap: 18px;
        align-items: start;
      }
      .fine {
        font-size: 12.5px;
        color: var(--faint);
        line-height: 1.5;
      }
      .footlinks {
        display: grid;
        grid-template-columns: 1fr 1fr;
        gap: 10px 14px;
        font-weight: 650;
        font-size: 13px;
      }
      .footlinks a {
        padding: 8px 10px;
        border-radius: 12px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        background: rgba(255, 255, 255, 0.04);
      }
      .footlinks a:hover {
        background: rgba(255, 255, 255, 0.07);
      }

      /* Responsive */
      @media (max-width: 980px) {
        .hero-grid {
          grid-template-columns: 1fr;
        }
        .grid3 {
          grid-template-columns: 1fr;
        }
        .grid2 {
          grid-template-columns: 1fr;
        }
        .navlinks {
          display: none;
        }
      }
    
/* Language selector */
.lang-select {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1px solid var(--line);
  background: rgba(255, 255, 255, 0.06);
  border-radius: 999px;
  padding: 6px 12px;
  height: 46px;
}
html[data-theme="light"] .lang-select { background: rgba(0,0,0,0.04); }
.lang-select label { font-weight: 800; font-size: 12px; color: var(--muted); }
.lang-select select {
  border: 0;
  outline: none;
  background: transparent;
  color: var(--text);
  font-weight: 750;
  font-size: 13px;
  cursor: pointer;
}
.lang-select option { color: #111; }

/* Subpage hero */
.page-hero { padding: 48px 0 22px; }
.breadcrumb { color: var(--muted); font-weight: 750; font-size: 13px; }
.kicker { margin-top: 10px; color: var(--muted); font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; font-size: 12px; }


/* Brand mark (no external image needed) */
.logoMark{
  display:inline-block;
  width:34px;height:34px;border-radius:10px;
  background: radial-gradient(circle at 30% 30%, rgba(255,255,255,0.9), rgba(255,255,255,0) 55%),
              linear-gradient(135deg, var(--accent2), var(--accent), var(--accent3));
  box-shadow: 0 10px 30px rgba(0,0,0,0.25);
  border: 1px solid rgba(255,255,255,0.18);
}
html[data-theme="light"] .logoMark{
  box-shadow: 0 10px 26px rgba(0,0,0,0.12);
  border-color: rgba(0,0,0,0.08);
}


/* Use the actual logo image when .logoMark is an <img>. */
img.logoMark{
  height: 34px;
  width: auto;
  border-radius: 10px;
  box-shadow: 0 8px 22px rgba(0,0,0,.18);
}


@media (max-width: 430px) {
  .navcta {
    flex-wrap: wrap;
  }

  /* Force CTA buttons onto second line */
  .navcta .btn {
    flex: 1 1 100%;
    text-align: center;
  }
}