body {
    margin: 0;
    font-family: Arial, Helvetica, sans-serif;
    background: #f4f4f4;
    color: #111;
}

.company a {
    color: white;
    text-decoration: none;
}

.topbar {
    background: #111;
    color: white;
    padding: 12px 20px;
}

.topbar-inner {
    max-width: 1100px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.company {
    font-weight: bold;
    font-size: 18px;
}

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

.nav-link,
.dropbtn {
    color: white;
    text-decoration: none;
    background: transparent;
    border: none;
    padding: 10px 12px;
    font: inherit;
    font-size: 16px;
    cursor: pointer;
    border-radius: 6px;
}

.nav-link:hover,
.dropbtn:hover,
.nav-link.active,
.dropbtn.active {
    background: #222;
}

.nav-item {
    position: relative;
}

.nav-item::after {
    content: "";
    position: absolute;
    top: 100%;
    left: 0;
    width: max(100%, 220px);
    height: 8px;
    display: none;
}

.dropdown-menu {
    display: none;
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    min-width: 220px;
    background: #1b1b1b;
    border: 1px solid #2b2b2b;
    border-radius: 8px;
    overflow: hidden;
    z-index: 1000;
}

.dropdown-menu a {
    display: block;
    color: white;
    text-decoration: none;
    padding: 10px 14px;
}

.dropdown-menu a:hover,
.dropdown-menu a.active {
    background: #2a2a2a;
}

.nav-item:hover::after,
.nav-item:focus-within::after,
.nav-item.open::after {
    display: block;
}

.nav-item:hover .dropdown-menu,
.nav-item:focus-within .dropdown-menu,
.nav-item.open .dropdown-menu {
    display: block;
}

.content {
    padding: 40px 20px;
}

.page-shell {
    max-width: 1100px;
    margin: 0 auto;
}

.page-copy {
    max-width: 800px;
    margin: 0 auto;
    background: white;
    padding: 32px 28px;
    border: 1px solid #dddddd;
    line-height: 1.6;
}

.page-copy h1,
.hero-card h1,
.about-section h1,
.contact-section h1 {
    margin-top: 0;
}

.page-copy section + section {
    margin-top: 28px;
}

.video-wrapper {
    width: 100%;
    max-width: 1000px;
    margin: 20px auto;
}

.video-wrapper iframe {
    width: 100%;
    aspect-ratio: 16 / 9;
    border: none;
}

.hero-card {
    background: white;
    border: 1px solid #dddddd;
    padding: 32px 28px;
}

.eyebrow {
    margin: 0 0 8px;
    font-size: 13px;
    font-weight: bold;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: #555;
}

.product-section,
.about-section,
.contact-section {
    background: white;
    border: 1px solid #dddddd;
    padding: 28px;
    margin-top: 20px;
    line-height: 1.6;
}

.button-link {
    display: inline-block;
    background: #111;
    color: white;
    text-decoration: none;
    padding: 12px 16px;
    border-radius: 6px;
}

.button-link:hover {
    background: #222;
}

.inline-link {
    color: #0b57d0;
}

.inline-link:hover {
    text-decoration: none;
}

.contact-list {
    padding-left: 20px;
}

@media (max-width: 699px) {
    .topbar {
        padding: 12px 16px;
    }

    .topbar-inner {
        gap: 12px;
    }

    .nav {
        width: 100%;
        margin-left: 0;
        align-items: flex-start;
        flex-direction: column;
        gap: 4px;
    }

    .nav-item {
        width: 100%;
    }

    .nav-link,
    .dropbtn {
        width: 100%;
        text-align: left;
    }

    .dropdown-menu {
        position: static;
        min-width: 0;
        margin-top: 4px;
        border-radius: 6px;
    }

    .nav-item:hover::after,
    .nav-item:focus-within::after,
    .nav-item.open::after {
        display: none;
    }

    .nav-item:hover .dropdown-menu,
    .nav-item:focus-within .dropdown-menu {
        display: none;
    }

    .nav-item.open .dropdown-menu {
        display: block;
    }

    .page-copy,
    .hero-card,
    .product-section,
    .about-section,
    .contact-section {
        padding: 24px 20px;
    }
}
