        :root {
            --yellow: #f4c025;
            --orange: #d15610;
            --bg-dark: #1a1a1b;
            --bg-darker: #0d0d0d;
            --neon-green: #39ff14;
            --neon-red: #ff073a;
            --neon-blue: #00d4ff;
            --text-main: #e0e0e0;
            --border: 3px solid #000;
            --shadow: 8px 8px 0px #000;
        }

        body {
            background: var(--bg-darker);
            color: var(--text-main);
            font-family: 'Share Tech Mono', monospace;
            margin: 0;
            padding: 0;
            overflow-x: hidden;
            background-image: 
                radial-gradient(circle at 50% 50%, transparent 60%, rgba(0,0,0,0.9) 100%),
                repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(0,0,0,0.1) 2px, rgba(0,0,0,0.1) 4px);
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background: repeating-linear-gradient(0deg, rgba(0,0,0,0) 0px, rgba(0,0,0,0) 2px, rgba(0,0,0,0.05) 2px, rgba(0,0,0,0.05) 4px);
            pointer-events: none;
            z-index: 1000;
        }

        h1, h2, h3, h4 { font-family: 'Oswald', sans-serif; text-transform: uppercase; margin: 0; }

        .container {
            max-width: 1000px;
            margin: 0 auto;
            padding: 2rem 1rem;
        }

        .top-nav {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
            margin-bottom: 1rem;
        }

        .brand-nav {
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
            margin-left: auto;
        }

        .brand-tag {
            font-family: 'Oswald', sans-serif;
            background: #0b1318;
            color: var(--neon-blue);
            border: var(--border);
            box-shadow: 4px 4px 0 #000;
            padding: 10px 18px;
            text-transform: uppercase;
            letter-spacing: 1px;
            line-height: 1;
        }

        .hero {
            position: relative;
            background: var(--bg-dark);
            border: var(--border);
            box-shadow: var(--shadow);
            padding: 3rem 2rem;
            margin-bottom: 3rem;
            transform: rotate(-0.5deg);
            overflow: hidden;
        }

        .hero::before {
            content: "ELITE SYSTEM";
            position: absolute;
            top: 20px;
            right: -40px;
            background: #444;
            color: #fff;
            font-weight: bold;
            padding: 5px 50px;
            transform: rotate(45deg);
            font-size: 0.8rem;
            letter-spacing: 2px;
        }

        .brand-header {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 2rem;
        }

        .brand-logo {
            width: 80px;
            height: 80px;
            background: #000;
            border: 2px solid #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2.5rem;
            color: #fff;
            font-weight: bold;
            box-shadow: 4px 4px 0 #444;
        }

        .brand-title-wrap h1 {
            font-size: 3.5rem;
            color: #fff;
            text-shadow: 3px 3px 0 #000;
            line-height: 1;
        }

        .brand-tagline {
            color: #888;
            font-style: italic;
            font-size: 1.1rem;
            margin-top: 5px;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            border-top: 2px solid #333;
            padding-top: 2rem;
        }

        .stat-box {
            background: rgba(0,0,0,0.4);
            border-left: 4px solid #fff;
            padding: 1rem;
        }

        .stat-label {
            font-size: 0.75rem;
            color: #666;
            margin-bottom: 5px;
            letter-spacing: 1px;
        }

        .stat-value {
            font-size: 1.2rem;
            color: #fff;
            font-family: 'Oswald', sans-serif;
        }

        .gamified-stats {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 2rem;
            margin-bottom: 3rem;
        }

        .card {
            background: #111;
            border: 2px solid #000;
            box-shadow: 6px 6px 0 #000;
            padding: 1.5rem;
        }

        .card h2 {
            font-size: 1.4rem;
            color: var(--neon-green);
            margin-bottom: 1rem;
            border-bottom: 1px solid #333;
            padding-bottom: 0.5rem;
        }

        .rating-bar {
            height: 12px;
            background: #222;
            margin-bottom: 15px;
            position: relative;
            border: 1px solid #000;
        }

        .rating-fill {
            height: 100%;
            background: var(--neon-green);
            box-shadow: 0 0 10px var(--neon-green);
        }

        .rating-text {
            display: flex;
            justify-content: space-between;
            font-size: 0.8rem;
            margin-top: 4px;
            color: #888;
        }

        .content-section {
            background: #151515;
            border: 2px solid #222;
            padding: 2rem;
            margin-bottom: 2rem;
            line-height: 1.7;
            font-size: 0.95rem;
        }

        .content-section h2 {
            color: #fff;
            margin-bottom: 1.5rem;
            position: relative;
            display: inline-block;
        }

        .content-section h2::after {
            content: "";
            position: absolute;
            bottom: -5px;
            left: 0;
            width: 100%;
            height: 3px;
            background: #fff;
        }

        .content-section p {
            margin-bottom: 1.5rem;
            color: #ccc;
        }

        .faq-item {
            margin-bottom: 1.5rem;
            border-bottom: 1px solid #222;
            padding-bottom: 1rem;
        }

        .faq-q {
            color: #fff;
            font-weight: bold;
            margin-bottom: 5px;
            display: block;
        }

        .faq-a {
            color: #aaa;
        }

        .stockist-list {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-top: 1rem;
        }

        .stockist-tag {
            background: #000;
            border: 1px solid #fff;
            color: #fff;
            padding: 5px 15px;
            font-size: 0.8rem;
            text-transform: uppercase;
        }

        .nav-footer {
            display: flex;
            justify-content: space-between;
            margin-top: 4rem;
            border-top: 2px solid #333;
            padding-top: 2rem;
        }

        .back-btn {
            font-family: 'Oswald', sans-serif;
            background: var(--bg-dark);
            color: var(--yellow);
            border: var(--border);
            padding: 10px 25px;
            text-decoration: none;
            box-shadow: 4px 4px 0 #000;
            transition: 0.1s;
        }

        .back-btn[aria-disabled="true"] {
            opacity: 0.4;
            pointer-events: none;
        }

        .back-btn:hover {
            transform: translate(2px, 2px);
            box-shadow: 2px 2px 0 #000;
        }

        @media (max-width: 600px) {
            .brand-header { flex-direction: column; text-align: center; }
            .brand-title-wrap h1 { font-size: 2.5rem; }
            .hero-grid { grid-template-columns: 1fr; }
        }
    <script src="https://analytics.ahrefs.com/analytics.js" data-key="k/NKgxSZO6xBKnKkxTy+Cg" async></script>
    <script defer src="/_vercel/insights/script.js"></script>
