<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>IBX Nordic - Service Closed</title>
    <link rel="icon" type="image/png" href="ibx_favicon.png">
    <style>
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background-color: #f4f6f9;
            color: #333;
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 100vh;
        }

        .container {
            text-align: center;
            background: #fff;
            padding: 60px 50px;
            border-radius: 12px;
            box-shadow: 0 4px 24px rgba(0, 0, 0, 0.1);
            max-width: 600px;
            width: 90%;
        }

        .logo {
            max-width: 260px;
            margin-bottom: 40px;
        }

        .divider {
            width: 60px;
            height: 3px;
            background-color: #1a5276;
            margin: 0 auto 30px;
        }

        h1 {
            font-size: 1.6rem;
            color: #1a5276;
            margin-bottom: 20px;
            font-weight: 600;
        }

        p {
            font-size: 1.05rem;
            line-height: 1.7;
            color: #555;
            margin-bottom: 15px;
        }

        .date {
            font-weight: 700;
            color: #1a5276;
        }

        .notice {
            margin-top: 30px;
            padding: 20px;
            background-color: #f8f9fa;
            border-left: 4px solid #1a5276;
            border-radius: 4px;
            text-align: left;
            font-size: 0.95rem;
            color: #666;
        }

        .redirect-btn {
            display: inline-block;
            margin-top: 30px;
            padding: 14px 32px;
            background-color: #1a5276;
            color: #fff;
            text-decoration: none;
            border-radius: 6px;
            font-size: 1rem;
            font-weight: 500;
            transition: background-color 0.2s;
        }

        .redirect-btn:hover {
            background-color: #154360;
        }

        footer {
            margin-top: 40px;
            font-size: 0.85rem;
            color: #999;
        }
    </style>
</head>
<body>
    <div class="container">
        <img src="ibx_logo.jpg" alt="IBX Business Network Logo" class="logo">
        <div class="divider"></div>
        <h1>IBX Nordic Has Closed</h1>
        <p>
            IBX Nordic and its services have been permanently closed,
            effective <span class="date">31 March 2026</span>.
        </p>
        <p>
            We sincerely thank all our customers, partners, and suppliers
            for their trust and collaboration over the years.
        </p>
        <div class="notice">
            For any outstanding inquiries, please reach out to your
            previous point of contact or refer to any prior communications
            regarding the closure.
        </div>
        <a href="https://tradeshift.com" class="redirect-btn">Go to Tradeshift.com (<span id="countdown">30</span>s)</a>
        <footer>
            &copy; 2026 Tradeshift Holdings, Inc. or a Tradeshift affiliate company.
        </footer>
    </div>
    <script>
        var seconds = 30;
        var el = document.getElementById('countdown');
        var timer = setInterval(function() {
            seconds--;
            el.textContent = seconds;
            if (seconds <= 0) {
                clearInterval(timer);
                window.location.href = 'https://tradeshift.com';
            }
        }, 1000);
    </script>
</body>
</html>
