<!DOCTYPE html>
<html lang="en">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>Cornice Group | Industrial Technology HoldCo</title>
    
    <link rel="preconnect" href="https://fonts.googleapis.com">
    <link rel="preconnect" href="https://fonts.gstatic.com" crossorigin>
    <link href="https://fonts.googleapis.com/css2?family=Inter:wght@300;400;600&family=Oswald:wght@400;500;700&display=swap" rel="stylesheet">

    <style>
        /* --- CSS VARIABLES & THEME --- */
        :root {
            --bg-dark: #0f172a;       /* Deep Slate - Main Background */
            --bg-card: #1e293b;       /* Lighter Slate - Cards */
            --text-main: #f1f5f9;     /* Off-white */
            --text-muted: #94a3b8;    /* Muted Steel Grey */
            --accent-blue: #38bdf8;   /* Electric Blue - subtle highlights */
            --accent-green: #4ade80;  /* Tech Green - subtle highlights */
            --border: 1px solid rgba(255,255,255,0.1);
        }

        /* --- GLOBAL RESET --- */
        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Inter', sans-serif;
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.6;
            -webkit-font-smoothing: antialiased;
        }

        h1, h2, h3, h4 {
            font-family: 'Oswald', sans-serif;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: #ffffff;
        }

        a { text-decoration: none; color: inherit; transition: 0.3s ease; }
        ul { list-style: none; }

        /* --- UTILITY CLASSES --- */
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 2rem;
        }

        .section-padding {
            padding: 6rem 0;
            border-bottom: var(--border);
        }

        /* --- BUTTONS --- */
        .btn {
            display: inline-block;
            padding: 1rem 2.5rem;
            font-weight: 600;
            text-transform: uppercase;
            letter-spacing: 1px;
            border: 1px solid #ffffff;
            color: #ffffff;
            background: transparent;
            cursor: pointer;
            transition: all 0.3s ease;
            margin-top: 1rem;
        }

        .btn:hover {
            background: #ffffff;
            color: var(--bg-dark);
        }

        .btn-primary {
            background: #ffffff;
            color: var(--bg-dark);
            border: 1px solid #ffffff;
        }
        .btn-primary:hover {
            background: transparent;
            color: #ffffff;
        }

        /* --- NAVIGATION --- */
        nav {
            padding: 1.5rem 0;
            position: absolute;
            width: 100%;
            top: 0;
            z-index: 100;
            background: linear-gradient(to bottom, rgba(15,23,42,0.9), transparent);
        }
        
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            font-family: 'Oswald', sans-serif;
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 2px;
        }

        .nav-links { display: flex; gap: 2rem; }
        .nav-links a { font-size: 0.9rem; font-weight: 500; color: var(--text-muted); }
        .nav-links a:hover { color: #ffffff; }

        /* --- HERO SECTION --- */
        .hero {
            height: 95vh;
            min-height: 600px;
            display: flex;
            align-items: center;
            position: relative;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background-image: url('https://images.unsplash.com/photo-1581091226825-a6a2a5aee158?q=80&w=2670&auto=format&fit=crop'); 
            background-size: cover;
            background-position: center;
            filter: grayscale(100%) contrast(1.2);
            opacity: 0.4; 
        }

        .hero-overlay {
            position: absolute;
            top: 0; left: 0; width: 100%; height: 100%;
            background: linear-gradient(to bottom right, rgba(15, 23, 42, 0.8), rgba(20, 50, 40, 0.7));
        }

        .hero-content {
            position: relative;
            z-index: 10;
            max-width: 900px;
        }

        .hero h1 {
            font-size: 4rem;
            line-height: 1.1;
            margin-bottom: 1.5rem;
        }

        .hero p {
            font-size: 1.25rem;
            color: #cbd5e1;
            margin-bottom: 2.5rem;
            font-weight: 300;
            max-width: 650px;
        }

        .btn-group { display: flex; gap: 1rem; }

        /* --- PHILOSOPHY SECTION --- */
        .philosophy-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 4rem;
            align-items: start;
        }

        .philosophy-text h2 { font-size: 2.5rem; margin-bottom: 1.5rem; }
        .philosophy-text p { color: var(--text-muted); margin-bottom: 1.5rem; font-size: 1.1rem; }

        .philosophy-card {
            background: rgba(255,255,255,0.03);
            padding: 1.5rem;
            border-left: 3px solid var(--accent-blue);
            margin-bottom: 1.5rem;
        }

        .philosophy-card h3 { font-size: 1.25rem; margin-bottom: 0.5rem; }
        .philosophy-card p { font-size: 0.95rem; color: var(--text-muted); }

        /* --- INVESTMENT MANDATES (BENTO GRID) --- */
        .mandates-header {
            margin-bottom: 4rem;
            border-left: 4px solid var(--accent-green);
            padding-left: 1.5rem;
        }

        .mandates-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 2rem;
        }

        .mandate-card {
            background: var(--bg-card);
            padding: 2.5rem;
            border: var(--border);
            transition: transform 0.3s ease;
        }

        .mandate-card:hover {
            transform: translateY(-5px);
            border-color: var(--text-muted);
        }

        .mandate-num {
            font-family: 'Oswald', sans-serif;
            font-size: 2rem;
            color: rgba(255,255,255,0.1);
            margin-bottom: 1rem;
            display: block;
        }

        .mandate-card h3 { font-size: 1.5rem; margin-bottom: 1.5rem; }
        
        .mandate-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1px;
            color: var(--text-muted);
            font-weight: 700;
            display: block;
            margin-bottom: 0.25rem;
        }

        .mandate-card p { color: #cbd5e1; font-size: 0.95rem; margin-bottom: 1.5rem; }

        /* --- BUSINESS OWNERS --- */
        .owners { background: #0b1120; }
        .owners-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .owner-item h3 {
            font-size: 1.25rem;
            margin-bottom: 1rem;
            padding-bottom: 0.5rem;
            border-bottom: 1px solid rgba(255,255,255,0.1);
        }

        .owner-item p { color: var(--text-muted); }

        /* --- LEADERSHIP --- */
        .leadership-intro {
            max-width: 800px; 
            margin-bottom: 4rem;
        }

        .bio-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 3rem;
        }

        .bio-card {
            background: var(--bg-card);
            padding: 2.5rem;
            border: var(--border);
        }

        .bio-title {
            display: block;
            font-size: 0.85rem;
            color: var(--accent-blue);
            text-transform: uppercase;
            margin-bottom: 1.5rem;
            font-weight: 600;
            letter-spacing: 1px;
        }

        .bio-card p { color: var(--text-muted); margin-bottom: 1rem; }

        /* --- FOOTER --- */
        footer {
            background: #05080f;
            padding: 4rem 0;
            font-size: 0.9rem;
            color: var(--text-muted);
            border-top: var(--border);
        }

        .footer-content {
            display: flex;
            justify-content: space-between;
            margin-bottom: 3rem;
        }

        .footer-links a { margin-left: 2rem; color: var(--text-muted); }
        .footer-links a:hover { color: #ffffff; }

        .disclaimer {
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 2rem;
            font-size: 0.75rem;
            color: #475569;
        }

        /* --- RESPONSIVE --- */
        @media (max-width: 768px) {
            .hero h1 { font-size: 2.5rem; }
            .philosophy-grid, .mandates-grid, .owners-grid, .bio-grid { grid-template-columns: 1fr; }
            .nav-links { display: none; }
            .footer-content { flex-direction: column; gap: 2rem; }
            .footer-links a { margin-left: 0; margin-right: 1.5rem; }
            .btn-group { flex-direction: column; }
            .btn { width: 100%; text-align: center; }
        }
    </style>
</head>
<body>

    <nav>
        <div class="container nav-container">
            <div class="logo">CORNICE GROUP</div>
            <div class="nav-links">
                <a href="#philosophy">Philosophy</a>
                <a href="#mandates">Theses</a>
                <a href="#team">Team</a>
            </div>
        </div>
    </nav>

    <header class="hero">
        <div class="hero-bg"></div>
        <div class="hero-overlay"></div>
        <div class="container hero-content">
            <h1>Thesis-Driven.<br>Operationally Grounded.<br>Built for the Long Haul.</h1>
            <p>Cornice Group is an operator-led holding company targeting lower-middle market industrial sectors. We partner with essential businesses to build enduring value—without the artificial timelines or pretension of traditional private equity.</p>
            <div class="btn-group">
                <a href="#contact" class="btn btn-primary">Partner With Us</a>
                <a href="#mandates" class="btn">Our Theses</a>
            </div>
        </div>
    </header>

    <section id="philosophy" class="section-padding">
        <div class="container philosophy-grid">
            <div class="philosophy-text">
                <h2>Partners, Not Overlords.</h2>
                <p>We founded Cornice Group to solve a specific problem: <strong>Good companies are often ruined by bad capital.</strong></p>
                <p>Traditional private equity works on a clock. The standard "10-year fund" model forces fund managers to sell businesses just when the value of these businesses starts to compound, often prioritizing near-term financial engineering over long-term strategic growth. We operate differently.</p>
            </div>
            <div class="philosophy-items">
                <div class="philosophy-card">
                    <h3>Permanent Mindset</h3>
                    <p>We are a holding company, not a fund. Because we are not forced to sell in 3-5 years, we have the flexibility to hold and grow businesses indefinitely.</p>
                </div>
                <div class="philosophy-card">
                    <h3>Builders, Not Bankers</h3>
                    <p>We don’t run companies from a spreadsheet in a high-rise. We have founded billion-dollar companies, navigated turnarounds, and worked in the trenches.</p>
                </div>
                <div class="philosophy-card">
                    <h3>Low Ego, High Conviction</h3>
                    <p>We take our work seriously, but we don’t take ourselves too seriously. We believe partnership is built on handshake deals, mutual respect, and straight talk. We leave the "sharp elbows" in New York.</p>
                </div>
            </div>
        </div>
    </section>

    <section id="mandates" class="section-padding">
        <div class="container">
            <div class="mandates-header">
                <h2>Deeply Thesis Driven. Narrow Focus.</h2>
                <p style="color: var(--text-muted); max-width: 700px;">We do not rely on auctions or generalist trends. We identify structural macroeconomic dislocations and current supply chain or servicing constraints. We build across four sectors where our operational expertise creates a competitive moat.</p>
            </div>
            
            <div class="mandates-grid">
                <div class="mandate-card">
                    <span class="mandate-num">01</span>
                    <h3>Power Grid & Utility Services</h3>
                    <span class="mandate-label">The Thesis</span>
                    <p>The collision of aging infrastructure, the AI/Data Center boom, and the re-shoring of manufacturing has created a historic "Power Bottleneck" in North America.</p>
                    <span class="mandate-label">The Strategy</span>
                    <p style="margin-bottom:0;">We acquire and consolidate the specialized engineering, maintenance, and service firms that serve as the "gatekeepers" to grid expansion.</p>
                </div>

                <div class="mandate-card">
                    <span class="mandate-num">02</span>
                    <h3>Aerospace & Defense Mfg.</h3>
                    <span class="mandate-label">The Thesis</span>
                    <p>Geopolitical instability is forcing a massive re-shoring of the A&D supply chain to ensure sovereignty.</p>
                    <span class="mandate-label">The Strategy</span>
                    <p style="margin-bottom:0;">We are rolling up the fragmented tier of high-precision component manufacturers, providing the scale and management structure needed to service Prime contractors.</p>
                </div>

                <div class="mandate-card">
                    <span class="mandate-num">03</span>
                    <h3>AI-Enabled Industrial Transformation</h3>
                    <span class="mandate-label">The Thesis</span>
                    <p>The next wave of value creation isn't in building new AI models, but in applying them to "unsexy" legacy industries.</p>
                    <span class="mandate-label">The Strategy</span>
                    <p style="margin-bottom:0;">We acquire profitable, traditional service businesses (Agriculture, Mining, Rail) and embed proprietary technology to revolutionize safety, efficiency, and yield.</p>
                </div>

                <div class="mandate-card">
                    <span class="mandate-num">04</span>
                    <h3>Strategic Restructuring & Tech Restoration</h3>
                    <span class="mandate-label">The Thesis</span>
                    <p>The end of the zero-interest-rate era has created a cohort of "Venture Fallen Angels"—fundamentally sound technologies with broken capital structures. These companies often possess differentiated technology and solid product-market fit, but are suffocated by liquidation preferences, leverage or unsustainable burn rates.</p>
                    <span class="mandate-label">The Strategy</span>
                    <p style="margin-bottom:0;">We utilize our deep restructuring experience to acquire Fallen Angels, recapitalizing the business to fix the balance sheet and pivoting operations toward sustainable profitability. We aren’t looking for “cheap” assets; we are looking for great companies that need a structural reset to reach their full potential.</p>
                </div>
            </div>
        </div>
    </section>

    <section class="section-padding owners">
        <div class="container">
            <div class="owners-content">
                <h2>Your Legacy, Secured.</h2>
                <p style="color: var(--text-muted);">Selling your business is the most significant decision of your professional life. You deserve a buyer who sees the people behind the profit.</p>
            </div>
            <div class="owners-grid">
                <div class="owner-item">
                    <h3>We Protect Your Culture</h3>
                    <p>We buy businesses because we like what they are today. We are not here to gut your team or rebrand your trucks on Day 1.</p>
                </div>
                <div class="owner-item">
                    <h3>Shared Success </h3>
                    <p>We believe in broad-based ownership. We often implement Employee Stock Ownership Plans (ESOPs) so the people who built the business participate in its future growth.</p>
		</div>
		<div class="owner-item">
                    <h3>A Destination, Not a Pit Stop</h3>
                    <p>Because we are not a fund, we don’t buy your company just to “flip” it to a larger firm in three to five years. We provide a permanent home where your brand and employees can continue to thrive.</p>
                </div>
                <div class="owner-item">
                    <h3>Flexible Transition</h3>
                    <p>Whether you want to stay on as CEO or retire to the mountains, we design a transition plan that fits your life.</p>
                </div>
            </div>
        </div>
    </section>

    <section id="team" class="section-padding">
        <div class="container">
            <div class="leadership-intro">
                <h2>A Decade in the Trenches</h2>
                <p style="color: var(--text-muted);">Cornice Group is led by Wes Goldstein and Mark Watt. We are not an arranged marriage of capital allocators; we have worked side-by-side for over a decade, founding companies, navigating crises, and generating returns across the technology and industrial landscape.</p>
            </div>

            <div class="bio-grid">
                <div class="bio-card">
                    <h3>Wesley H. Goldstein</h3>
                    <span class="bio-title">Managing Partner</span>
                    <p>Wes is an operator and investor who specializes in bridging the gap between legacy infrastructure and modern technology. Prior to founding Cornice, Wes was a Founder and Managing General Partner of <strong>Kilonova Capital</strong>.</p>
                    <p>Previously, he was instrumental in launching <strong>Energy Impact Partners (EIP)</strong>, a $4B+ utility-backed investment platform. As an entrepreneur, Wes founded <strong>EnerNet Global</strong>, a microgrid development company, and co-founded <strong>Above Data</strong> with Mark.</p>
                </div>
                <div class="bio-card">
                    <h3>Mark J. Watt</h3>
                    <span class="bio-title">Managing Partner</span>
                    <p>Mark brings over 25 years of experience scaling deep-tech and industrial companies globally. Prior to founding Cornice, Mark was a Founder and Managing General Partner of <strong>Kilonova Capital</strong>.</p>
                    <p>His operating roots run deep: he served as Co-Founder and CFO of <strong>Firefly Aerospace (Nasdaq “FLY”)</strong>, scaling the company to 500+ employees and raising $250M+. He co-founded <strong>Above Data</strong> with Wes and has led multiple successful exits, raising over $50B in capital and working on over $250B in M&A.</p>
                </div>
            </div>
        </div>
    </section>

    <footer id="contact">
        <div class="container">
            <div class="footer-content">
                <div class="footer-brand">
                    <h4>CORNICE GROUP</h4>
                    <p style="opacity: 0.6;">Building the Industrial Future.</p>
                </div>
                <div class="footer-links">
                    <a href="/cdn-cgi/l/email-protection#2841464e47684b475a46414b4d4f5a475d58064b4745">Email Wes</a>
                    <a href="/cdn-cgi/l/email-protection#2841464e47684b475a46414b4d4f5a475d58064b4745">Email Mark</a>
                </div>
            </div>
            <div class="disclaimer">
                <p><strong>Legal Disclaimer:</strong> This website is for informational purposes only and does not constitute an offer to sell or a solicitation of an offer to buy any securities. Any such offer will be made only by means of a confidential private placement memorandum. Past performance is not indicative of future results. Investments involve risk, including the potential loss of principal.</p>
                <br>
                <p>&copy; 2026 Cornice Group. All Rights Reserved.</p>
            </div>
        </div>
    </footer>

<script data-cfasync="false" src="/cdn-cgi/scripts/5c5dd728/cloudflare-static/email-decode.min.js"></script></body>
</html>
