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

    :root {
      --bg:        #080c12;
      --bg2:       #0d1219;
      --surface:   #111820;
      --border:    rgba(255,255,255,0.07);
      --accent:    #00c9ff;
      --accent2:   #0077ff;
      --text:      #e8edf4;
      --muted:     #5e6e84;
      --glow:      0 0 60px rgba(0,201,255,0.15);
    }

    html { scroll-behavior: smooth; }

    body {
      background: var(--bg);
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 16px;
      line-height: 1.6;
      overflow-x: hidden;
      cursor: none;
    }

    /* Custom cursor */
    #cursor {
      position: fixed; top: 0; left: 0; z-index: 9999;
      width: 12px; height: 12px;
      background: var(--accent);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: width 0.2s, height 0.2s, background 0.2s;
      mix-blend-mode: screen;
    }
    #cursor-ring {
      position: fixed; top: 0; left: 0; z-index: 9998;
      width: 36px; height: 36px;
      border: 1px solid rgba(0,201,255,0.4);
      border-radius: 50%;
      pointer-events: none;
      transform: translate(-50%, -50%);
      transition: transform 0.12s ease, width 0.3s, height 0.3s;
    }
    body:has(a:hover, button:hover) #cursor { width: 18px; height: 18px; }
    body:has(a:hover, button:hover) #cursor-ring { width: 50px; height: 50px; }

    /* Noise overlay */
    body::before {
      content: '';
      position: fixed; inset: 0; z-index: 0;
      background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
      pointer-events: none;
      opacity: 0.4;
    }

    /* Grid background */
    .grid-bg {
      position: fixed; inset: 0; z-index: 0; pointer-events: none;
      background-image:
        linear-gradient(rgba(0,201,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,201,255,0.03) 1px, transparent 1px);
      background-size: 60px 60px;
      mask-image: radial-gradient(ellipse 80% 60% at 50% 0%, black 40%, transparent 100%);
    }

    /* Glow orbs */
    .orb {
      position: fixed; border-radius: 50%; pointer-events: none; z-index: 0;
      filter: blur(80px);
    }
    .orb-1 { width: 500px; height: 500px; background: rgba(0,119,255,0.08); top: -150px; left: -100px; }
    .orb-2 { width: 400px; height: 400px; background: rgba(0,201,255,0.06); top: 40%; right: -100px; }
    .orb-3 { width: 600px; height: 300px; background: rgba(0,60,150,0.07); bottom: 10%; left: 20%; }

    /* Nav */
    nav {
      position: fixed; top: 0; left: 0; right: 0; z-index: 100;
      display: flex; align-items: center; justify-content: space-between;
      padding: 22px 60px;
      border-bottom: 1px solid transparent;
      transition: background 0.4s, border-color 0.4s, backdrop-filter 0.4s;
    }
    nav.scrolled {
      background: rgba(8,12,18,0.85);
      border-color: var(--border);
      backdrop-filter: blur(16px);
    }
    .logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800;
      font-size: 1.35rem;
      letter-spacing: -0.02em;
      color: var(--text);
      text-decoration: none;
      display: flex; align-items: center; gap: 10px;
    }
    .logo-img {
      height: 32px;
      width: auto;
      display: block;
    }
    .logo-dot {
      width: 8px; height: 8px; border-radius: 50%;
      background: var(--accent);
      box-shadow: 0 0 12px var(--accent);
      animation: pulse 2s ease-in-out infinite;
    }
    @keyframes pulse {
      0%, 100% { box-shadow: 0 0 8px var(--accent); }
      50% { box-shadow: 0 0 20px var(--accent), 0 0 40px rgba(0,201,255,0.3); }
    }
    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a {
      font-size: 0.875rem; font-weight: 500; letter-spacing: 0.02em;
      color: var(--muted); text-decoration: none;
      transition: color 0.2s;
    }
    .nav-links a:hover { color: var(--text); }
    .nav-cta {
      font-size: 0.85rem; font-weight: 500;
      padding: 9px 22px;
      border: 1px solid rgba(0,201,255,0.35);
      border-radius: 6px;
      color: var(--accent) !important;
      transition: background 0.2s, border-color 0.2s, box-shadow 0.2s !important;
    }
    .nav-cta:hover {
      background: rgba(0,201,255,0.08) !important;
      border-color: var(--accent) !important;
      box-shadow: 0 0 20px rgba(0,201,255,0.15) !important;
    }

    /* Language Switcher */
    .lang-switcher {
      display: flex;
      align-items: center;
    }
    .lang-btn {
      display: flex;
      align-items: center;
      gap: 6px;
      background: rgba(255, 255, 255, 0.03);
      border: 1px solid var(--border);
      border-radius: 6px;
      padding: 8px 14px;
      font-size: 0.8rem;
      font-weight: 600;
      letter-spacing: 0.05em;
      cursor: pointer;
      transition: all 0.2s ease;
      font-family: 'Syne', sans-serif;
    }
    .lang-btn:hover {
      background: rgba(0,201,255,0.08);
      border-color: rgba(0,201,255,0.4);
      box-shadow: 0 0 15px rgba(0,201,255,0.1);
    }
    .lang-active {
      color: var(--accent);
    }
    .lang-separator {
      color: var(--border);
      font-weight: 400;
    }
    .lang-inactive {
      color: var(--muted);
    }

    /* Hero */
    #hero {
      position: relative; z-index: 1;
      min-height: 100vh;
      display: flex; flex-direction: column;
      justify-content: center; align-items: center;
      text-align: center;
      padding: 120px 24px 80px;
    }
    .hero-badge {
      display: inline-flex; align-items: center; gap: 8px;
      padding: 6px 16px;
      border: 1px solid var(--border);
      border-radius: 100px;
      background: rgba(255,255,255,0.03);
      font-size: 0.78rem;
      letter-spacing: 0.08em;
      text-transform: uppercase;
      color: var(--muted);
      margin-bottom: 36px;
      opacity: 0; animation: fadeUp 0.8s 0.1s forwards;
    }
    .hero-badge span { color: var(--accent); }
    h1 {
      font-family: 'Syne', sans-serif;
      font-size: clamp(2.8rem, 7vw, 5.5rem);
      font-weight: 800;
      line-height: 1.05;
      letter-spacing: -0.03em;
      max-width: 880px;
      opacity: 0; animation: fadeUp 0.9s 0.25s forwards;
    }
    h1 em {
      font-style: normal;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .hero-sub {
      margin-top: 24px;
      max-width: 500px;
      font-size: 1.05rem;
      font-weight: 300;
      color: var(--muted);
      line-height: 1.7;
      opacity: 0; animation: fadeUp 0.9s 0.4s forwards;
    }
    .hero-actions {
      margin-top: 44px;
      display: flex; gap: 14px; flex-wrap: wrap; justify-content: center;
      opacity: 0; animation: fadeUp 0.9s 0.55s forwards;
    }
    .btn-primary {
      padding: 14px 32px;
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      border: none; border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; font-weight: 500;
      color: #fff;
      text-decoration: none;
      cursor: none;
      transition: opacity 0.2s, transform 0.2s, box-shadow 0.2s;
      box-shadow: 0 8px 32px rgba(0,119,255,0.3);
    }
    .btn-primary:hover { opacity: 0.9; transform: translateY(-2px); box-shadow: 0 12px 40px rgba(0,119,255,0.4); }
    .btn-ghost {
      padding: 14px 32px;
      background: transparent;
      border: 1px solid var(--border);
      border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; font-weight: 500;
      color: var(--muted);
      text-decoration: none;
      cursor: none;
      transition: border-color 0.2s, color 0.2s;
    }
    .btn-ghost:hover { border-color: rgba(255,255,255,0.2); color: var(--text); }

    .scroll-indicator {
      position: absolute; bottom: 40px; left: 50%;
      transform: translateX(-50%);
      display: flex; flex-direction: column; align-items: center; gap: 8px;
      opacity: 0; animation: fadeUp 1s 1s forwards;
    }
    .scroll-indicator span {
      font-size: 0.72rem; letter-spacing: 0.1em;
      text-transform: uppercase; color: var(--muted);
    }
    .scroll-line {
      width: 1px; height: 40px;
      background: linear-gradient(var(--accent), transparent);
      animation: scrollLine 1.5s ease-in-out infinite;
    }
    @keyframes scrollLine {
      0% { transform: scaleY(0); transform-origin: top; }
      50% { transform: scaleY(1); transform-origin: top; }
      50.001% { transform-origin: bottom; }
      100% { transform: scaleY(0); transform-origin: bottom; }
    }

    /* Sections */
    section { position: relative; z-index: 1; }

    .container { max-width: 1100px; margin: 0 auto; padding: 0 40px; }

    /* About */
    #about {
      padding: 120px 0;
      border-top: 1px solid var(--border);
    }
    .section-label {
      display: flex; align-items: center; gap: 12px;
      font-size: 0.75rem; letter-spacing: 0.14em;
      text-transform: uppercase; color: var(--accent);
      margin-bottom: 20px; font-weight: 500;
    }
    .section-label::after {
      content: ''; flex: 1; max-width: 48px;
      height: 1px; background: var(--accent); opacity: 0.4;
    }
    .about-grid {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: center;
    }
    .about-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; line-height: 1.15; letter-spacing: -0.02em;
    }
    .about-text {
      margin-top: 20px;
      color: var(--muted); line-height: 1.8;
      font-size: 0.95rem; font-weight: 300;
    }
    .about-text + .about-text { margin-top: 14px; }
    .about-stats {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 1px; background: var(--border); border: 1px solid var(--border);
      border-radius: 16px; overflow: hidden;
    }
    .stat {
      padding: 32px; background: var(--surface);
      display: flex; flex-direction: column; gap: 6px;
    }
    .stat-num {
      font-family: 'Syne', sans-serif;
      font-size: 2.4rem; font-weight: 800;
      background: linear-gradient(135deg, var(--accent), var(--accent2));
      -webkit-background-clip: text; -webkit-text-fill-color: transparent;
      background-clip: text;
    }
    .stat-label { font-size: 0.82rem; color: var(--muted); font-weight: 400; }

    /* Products */
    #products { padding: 120px 0; border-top: 1px solid var(--border); }
    .products-header { max-width: 560px; margin-bottom: 60px; }
    .products-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; letter-spacing: -0.02em; line-height: 1.15;
    }
    .products-sub { margin-top: 14px; color: var(--muted); font-weight: 300; font-size: 0.95rem; line-height: 1.7; }

    .products-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); gap: 24px; }

    .product-card {
      position: relative; overflow: hidden;
      padding: 36px;
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 16px;
      text-decoration: none;
      display: flex; flex-direction: column; gap: 20px;
      transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
      cursor: none;
    }
    .product-card::before {
      content: '';
      position: absolute; inset: 0;
      background: linear-gradient(135deg, rgba(0,201,255,0.04), transparent);
      opacity: 0; transition: opacity 0.3s;
    }
    .product-card:hover { border-color: rgba(0,201,255,0.3); transform: translateY(-4px); box-shadow: var(--glow); }
    .product-card:hover::before { opacity: 1; }

    .product-icon {
      width: 52px; height: 52px; border-radius: 12px;
      background: linear-gradient(135deg, rgba(0,119,255,0.2), rgba(0,201,255,0.1));
      border: 1px solid rgba(0,201,255,0.2);
      display: flex; align-items: center; justify-content: center;
      font-size: 1.4rem;
    }
    .product-name {
      font-family: 'Syne', sans-serif;
      font-size: 1.2rem; font-weight: 700;
      letter-spacing: -0.01em; color: var(--text);
    }
    .product-desc { font-size: 0.88rem; color: var(--muted); line-height: 1.7; font-weight: 300; flex: 1; }
    .product-tags { display: flex; gap: 8px; flex-wrap: wrap; }
    .tag {
      padding: 4px 12px;
      background: rgba(0,201,255,0.06);
      border: 1px solid rgba(0,201,255,0.15);
      border-radius: 100px;
      font-size: 0.72rem; letter-spacing: 0.05em;
      color: rgba(0,201,255,0.7); font-weight: 500;
    }
    .product-link {
      display: flex; align-items: center; gap: 8px;
      font-size: 0.82rem; font-weight: 500;
      color: var(--accent); opacity: 0.8;
      transition: opacity 0.2s, gap 0.2s;
    }
    .product-card:hover .product-link { opacity: 1; gap: 12px; }
    .product-link svg { transition: transform 0.2s; }
    .product-card:hover .product-link svg { transform: translateX(3px); }

    /* Coming Soon card */
    .product-card.soon {
      opacity: 0.4; cursor: not-allowed;
    }
    .product-card.soon:hover { transform: none; box-shadow: none; border-color: var(--border); }

    /* Values */
    #values { padding: 120px 0; border-top: 1px solid var(--border); }
    .values-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 3.5vw, 2.8rem);
      font-weight: 700; letter-spacing: -0.02em;
      margin-bottom: 60px;
    }
    .values-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; background: var(--border); border: 1px solid var(--border); border-radius: 16px; overflow: hidden; }
    .value {
      padding: 40px 36px;
      background: var(--bg2);
      transition: background 0.3s;
    }
    .value:hover { background: var(--surface); }
    .value-num {
      font-family: 'Syne', sans-serif;
      font-size: 0.75rem; font-weight: 700;
      letter-spacing: 0.1em; color: var(--accent);
      margin-bottom: 24px; opacity: 0.6;
    }
    .value-title {
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem; font-weight: 700;
      margin-bottom: 12px; letter-spacing: -0.01em;
    }
    .value-text { font-size: 0.88rem; color: var(--muted); line-height: 1.75; font-weight: 300; }

    /* Contact */
    #contact { padding: 120px 0; border-top: 1px solid var(--border); }
    .contact-inner {
      display: grid; grid-template-columns: 1fr 1fr;
      gap: 80px; align-items: start;
    }
    .contact-title {
      font-family: 'Syne', sans-serif;
      font-size: clamp(1.8rem, 3vw, 2.4rem);
      font-weight: 700; letter-spacing: -0.02em; line-height: 1.2;
    }
    .contact-sub { margin-top: 16px; color: var(--muted); font-weight: 300; line-height: 1.75; font-size: 0.95rem; }
    .contact-email {
      margin-top: 36px;
      display: inline-flex; align-items: center; gap: 12px;
      font-family: 'Syne', sans-serif;
      font-size: 1.1rem; font-weight: 600;
      color: var(--accent); text-decoration: none;
      border-bottom: 1px solid rgba(0,201,255,0.3);
      padding-bottom: 4px;
      transition: border-color 0.2s;
    }
    .contact-email:hover { border-color: var(--accent); }
    .contact-form { display: flex; flex-direction: column; gap: 16px; }
    .form-group { display: flex; flex-direction: column; gap: 8px; }
    .form-group label { font-size: 0.78rem; letter-spacing: 0.06em; text-transform: uppercase; color: var(--muted); font-weight: 500; }
    .form-group input, .form-group textarea {
      background: var(--surface);
      border: 1px solid var(--border);
      border-radius: 8px;
      padding: 12px 16px;
      color: var(--text);
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem;
      outline: none;
      transition: border-color 0.2s, box-shadow 0.2s;
      resize: none;
    }
    .form-group input:focus, .form-group textarea:focus {
      border-color: rgba(0,201,255,0.4);
      box-shadow: 0 0 0 3px rgba(0,201,255,0.06);
    }
    .form-group textarea { min-height: 120px; }
    .form-submit {
      padding: 14px;
      background: linear-gradient(135deg, var(--accent2), var(--accent));
      border: none; border-radius: 8px;
      font-family: 'DM Sans', sans-serif;
      font-size: 0.9rem; font-weight: 500;
      color: #fff; cursor: none;
      transition: opacity 0.2s, transform 0.2s;
    }
    .form-submit:hover { opacity: 0.9; transform: translateY(-1px); }

    /* Footer */
    footer {
      position: relative; z-index: 1;
      border-top: 1px solid var(--border);
      padding: 36px 60px;
      display: flex; align-items: center; justify-content: space-between;
    }
    .footer-logo {
      font-family: 'Syne', sans-serif;
      font-weight: 800; font-size: 1rem;
      color: var(--text); text-decoration: none; letter-spacing: -0.02em;
      display: flex; align-items: center; gap: 8px;
    }
    .footer-logo-img {
      height: 28px;
      width: auto;
      display: block;
    }
    .footer-logo .logo-dot { width: 6px; height: 6px; }
    .footer-copy { font-size: 0.8rem; color: var(--muted); }
    .footer-links { display: flex; gap: 24px; list-style: none; }
    .footer-links a { font-size: 0.82rem; color: var(--muted); text-decoration: none; transition: color 0.2s; }
    .footer-links a:hover { color: var(--text); }

    /* Animations */
    @keyframes fadeUp {
      from { opacity: 0; transform: translateY(24px); }
      to   { opacity: 1; transform: translateY(0); }
    }
    .reveal {
      opacity: 0; transform: translateY(30px);
      transition: opacity 0.7s ease, transform 0.7s ease;
    }
    .reveal.visible { opacity: 1; transform: translateY(0); }

    /* Responsive */
    @media (max-width: 768px) {
      nav { padding: 18px 24px; }
      .logo-img { height: 26px; }
      .footer-logo-img { height: 24px; }
      .nav-links { gap: 16px; }
      .nav-links li:not(.lang-switcher) { display: none; }
      .lang-btn { padding: 6px 12px; font-size: 0.75rem; }
      .about-grid { grid-template-columns: 1fr; gap: 40px; }
      .values-grid { grid-template-columns: 1fr; }
      .contact-inner { grid-template-columns: 1fr; gap: 40px; }
      footer { flex-direction: column; gap: 20px; text-align: center; padding: 36px 24px; }
      .footer-links { display: none; }
      .container { padding: 0 24px; }
    }