
    :root {
      color-scheme: dark;
      --bg: #090d15;
      --bg-card: #111724;
      --bg-card-hover: #162032;
      --border: rgba(255, 255, 255, 0.08);
      --border-accent: rgba(16, 185, 129, 0.35);
      --accent: #10b981;
      --accent-glow: rgba(16, 185, 129, 0.18);
      --accent-hover: #34d399;
      --text: #f9fafb;
      --text-muted: #9ca3af;
      --text-dim: #6b7280;
      --radius: 20px;
      --radius-sm: 12px;
      --font: system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, sans-serif;
    }

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

    html {
      scroll-behavior: smooth;
      scroll-padding-top: 84px;
      background: var(--bg);
      color: var(--text);
      font-family: var(--font);
      line-height: 1.6;
    }

    body {
      background: radial-gradient(circle at 50% 0%, rgba(16, 185, 129, 0.07) 0%, transparent 60%),
                  radial-gradient(circle at 85% 35%, rgba(59, 130, 246, 0.04) 0%, transparent 50%),
                  var(--bg);
      min-height: 100vh;
      overflow-x: hidden;
    }

    /* Accessibility / TV focus indicator */
    :focus-visible {
      outline: 3px solid var(--accent);
      outline-offset: 4px;
    }

    .wrap {
      max-width: 1180px;
      margin: 0 auto;
      padding: 0 24px;
    }

    /* 1. Navigacija */
    .nav {
      position: sticky;
      top: 0;
      z-index: 100;
      backdrop-filter: blur(20px);
      -webkit-backdrop-filter: blur(20px);
      background: rgba(9, 13, 21, 0.88);
      border-bottom: 1px solid var(--border);
      padding: 16px 0;
    }
    .nav-inner {
      display: flex;
      align-items: center;
      justify-content: space-between;
      gap: 16px;
    }
    .brand {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      text-decoration: none;
      color: var(--text);
    }
    .brand img, .brand svg {
      width: 34px;
      height: 34px;
      border-radius: 8px;
      flex-shrink: 0;
    }
    .brand-text {
      display: flex;
      flex-direction: column;
      line-height: 1.15;
    }
    .brand-name {
      font-size: 16px;
      font-weight: 850;
      letter-spacing: 0.8px;
      color: var(--text);
    }
    .brand-sub {
      font-size: 10px;
      font-weight: 600;
      color: var(--accent);
      letter-spacing: 0.4px;
    }
    .nav-center {
      display: flex;
      align-items: center;
      gap: 22px;
      font-size: 14px;
      font-weight: 600;
    }
    .nav-center a {
      color: var(--text-muted);
      text-decoration: none;
      transition: color 0.2s;
    }
    .nav-center a:hover {
      color: var(--text);
    }
    .nav-right {
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .lang-toggle {
      background: rgba(255, 255, 255, 0.06);
      border: 1px solid var(--border);
      color: var(--text);
      padding: 6px 12px;
      border-radius: 8px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: all 0.2s;
    }
    .lang-toggle:hover {
      border-color: var(--accent);
      background: rgba(16, 185, 129, 0.1);
    }
    .nav-cta {
      background: var(--accent);
      color: #04100b !important;
      font-weight: 750 !important;
      padding: 8px 16px;
      border-radius: 9px;
      text-decoration: none;
      font-size: 13px;
      display: inline-flex;
      align-items: center;
      gap: 6px;
      white-space: nowrap;
      transition: all 0.2s;
    }
    .nav-cta:hover {
      background: var(--accent-hover);
      transform: translateY(-1px);
    }
    .mobile-menu-btn {
      display: none;
      background: transparent;
      border: 1px solid var(--border);
      color: var(--text);
      padding: 8px 12px;
      border-radius: 8px;
      font-size: 18px;
      cursor: pointer;
    }

    /* 2. Prvi zaslon (Hero) */
    .hero {
      padding: 70px 0 40px;
      text-align: center;
      max-width: 860px;
      margin: 0 auto;
    }
    .badge-pill {
      display: inline-flex;
      align-items: center;
      gap: 8px;
      background: rgba(16, 185, 129, 0.1);
      border: 1px solid var(--border-accent);
      color: var(--accent);
      padding: 6px 16px;
      border-radius: 30px;
      font-size: 13px;
      font-weight: 650;
      margin-bottom: 24px;
      text-transform: uppercase;
      letter-spacing: 0.5px;
    }
    .dot {
      width: 8px;
      height: 8px;
      background: var(--accent);
      border-radius: 50%;
      box-shadow: 0 0 10px var(--accent);
    }
    h1 {
      font-size: clamp(38px, 6vw, 68px);
      line-height: 1.08;
      font-weight: 850;
      letter-spacing: -2px;
      margin-bottom: 22px;
    }
    h1 span {
      color: var(--accent);
      display: inline-block;
    }
    .lead {
      font-size: clamp(17px, 2.2vw, 21px);
      color: var(--text-muted);
      max-width: 700px;
      margin: 0 auto 34px;
      line-height: 1.55;
    }
    .hero-actions {
      display: flex;
      justify-content: center;
      gap: 14px;
      flex-wrap: wrap;
      margin-bottom: 20px;
    }
    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      gap: 10px;
      padding: 14px 28px;
      border-radius: 12px;
      font-size: 16px;
      font-weight: 700;
      text-decoration: none;
      cursor: pointer;
      border: none;
      min-height: 50px;
      transition: all 0.2s;
    }
    .btn-primary {
      background: var(--accent);
      color: #04100b;
      box-shadow: 0 4px 20px rgba(16, 185, 129, 0.3);
    }
    .btn-primary:hover {
      background: var(--accent-hover);
      transform: translateY(-2px);
    }
    .btn-secondary {
      background: var(--bg-card);
      border: 1px solid var(--border);
      color: var(--text);
    }
    .btn-secondary:hover {
      background: var(--bg-card-hover);
      border-color: rgba(255, 255, 255, 0.2);
    }
    .hero-sub {
      font-size: 13px;
      color: var(--text-dim);
    }

    /* Interaktivni 15-sekundni demo simulator scene */
    .demo-container {
      margin: 44px auto 0;
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
      text-align: left;
    }
    .demo-header {
      display: flex;
      justify-content: space-between;
      align-items: center;
      border-bottom: 1px solid var(--border);
      padding-bottom: 16px;
      margin-bottom: 22px;
      flex-wrap: wrap;
      gap: 12px;
    }
    .demo-title {
      font-size: 16px;
      font-weight: 750;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .demo-pill {
      font-size: 12px;
      padding: 4px 10px;
      border-radius: 8px;
      background: rgba(16, 185, 129, 0.1);
      color: var(--accent);
      font-weight: 700;
    }
    .demo-steps {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-bottom: 24px;
    }
    .demo-step {
      background: #0b1019;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 16px;
      transition: all 0.3s ease;
      opacity: 0.45;
    }
    .demo-step.active {
      opacity: 1;
      border-color: var(--accent);
      box-shadow: 0 0 16px var(--accent-glow);
    }
    .demo-step.done {
      opacity: 1;
      border-color: rgba(16, 185, 129, 0.4);
    }
    .demo-step-num {
      font-size: 11px;
      font-weight: 800;
      color: var(--accent);
      margin-bottom: 6px;
      text-transform: uppercase;
    }
    .demo-step-title {
      font-size: 14px;
      font-weight: 700;
      color: var(--text);
      margin-bottom: 4px;
    }
    .demo-step-desc {
      font-size: 12px;
      color: var(--text-dim);
    }
    .demo-preview-bar {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #080c14;
      border-radius: 12px;
      padding: 12px 18px;
      border: 1px solid var(--border);
      font-family: monospace;
      font-size: 13px;
      flex-wrap: wrap;
      gap: 8px;
    }
    .demo-log {
      color: var(--accent);
    }

    /* 3. Sekcije */
    .section {
      padding: 84px 0;
      border-top: 1px solid var(--border);
    }
    .section-head {
      text-align: center;
      max-width: 680px;
      margin: 0 auto 52px;
    }
    .eyebrow {
      font-size: 12px;
      font-weight: 800;
      letter-spacing: 1.5px;
      text-transform: uppercase;
      color: var(--accent);
      margin-bottom: 12px;
    }
    h2 {
      font-size: clamp(28px, 4vw, 42px);
      line-height: 1.15;
      font-weight: 850;
      letter-spacing: -1px;
      margin-bottom: 16px;
    }
    .section-desc {
      color: var(--text-muted);
      font-size: 16px;
    }

    /* 4 kartice funkcij */
    .grid-4 {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 20px;
    }
    .feature-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px 22px;
      transition: all 0.25s;
    }
    .feature-card:hover {
      border-color: rgba(255, 255, 255, 0.2);
      transform: translateY(-3px);
    }
    .feature-icon {
      font-size: 32px;
      margin-bottom: 18px;
      display: inline-block;
    }
    .feature-card h3 {
      font-size: 18px;
      font-weight: 750;
      margin-bottom: 10px;
      color: var(--text);
    }
    .feature-card p {
      font-size: 14px;
      color: var(--text-muted);
      line-height: 1.55;
    }

    /* 3 koraki */
    .steps-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
    }
    .step-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 34px 26px;
    }
    .step-badge {
      width: 44px;
      height: 44px;
      background: var(--accent-glow);
      border: 1px solid var(--accent);
      color: var(--accent);
      border-radius: 12px;
      display: grid;
      place-items: center;
      font-size: 18px;
      font-weight: 800;
      margin-bottom: 22px;
    }
    .step-card h3 {
      font-size: 20px;
      font-weight: 750;
      margin-bottom: 12px;
    }
    .step-card p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* Namestitveni center */
    .install-box {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 36px;
      margin-top: 20px;
    }
    .platform-selector {
      display: flex;
      gap: 12px;
      margin-bottom: 30px;
      flex-wrap: wrap;
    }
    .platform-btn {
      background: #0b1019;
      border: 1px solid var(--border);
      color: var(--text-muted);
      padding: 12px 20px;
      border-radius: 12px;
      font-size: 15px;
      font-weight: 700;
      cursor: pointer;
      display: flex;
      align-items: center;
      gap: 10px;
      transition: all 0.2s;
    }
    .platform-btn:hover {
      border-color: rgba(255, 255, 255, 0.2);
      color: var(--text);
    }
    .platform-btn.active {
      background: var(--accent);
      color: #04100b;
      border-color: var(--accent);
    }
    .platform-panel {
      display: none;
    }
    .platform-panel.active {
      display: block;
    }
    .release-meta {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 16px;
      background: #080c14;
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 18px 20px;
      margin: 22px 0;
      font-size: 13px;
    }
    .meta-item dt {
      color: var(--text-dim);
      font-size: 11px;
      text-transform: uppercase;
      margin-bottom: 4px;
    }
    .meta-item dd {
      color: var(--text);
      font-weight: 600;
      font-family: monospace;
      word-break: break-all;
    }
    .code-row {
      display: flex;
      align-items: center;
      justify-content: space-between;
      background: #070a10;
      border: 1px solid var(--border);
      border-radius: 10px;
      padding: 14px 18px;
      font-family: monospace;
      font-size: 13px;
      color: #34d399;
      margin: 14px 0;
      gap: 12px;
      overflow-x: auto;
    }
    .btn-copy {
      background: rgba(255, 255, 255, 0.08);
      border: none;
      color: var(--text);
      padding: 6px 12px;
      border-radius: 6px;
      font-size: 12px;
      font-weight: 700;
      cursor: pointer;
      white-space: nowrap;
    }
    .btn-copy:hover {
      background: rgba(255, 255, 255, 0.16);
    }

    /* Čarovnik za namestitev */
    .wizard-card {
      background: #0b1019;
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 28px;
      margin-top: 32px;
    }
    .wizard-steps {
      display: flex;
      justify-content: space-between;
      margin-bottom: 24px;
      gap: 8px;
    }
    .wizard-step-node {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 8px;
      font-size: 12px;
      font-weight: 700;
      color: var(--text-dim);
      cursor: pointer;
      flex: 1;
      text-align: center;
    }
    .wizard-step-node.active {
      color: var(--accent);
    }
    .wizard-step-circle {
      width: 32px;
      height: 32px;
      border-radius: 50%;
      background: #141a27;
      border: 1px solid var(--border);
      display: grid;
      place-items: center;
      font-size: 13px;
      font-weight: 800;
    }
    .wizard-step-node.active .wizard-step-circle {
      background: var(--accent);
      color: #04100b;
    }
    .wizard-content {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: 14px;
      padding: 24px;
      text-align: center;
    }
    .pin-display {
      font-size: 34px;
      letter-spacing: 8px;
      font-weight: 850;
      font-family: monospace;
      color: var(--accent);
      margin: 16px 0;
      background: #070a10;
      display: inline-block;
      padding: 10px 24px;
      border-radius: 12px;
      border: 1px solid var(--border-accent);
    }

    /* Varnostne kartice */
    .security-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 20px;
    }
    .sec-card {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius);
      padding: 30px;
    }
    .sec-card h3 {
      font-size: 18px;
      font-weight: 750;
      margin-bottom: 12px;
      display: flex;
      align-items: center;
      gap: 10px;
    }
    .sec-card p {
      font-size: 15px;
      color: var(--text-muted);
      line-height: 1.6;
    }

    /* FAQ */
    details {
      background: var(--bg-card);
      border: 1px solid var(--border);
      border-radius: var(--radius-sm);
      margin-bottom: 12px;
      overflow: hidden;
    }
    summary {
      padding: 18px 22px;
      font-weight: 700;
      font-size: 16px;
      cursor: pointer;
      user-select: none;
    }
    details p {
      padding: 0 22px 18px;
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.6;
    }

    /* Footer */
    footer {
      border-top: 1px solid var(--border);
      padding: 44px 0;
      color: var(--text-dim);
      font-size: 14px;
      margin-top: 50px;
    }
    .footer-inner {
      display: flex;
      justify-content: space-between;
      align-items: center;
      flex-wrap: wrap;
      gap: 20px;
      margin-bottom: 20px;
    }
    .footer-links {
      display: flex;
      gap: 22px;
      flex-wrap: wrap;
    }
    .footer-links a {
      color: var(--text-muted);
      text-decoration: none;
    }
    .footer-links a:hover {
      color: var(--text);
    }

    /* ==========================================================================
       Safeer Ekosistem Section
       ========================================================================== */
    .ecosystem-grid {
      display: grid;
      grid-template-columns: repeat(2, 1fr);
      gap: 24px;
      margin-top: 36px;
    }
    .ecosystem-card {
      background: linear-gradient(180deg, #0d141f 0%, #080c14 100%);
      border: 1px solid var(--border);
      border-radius: 18px;
      padding: 30px 28px;
      display: flex;
      flex-direction: column;
      position: relative;
      transition: transform 0.2s, border-color 0.2s;
    }
    .ecosystem-card:hover {
      transform: translateY(-2px);
      border-color: rgba(16, 185, 129, 0.4);
    }
    .eco-badge {
      display: inline-flex;
      align-items: center;
      gap: 6px;
      font-size: 11px;
      font-weight: 700;
      text-transform: uppercase;
      letter-spacing: 0.5px;
      padding: 4px 10px;
      border-radius: 20px;
      width: fit-content;
      margin-bottom: 18px;
    }
    .eco-badge-control {
      background: rgba(16, 185, 129, 0.12);
      color: #34d399;
      border: 1px solid rgba(16, 185, 129, 0.25);
    }
    .eco-badge-browser {
      background: rgba(59, 130, 246, 0.12);
      color: #60a5fa;
      border: 1px solid rgba(59, 130, 246, 0.25);
    }
    .eco-head {
      display: flex;
      align-items: center;
      gap: 14px;
      margin-bottom: 14px;
    }
    .eco-icon-wrap {
      width: 48px;
      height: 48px;
      border-radius: 12px;
      display: flex;
      align-items: center;
      justify-content: center;
      flex-shrink: 0;
    }
    .control-icon {
      background: rgba(16, 185, 129, 0.15);
      color: #34d399;
      border: 1px solid rgba(16, 185, 129, 0.3);
    }
    .browser-icon {
      background: rgba(59, 130, 246, 0.15);
      color: #60a5fa;
      border: 1px solid rgba(59, 130, 246, 0.3);
    }
    .eco-head h3 {
      font-size: 22px;
      font-weight: 800;
      color: var(--text);
      margin: 0;
    }
    .eco-sub {
      font-size: 12px;
      color: var(--text-dim);
      font-weight: 600;
    }
    .eco-desc {
      color: var(--text-muted);
      font-size: 15px;
      line-height: 1.55;
      margin: 0 0 20px 0;
    }
    .eco-features {
      list-style: none;
      padding: 0;
      margin: 0 0 26px 0;
      display: flex;
      flex-direction: column;
      gap: 10px;
      flex-grow: 1;
    }
    .eco-features li {
      font-size: 14px;
      color: var(--text);
      display: flex;
      align-items: flex-start;
      gap: 10px;
      line-height: 1.4;
    }
    .eco-features .chk {
      color: var(--accent);
      font-weight: bold;
    }
    .eco-footer {
      margin-top: auto;
    }
    .eco-footer .btn {
      width: 100%;
      text-align: center;
      justify-content: center;
    }
    .eco-btn-out {
      border: 1px solid rgba(59, 130, 246, 0.4) !important;
      color: #93c5fd !important;
    }
    .eco-btn-out:hover {
      background: rgba(59, 130, 246, 0.15) !important;
      border-color: #60a5fa !important;
    }
    .mobile-sublinks {
      padding-left: 14px;
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: -6px 0 6px 0;
      border-left: 2px solid rgba(16, 185, 129, 0.25);
    }
    .mobile-sublinks a {
      font-size: 13px !important;
      padding: 4px 0 !important;
    }

    /* ==========================================================================
       RESPONSIVE DESIGN (Mobile, Tablet, Desktop, 4K TV)
       ========================================================================== */
    @media (max-width: 960px) {
      .ecosystem-grid {
        grid-template-columns: 1fr;
      }
      .grid-4 {
        grid-template-columns: repeat(2, 1fr);
      }
      .demo-steps {
        grid-template-columns: repeat(2, 1fr);
      }
      .steps-grid, .security-grid, .release-meta {
        grid-template-columns: 1fr;
      }
      .nav-center {
        display: none;
      }
      .mobile-menu-btn {
        display: block;
      }
      .mobile-menu.open {
        display: flex;
        flex-direction: column;
        gap: 16px;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: #090d15;
        border-bottom: 1px solid var(--border);
        padding: 20px 24px;
        z-index: 99;
      }
    }

    @media (max-width: 640px) {
      .wrap {
        padding: 0 14px;
      }
      .nav-inner {
        gap: 8px;
      }
      .nav-right {
        gap: 6px;
      }
      .brand {
        gap: 8px;
      }
      .brand img, .brand svg {
        width: 30px;
        height: 30px;
      }
      .brand-name {
        font-size: 14px;
        letter-spacing: 0.5px;
      }
      .brand-sub {
        font-size: 9px;
      }
      .lang-toggle {
        padding: 5px 8px;
        font-size: 11px;
        gap: 4px;
        border-radius: 7px;
      }
      .nav-cta {
        padding: 5px 11px;
        font-size: 12px;
        font-weight: 750;
        border-radius: 8px;
        white-space: nowrap;
        gap: 4px;
      }
      .mobile-menu-btn {
        padding: 5px 9px;
        font-size: 15px;
        border-radius: 7px;
      }
      .grid-4, .demo-steps {
        grid-template-columns: 1fr;
      }
      .hero {
        padding: 40px 0 24px;
      }
      .hero-actions .btn {
        width: 100%;
      }
      .install-box, .wizard-card, .demo-container, .ecosystem-card {
        padding: 20px 16px;
      }
      .wizard-step-node span {
        display: none;
      }
      .pin-display {
        font-size: 26px;
        letter-spacing: 4px;
      }
    }

    @media (max-width: 380px) {
      .brand-sub {
        display: none;
      }
      .nav-cta {
        padding: 5px 8px;
        font-size: 11px;
      }
    }

    /* 4K TV and Large Screens (>1800px) */
    @media (min-width: 1800px) {
      .wrap {
        max-width: 1440px;
      }
      html {
        font-size: 18px;
      }
      h1 {
        font-size: 76px;
      }
      .lead {
        font-size: 24px;
        max-width: 900px;
      }
      .btn {
        padding: 18px 36px;
        font-size: 18px;
      }
    }
  
/* Small refinements preserve the original dark and emerald visual language. */
.trust-panel {border:1px solid var(--border-accent);border-radius:24px;padding:32px;background:linear-gradient(120deg,rgba(16,185,129,.09),transparent);margin:50px 0 20px}
.trust-panel h2 {font-size:clamp(26px,4vw,38px);margin-bottom:12px}
.trust-panel p {color:#b7c1cd;max-width:780px;margin-bottom:20px}
.trust-links {display:flex;gap:12px;flex-wrap:wrap}
.demo-notice {color:#b7c1cd;font-size:14px;margin:0 0 18px}
.meta-item dd {overflow-wrap:anywhere;word-break:break-word}
.wizard-step-node {font:inherit;color:inherit;background:transparent;border:0;cursor:pointer}
.skip-link {position:absolute;left:20px;top:-80px;z-index:200;background:#10b981;color:#090d15;padding:12px}
.skip-link:focus {top:10px}
.footer-links {flex-wrap:wrap}
@media(prefers-reduced-motion:reduce){html{scroll-behavior:auto}*,*::before,*::after{animation:none!important;transition:none!important}}
