<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <meta http-equiv="X-UA-Compatible" content="ie=edge">
    <title></title>
    <style>
        body, h1, h2, p {
            margin: 0;
            padding: 0;
            font-family: Arial, sans-serif;
        }

        body {
            line-height: 1.6;
            font-size: 16px;
            background-color: #f4f4f4;
            color: #333;
        }

        .container {
            width: 90%;
            margin: 0 auto;
            max-width: 1200px;
        }

        header {
            background-color: #003366;
            color: #fff;
            padding: 1rem 0;
            text-align: center;
        }

        header h1 {
            font-size: 2.5rem;
        }

        section {
            padding: 2rem 0;
        }

        section h2 {
            font-size: 1.8rem;
            color: #003366;
            margin-bottom: 1rem;
        }

        section p {
            font-size: 1rem;
            margin-bottom: 1.5rem;
            line-height: 1.6;
        }

        .note {
            background-color: #ffe6e6;
            padding: 1rem;
            border-radius: 5px;
            margin-bottom: 1.5rem;
        }

        .form-link {
            color: #0066cc;
            text-decoration: none;
        }

        .form-link:hover {
            text-decoration: underline;
        }

        footer {
            text-align: center;
            padding: 1rem 0;
            background-color: #003366;
            color: #fff;
            margin-top: 3rem;
        }

        /* Responsive design */
        @media (max-width: 768px) {
            header h1 {
                font-size: 2rem;
            }

            section h2 {
                font-size: 1.5rem;
            }

            .container {
                width: 95%;
            }
        }
    </style>
</head>
<body>

    <header>
        <div class="container">
            <h1></h1>
        </div>
    </header>

    <div class="container">
        <!-- What This Scanner Is For Section -->
        <section>
            <h2>What This Scanner Is For</h2>
            <p>
                Root Evidence conducts continuous, responsible scanning across IPv4 and known IPv6 ranges to maintain an up-to-date view of the Internet’s exposed attack surface. We identify reachable assets, open services, and basic configurations so organizations can find unknown or forgotten infrastructure, understand external risk, and prioritize remediation.
            </p>
            <p>
                Our scanning is non-intrusive and limited to banner collection. We also use anonymized, aggregate telemetry to support actuarial modeling and risk assessment in the cyber insurance market.
            </p>
            <div class="note">
                <p><strong>Note:</strong> This activity may trigger IDS/IPS alerts. If you want to reduce alert fatigue, you can ignore our scanner via GreyNoise.io or manage scanner filtering <a href="https://core.rootevidence.com/scanners" class="form-link">here</a>.</p>
                <p>To opt out of scanning, please fill out this form: <a href="https://www.rootevidence.com/scanners" class="form-link">Opt-Out Form</a>.</p>
            </div>
        </section>

        <!-- Who We Are Section -->
        <section>
            <h2>Who We Are</h2>
            <p>
                Root Evidence was built by a team that has helped define modern security: Jeremiah Grossman, Robert Hansen, Heather Konold, and Lex Arquette. Together, they have spent decades building and scaling category-defining security companies, including products that pioneered web application security and attack surface management.
            </p>
            <p>
                We bring together deep technical research, product expertise, and operational experience with a single focus: replacing guesswork and noise with evidence that reflects real-world risk. Backed by a broad network of respected security leaders and researchers, Root Evidence exists to help organizations focus on what actually matters, fix what’s real, and stop wasting effort on what doesn’t.
            </p>
        </section>

        <!-- Contact Section -->
        <section>
            <h2>Contact</h2>
            <p>
                For questions or complaints, please fill out this form: <a href="https://www.rootevidence.com/contact" class="form-link">Contact Form</a>.
            </p>
        </section>
    </div>

    <footer>
        <p></p>
    </footer>

</body>
</html>
