<!DOCTYPE html>

<html lang="pl">

<head>

    <meta charset="UTF-8">

    <meta name="viewport" content="width=device-width, initial-scale=1.0">

    <title>Zaufanie to Decyzja | Algorytm Grzechu</title>

    <link href="https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;900&family=Roboto:wght@300;400&display=swap" rel="stylesheet">

    <style>

        /* RESET & BASE STYLES */

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

        body {

            background-color: #0a0a0a;

            color: #e0e0e0;

            font-family: 'Roboto', sans-serif;

            line-height: 1.6;

            overflow-x: hidden;

        }


        h1, h2, h3 { font-family: 'Montserrat', sans-serif; text-transform: uppercase; letter-spacing: 2px; }


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


        /* COLORS */

        :root {

            --accent: #d32f2f; /* Crimson Red */

            --accent-glow: rgba(211, 47, 47, 0.4);

            --dark-grey: #1a1a1a;

            --glass: rgba(255, 255, 255, 0.03);

        }


        /* SECTION: HERO */

        .hero {

            height: 100vh;

            display: flex;

            align-items: center;

            justify-content: center;

            text-align: center;

            background: linear-gradient(rgba(0,0,0,0.7), rgba(0,0,0,0.7)), url('https://via.placeholder.com/1920x1080/0a0a0a/0a0a0a'); /* Tu wstawisz link do wideo lub mrocznego zdjęcia */

            background-size: cover;

            border-bottom: 1px solid var(--accent);

        }


        .hero h1 { font-size: 4rem; font-weight: 900; margin-bottom: 10px; color: #fff; text-shadow: 0 0 20px var(--accent-glow); }

        .hero p { font-size: 1.2rem; font-weight: 300; max-width: 600px; margin: 0 auto 30px; color: #aaa; }


        /* BUTTONS */

        .btn {

            display: inline-block;

            padding: 15px 40px;

            background: var(--accent);

            color: #fff;

            text-decoration: none;

            font-weight: bold;

            border-radius: 2px;

            transition: 0.3s;

            box-shadow: 0 0 15px var(--accent-glow);

        }

        .btn:hover { transform: scale(1.05); box-shadow: 0 0 25px var(--accent); }


        /* SECTION: AUDIO HOOK */

        .audio-section { padding: 100px 0; background: #0d0d0d; text-align: center; }

        .audio-player {

            background: var(--glass);

            border: 1px solid rgba(255,255,255,0.1);

            padding: 40px;

            border-radius: 10px;

            max-width: 600px;

            margin: 40px auto;

        }


        /* SECTION: PRICING */

        .pricing { padding: 100px 0; }

        .grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 30px; align-items: stretch; }


        .card {

            background: var(--glass);

            border: 1px solid rgba(255,255,255,0.1);

            padding: 40px;

            text-align: center;

            transition: 0.4s;

            position: relative;

            display: flex;

            flex-direction: column;

        }


        .card.featured {

            border: 1px solid var(--accent);

            transform: scale(1.05);

            background: rgba(211, 47, 47, 0.05);

            z-index: 2;

        }


        .card h3 { margin-bottom: 20px; font-size: 1.5rem; }

        .price { font-size: 3rem; font-weight: 900; margin-bottom: 20px; color: #fff; }

        .features { list-style: none; margin-bottom: 30px; flex-grow: 1; text-align: left; font-size: 0.9rem; color: #bbb; }

        .features li { margin-bottom: 10px; padding-left: 20px; position: relative; }

        .features li::before { content: '›'; position: absolute; left: 0; color: var(--accent); font-weight: bold; }


        .stock-tag {

            position: absolute;

            top: 15px;

            right: 15px;

            background: var(--accent);

            font-size: 0.7rem;

            padding: 5px 10px;

            font-weight: bold;

        }


        /* SECTION: AUTHOR */

        .author { padding: 100px 0; background: #0a0a0a; border-top: 1px solid rgba(255,255,255,0.05); }

        .author-flex { display: flex; align-items: center; gap: 50px; flex-wrap: wrap; }

        .author-text { flex: 1; min-width: 300px; }

        .author-img { width: 300px; height: 400px; background: #1a1a1a; filter: grayscale(1); border-left: 4px solid var(--accent); }


        footer { padding: 40px 0; text-align: center; border-top: 1px solid rgba(255,255,255,0.05); font-size: 0.8rem; color: #555; }


        /* RESPONSIVE */

        @media (max-width: 768px) {

            .hero h1 { font-size: 2.5rem; }

            .card.featured { transform: scale(1); }

        }

    </style>

</head>

<body>


    <section class="hero">

        <div class="container">

            <h1>ZAUFANIE TO DECYZJA</h1>

            <p>Świat, w którym każda transakcja ma swoją mroczną cenę. Wejdź do gry Gabriela Vane'a i poznaj Algorytm Grzechu.</p>

            <a href="#oferta" class="btn">ODKRYJ PRAWDĘ</a>

        </div>

    </section>


    <section class="audio-section">

        <div class="container">

            <h2>Posłuchaj Dowodów</h2>

            <div class="audio-player">

                <p style="margin-bottom: 20px; font-style: italic; color: #888;">"Transmisja zaszyfrowana: Akta 001-Warszawa"</p>

                <div style="background: rgba(255,255,255,0.1); height: 50px; display: flex; align-items: center; justify-content: center;">

                    [ODTWARZACZ AUDIO - KLIKNIJ PLAY]

                </div>

            </div>

        </div>

    </section>


    <section class="pricing" id="oferta">

        <div class="container">

            <h2 style="text-align:center; margin-bottom: 60px;">Wybierz swój poziom dostępu</h2>

            <div class="grid">

                

                <div class="card">

                    <h3>Dostęp Cyfrowy</h3>

                    <div class="price">49 PLN</div>

                    <ul class="features">

                        <li>E-book (EPUB, MOBI, PDF)</li>

                        <li>Kinowy Audiobook (Wersja MP3)</li>

                        <li>Dostęp do zamkniętej listy mailingowej</li>

                    </ul>

                    <a href="#" class="btn" style="background:transparent; border: 1px solid var(--accent);">WYBIERZ</a>

                </div>


                <div class="card featured">

                    <div class="stock-tag">BESTSELLER</div>

                    <h3>Artefakt</h3>

                    <div class="price">149 PLN</div>

                    <ul class="features">

                        <li>Książka w twardej oprawie</li>

                        <li>Czernione brzegi stron (Matte Black)</li>

                        <li>Dedykacja od Archiego Dawosa</li>

                        <li>Wszystko z pakietu cyfrowego</li>

                    </ul>

                    <a href="#" class="btn">WYBIERZ PAKIET</a>

                </div>


                <div class="card">

                    <div class="stock-tag" style="background: #000; border: 1px solid var(--accent);">LIMIT: 500 SZT.</div>

                    <h3>Udziałowiec Phoenix</h3>

                    <div class="price">399 PLN</div>

                    <ul class="features">

                        <li>Kolekcjonerska kasetka z kodem szyfrującym</li>

                        <li>Metalowy pendrive z tajnymi aktami</li>

                        <li>Imienny akt notarialny udziałów Phoenix</li>

                        <li>Karta nasączona zapachem "Zurych 3:00 AM"</li>

                        <li>Pełny ekwipunek fizycznych dowodów</li>

                    </ul>

                    <a href="#" class="btn" style="background:transparent; border: 1px solid var(--accent);">KUP TERAZ</a>

                </div>


            </div>

        </div>

    </section>


    <section class="author">

        <div class="container">

            <div class="author-flex">

                <div class="author-img"></div>

                <div class="author-text">

                    <h2>Archie Dawos</h2>

                    <p style="margin-top: 20px;">Obserwator korporacyjnej maszyny. Piszę o tym, o czym inni boją się myśleć w trakcie przerw na kawę. Moje historie nie kończą się happy endem. Kończą się prawdą, na którą nie zawsze jesteś gotowy.</p>

                </div>

            </div>

        </div>

    </section>


    <footer>

        <div class="container">

            <p>&copy; 2026 ARCHIE DAWOS | PHOENIX SOLUTIONS GROUP. WSZELKIE PRAWA ZASTRZEŻONE.</p>

            <p style="margin-top: 10px; opacity: 0.5;">Szyfrowanie SSL 256-bit | Bezpieczne Płatności</p>

        </div>

    </footer>


</body>

</html>