</head>
<body>

    <div class="container">
        <a href="../ammo-brands.html" class="back-btn">← BACK TO ALL BRANDS</a>

        <header class="hero">
            <div class="brand-header">
                <div class="brand-logo">SIG</div>
                <div class="brand-title-wrap">
                    <h1>SIG SAUER</h1>
                    <div class="brand-tagline">"The pistol company that decided to make its own ammo."</div>
                </div>
            </div>

            <div class="hero-grid">
                <div class="stat-box">
                    <div class="stat-label">ORIGIN</div>
                    <div class="stat-value">Newington, New Hampshire, USA 🇺🇸</div>
                </div>
                <div class="stat-box">
                    <div class="stat-label">FOUNDED</div>
                    <div class="stat-value">1853 (Arms) / ~2014 (Ammo)</div>
                </div>
                <div class="stat-box">
                    <div class="stat-label">PARENT CORP</div>
                    <div class="stat-value">Sig Sauer Inc.</div>
                </div>
                <div class="stat-box">
                    <div class="stat-label">SA AVAILABILITY</div>
                    <div class="stat-value" style="color: var(--orange)">MODERATE</div>
                </div>
            </div>
        </header>

        <section class="gamified-stats">
            <div class="card">
                <h2>// MANUFACTURER SPECS</h2>
                <div class="stat-row">
                    <span class="stat-label">BARREL OPTIMIZATION:</span>
                    <div class="rating-bar"><div class="rating-fill" style="width: 100%; background: var(--neon-blue); box-shadow: 0 0 10px var(--neon-blue);"></div></div>
                    <div class="rating-text"><span>SIG NATIVE</span><span>MAX</span></div>
                </div>
                <div class="stat-row" style="margin-top: 15px;">
                    <span class="stat-label">EXPANSION CONSISTENCY:</span>
                    <div class="rating-bar"><div class="rating-fill" style="width: 95%;"></div></div>
                    <div class="rating-text"><span>STACKED HOLLOW POINT</span><span>95%</span></div>
                </div>
                <div class="stat-row" style="margin-top: 15px;">
                    <span class="stat-label">TECH INNOVATION:</span>
                    <div class="rating-bar"><div class="rating-fill" style="width: 97%; background: #fff; box-shadow: 0 0 10px #fff;"></div></div>
                    <div class="rating-text"><span>ELITE PERFORMANCE</span><span>97%</span></div>
                </div>
            </div>

            <div class="card">
                <h2>// PRIMARY PRODUCTS</h2>
                <ul style="list-style: none; padding: 0; color: #fff;">
                    <li style="margin-bottom: 10px; border-left: 3px solid #fff; padding-left: 10px;">
                        <strong>SIG V-CROWN 124GR JHP</strong><br>
                        <small style="color: #666;">Stacked hollow point design ensuring reliable expansion even through clothing.</small>
                    </li>
                    <li style="margin-bottom: 10px; border-left: 3px solid var(--neon-blue); padding-left: 10px;">
                        <strong>SIG ELITE FMJ 115GR/124GR</strong><br>
                        <small style="color: #666;">Specifically loaded to match the point of impact of V-Crown rounds.</small>
                    </li>
                    <li style="margin-bottom: 10px; border-left: 3px solid var(--neon-red); padding-left: 10px;">
                        <strong>SIG M1152 115GR FMJ</strong><br>
                        <small style="color: #666;">High-velocity military-grade ball ammunition developed for the US Army.</small>
                    </li>
                </ul>
            </div>
        </section>

        <section class="content-section">
            <h2>THE SIG SAUER ECOSYSTEM</h2>
            <p>
                Sig Sauer, founded in Switzerland in 1853, is one of the world's most prestigious small arms manufacturers. Around 2014, the company's US division made a bold move: they decided to build their own ammunition manufacturing facility in Arkansas. The goal was to create "Elite Performance Ammunition" designed from the ground up to match the reliability and tolerances of their own world-class pistols.
            </p>
            <p>
                The standout innovation in the Sig ammo line is the V-Crown. It uses a "stacked" hollow point design—essentially a smaller hollow point inside a larger one—to ensure consistent expansion across a wide range of velocities and through diverse barrier types.
            </p>
            <p>
                By controlling both the firearm and the ammunition manufacturing, Sig Sauer offers a "total system" approach to reliability that few other manufacturers can claim.
            </p>
        </section>

        <section class="content-section">
            <h2>SIG SAUER AMMO IN SOUTH AFRICA</h2>
            <p>
                In South Africa, Sig Sauer ammunition is positioned as a premium choice for handgun owners, particularly those who carry Sig Sauer P320 or P365 series pistols. Even for non-Sig owners, the V-Crown is recognized as a modern, high-tech alternative to the more established Hornady or Federal loads.
            </p>
            <p>
                While not as ubiquitous as S&B or Magtech, Sig ammo is consistently stocked by premium dealers who focus on modern, tactical hardware. It is often recommended by South African instructors for its clean-burning performance and reliable feeding.
            </p>
            <div class="stockist-list">
                <span class="stockist-tag">Outdoor Investment</span>
                <span class="stockist-tag">Safari Outdoor</span>
                <span class="stockist-tag">Tactical HQ</span>
                <span class="stockist-tag">Brothers Arms</span>
            </div>
        </section>

        <section class="content-section">
            <h2>FREQUENTLY ASKED QUESTIONS</h2>
            
            <div class="faq-item">
                <span class="faq-q">What is Sig V-Crown?</span>
                <p class="faq-a">It is Sig Sauer's carry ammunition, featuring a stacked hollow point cavity and technical refinements to ensure consistent expansion and penetration for self-defense.</p>
            </div>

            <div class="faq-item">
                <span class="faq-q">Is Sig ammo only for Sig Sauer guns?</span>
                <p class="faq-a">No. While optimized for Sig handguns, it is high-quality 9mm Luger ammunition that works exceptionally well in all modern, quality semi-automatic handguns.</p>
            </div>

            <div class="faq-item">
                <span class="faq-q">Where is Sig Sauer ammo made?</span>
                <p class="faq-a">All Sig Sauer Elite Performance ammunition is manufactured at their dedicated, state-of-the-art facility in Jacksonville, Arkansas, USA.</p>
            </div>
        </section>

        <footer class="nav-footer">
            <a href="../ammo-brands.html" class="back-btn">← RETURN TO DOSSIERS</a>
            <div style="color: #444; font-size: 0.8rem; text-align: right;">
                CATCH-A-BULLET! DATA TERMINAL [V.2.06]<br>
                SECURE ACCESS GRANTED: 2026-03-17
            </div>
        </footer>

    </div>

</body>
</html>
