:root {
    --ink: #0b1117;
    --panel: #ffffff;
    --paper: #f5f7f9;
    --line: #d8dee6;
    --muted: #5d6b7a;
    --text: #111827;
    --safety: #e09b24;
    --safety-dark: #9a5f00;
    --blue: #1f5f88;
    --teal: #0f766e;
    --red: #b42318;
}

* {
    box-sizing: border-box;
}

html {
    color-scheme: light;
}

body {
    margin: 0;
    background: var(--paper);
    color: var(--text);
    font-family: "IBM Plex Sans", ui-sans-serif, system-ui, sans-serif;
    letter-spacing: 0;
}

img {
    display: block;
    max-width: 100%;
}

a {
    color: inherit;
    text-decoration: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 20;
    display: grid;
    grid-template-columns: minmax(220px, 1fr) auto auto;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid rgba(216, 222, 230, 0.86);
    background: rgba(255, 255, 255, 0.94);
    padding: 14px 28px;
    backdrop-filter: blur(18px);
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

.brand-mark {
    display: grid;
    width: 94px;
    height: 42px;
    place-items: center;
    border: 1px solid var(--line);
    background: white;
}

.brand-mark img {
    width: 78px;
    height: auto;
}

.brand strong,
.site-footer strong {
    display: block;
    font-family: "Barlow", ui-sans-serif, system-ui, sans-serif;
    font-size: 1.2rem;
    font-weight: 900;
    line-height: 1;
}

.brand small {
    display: block;
    max-width: 360px;
    overflow: hidden;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 700;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 6px;
}

.site-nav a {
    border: 1px solid transparent;
    padding: 9px 11px;
    color: #263340;
    font-size: 0.9rem;
    font-weight: 800;
}

.site-nav a:hover {
    border-color: var(--line);
    background: #f8fafc;
}

.header-cta,
.button,
.catalog-form button,
.quote-form button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 42px;
    border: 1px solid transparent;
    padding: 11px 16px;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.header-cta,
.button.primary,
.catalog-form button,
.quote-form button {
    background: var(--ink);
    color: white;
}

.header-cta:hover,
.button.primary:hover,
.catalog-form button:hover,
.quote-form button:hover {
    background: #1d2935;
}

.button.secondary {
    border-color: rgba(255, 255, 255, 0.42);
    background: rgba(255, 255, 255, 0.11);
    color: white;
}

.button.secondary:hover {
    background: rgba(255, 255, 255, 0.18);
}

.hero-section {
    min-height: 520px;
    display: grid;
    align-items: center;
    background-color: var(--ink);
    background-position: center right;
    background-repeat: no-repeat;
    background-size: cover;
    color: white;
}

.hero-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 72px 0 86px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--safety);
    font-size: 0.76rem;
    font-weight: 900;
    text-transform: uppercase;
}

.hero-section h1,
.product-hero h1,
.error-page h1 {
    max-width: 760px;
    margin: 0;
    font-family: "Barlow", ui-sans-serif, system-ui, sans-serif;
    font-size: 4.4rem;
    font-weight: 900;
    line-height: 0.95;
}

.hero-section p {
    max-width: 660px;
    margin: 22px 0 0;
    color: #d9e1ea;
    font-size: 1.2rem;
    font-weight: 600;
    line-height: 1.6;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.section {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
    padding: 82px 0;
}

.section-heading {
    display: grid;
    grid-template-columns: minmax(280px, 0.7fr) minmax(320px, 1fr);
    gap: 44px;
    align-items: end;
    margin-bottom: 28px;
}

.section-heading h2,
.copy-section h2,
.catalog-tools h2,
.quote-panel h2,
.success-panel h2,
.product-detail-grid h2,
.cta-band h2,
.spec-panel h2 {
    margin: 0;
    font-family: "Barlow", ui-sans-serif, system-ui, sans-serif;
    font-size: 2.45rem;
    font-weight: 900;
    line-height: 1;
}

.section-heading p,
.copy-section p,
.quote-panel p,
.success-panel p,
.product-detail-grid p,
.cta-band p {
    margin: 0;
    color: var(--muted);
    font-size: 1rem;
    font-weight: 600;
    line-height: 1.7;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.product-card {
    display: grid;
    min-height: 100%;
    overflow: hidden;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 16px 40px rgba(11, 17, 23, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.product-card:hover {
    border-color: rgba(224, 155, 36, 0.72);
    box-shadow: 0 22px 46px rgba(11, 17, 23, 0.1);
    transform: translateY(-2px);
}

.product-card-image {
    display: grid;
    height: 220px;
    place-items: center;
    border-bottom: 1px solid var(--line);
    background: linear-gradient(135deg, #f8fafc, #e8edf3);
}

.product-card-image img {
    width: 88%;
    height: 88%;
    object-fit: contain;
}

.product-card-body {
    padding: 20px;
}

.product-card-body span {
    display: block;
    color: var(--blue);
    font-size: 0.72rem;
    font-weight: 900;
    text-transform: uppercase;
}

.product-card-body h3 {
    margin: 8px 0 6px;
    font-family: "Barlow", ui-sans-serif, system-ui, sans-serif;
    font-size: 1.55rem;
    font-weight: 900;
}

.product-card-body p {
    margin: 0;
    min-height: 48px;
    color: var(--muted);
    font-weight: 650;
    line-height: 1.5;
}

.product-card dl,
.spec-panel dl {
    display: grid;
    gap: 10px;
    margin: 18px 0 0;
}

.product-card dl div,
.spec-panel dl div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    border-top: 1px solid var(--line);
    padding-top: 10px;
}

dt {
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

dd {
    margin: 0;
    text-align: right;
    font-weight: 900;
}

.copy-grid {
    display: grid;
    grid-template-columns: minmax(280px, 0.75fr) minmax(320px, 1fr);
    gap: 60px;
    border-top: 2px solid var(--ink);
    padding-top: 34px;
}

.text-link {
    display: inline-flex;
    margin-top: 22px;
    color: var(--blue);
    font-weight: 900;
    text-transform: uppercase;
}

.cta-band {
    display: grid;
    width: min(1180px, calc(100% - 40px));
    grid-template-columns: minmax(320px, 1fr) auto;
    gap: 32px;
    align-items: center;
    margin: 38px auto 76px;
    border: 1px solid #263443;
    border-radius: 8px;
    background: var(--ink);
    color: white;
    padding: 38px;
}

.cta-band p {
    color: #cbd5df;
}

.catalog-tools {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) minmax(360px, 560px);
    gap: 28px;
    align-items: end;
    margin-bottom: 28px;
}

.catalog-form {
    display: grid;
    grid-template-columns: minmax(180px, 1fr) minmax(160px, 220px) auto;
    gap: 10px;
}

.catalog-form input,
.catalog-form select,
.quote-form input,
.quote-form textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    color: var(--text);
    font: inherit;
    font-weight: 650;
    outline: none;
    padding: 12px 13px;
}

.catalog-form input:focus,
.catalog-form select:focus,
.quote-form input:focus,
.quote-form textarea:focus {
    border-color: var(--safety);
    box-shadow: 0 0 0 4px rgba(224, 155, 36, 0.18);
}

.product-hero {
    display: grid;
    grid-template-columns: minmax(360px, 0.9fr) minmax(340px, 1fr);
    gap: 40px;
    align-items: center;
    min-height: 590px;
    background:
        linear-gradient(90deg, #091016, #172331);
    color: white;
    padding: 84px max(28px, calc((100% - 1180px) / 2));
}

.product-hero-copy p {
    max-width: 620px;
    color: #d6dee8;
    font-size: 1.15rem;
    font-weight: 650;
    line-height: 1.6;
}

.product-hero-image {
    display: grid;
    min-height: 390px;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.02));
}

.product-hero-image img {
    width: 90%;
    max-height: 430px;
    object-fit: contain;
}

.product-detail-grid {
    display: grid;
    grid-template-columns: minmax(360px, 1fr) 390px;
    gap: 42px;
    align-items: start;
}

.product-detail-grid h3 {
    margin: 34px 0 10px;
    font-family: "Barlow", ui-sans-serif, system-ui, sans-serif;
    font-size: 1.45rem;
}

.spec-panel,
.quote-panel,
.success-panel {
    border: 1px solid var(--line);
    border-radius: 8px;
    background: white;
    box-shadow: 0 16px 40px rgba(11, 17, 23, 0.06);
}

.spec-panel {
    padding: 26px;
}

.quote-panel {
    display: grid;
    grid-template-columns: minmax(280px, 0.8fr) minmax(340px, 1fr);
    gap: 42px;
    padding: 34px;
}

.contact-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 24px;
    color: var(--ink);
    font-weight: 900;
}

.quote-form {
    display: grid;
    gap: 16px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.quote-form label {
    display: grid;
    gap: 7px;
    color: var(--muted);
    font-size: 0.78rem;
    font-weight: 900;
    text-transform: uppercase;
}

.form-error {
    border: 1px solid rgba(180, 35, 24, 0.25);
    border-radius: 8px;
    background: #fff1f0;
    color: var(--red);
    font-weight: 900;
    padding: 12px;
}

.success-panel {
    padding: 34px;
}

.site-footer {
    display: grid;
    grid-template-columns: minmax(280px, 1fr) auto;
    gap: 28px;
    align-items: center;
    border-top: 1px solid #263443;
    background: var(--ink);
    color: white;
    padding: 34px max(28px, calc((100% - 1180px) / 2));
}

.site-footer p {
    margin: 8px 0 0;
    color: #cbd5df;
    font-weight: 650;
}

.footer-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: flex-end;
    color: #e7eef7;
    font-weight: 800;
}

.error-page {
    min-height: 560px;
}

@media (max-width: 980px) {
    .site-header {
        grid-template-columns: 1fr;
        gap: 12px;
    }

    .site-nav {
        flex-wrap: wrap;
    }

    .header-cta {
        width: fit-content;
    }

    .hero-section h1,
    .product-hero h1,
    .error-page h1 {
        font-size: 3.1rem;
    }

    .section-heading,
    .copy-grid,
    .catalog-tools,
    .product-hero,
    .product-detail-grid,
    .quote-panel,
    .site-footer,
    .cta-band {
        grid-template-columns: 1fr;
    }

    .product-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .catalog-form {
        grid-template-columns: 1fr;
    }

    .footer-actions {
        justify-content: flex-start;
    }
}

@media (max-width: 640px) {
    .site-header {
        padding: 14px 18px;
    }

    .brand small {
        white-space: normal;
    }

    .hero-section {
        min-height: 570px;
    }

    .hero-inner {
        width: min(100% - 28px, 1180px);
        padding: 72px 0 92px;
    }

    .hero-section h1,
    .product-hero h1,
    .error-page h1 {
        font-size: 2.45rem;
    }

    .section,
    .cta-band {
        width: min(100% - 28px, 1180px);
    }

    .section {
        padding: 58px 0;
    }

    .section-heading h2,
    .copy-section h2,
    .catalog-tools h2,
    .quote-panel h2,
    .success-panel h2,
    .product-detail-grid h2,
    .cta-band h2,
    .spec-panel h2 {
        font-size: 2rem;
    }

    .product-grid {
        grid-template-columns: 1fr;
    }

    .product-hero {
        padding: 58px 18px;
    }

    .form-grid {
        grid-template-columns: 1fr;
    }

    .quote-panel,
    .cta-band {
        padding: 22px;
    }
}

/* Cosen upgrade layer */
body {
    background:
        linear-gradient(180deg, #f7f8fa 0%, #eef2f5 44%, #f7f8fa 100%);
}

.top-rail {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    background: #05080b;
    color: #f6f7f8;
    padding: 9px max(20px, calc((100% - 1240px) / 2));
    font-size: 0.78rem;
    font-weight: 800;
    text-transform: uppercase;
}

.top-rail div {
    display: flex;
    flex-wrap: wrap;
    gap: 18px;
    align-items: center;
}

.top-rail span {
    color: #e09b24;
}

.top-rail a {
    color: #fff;
}

.site-header {
    grid-template-columns: minmax(260px, 1fr) auto auto;
    padding: 16px max(20px, calc((100% - 1240px) / 2));
    border-bottom: 1px solid rgba(11, 17, 23, 0.14);
    box-shadow: 0 14px 36px rgba(11, 17, 23, 0.08);
}

.brand-mark {
    width: 132px;
    height: 50px;
    border: 0;
    background: transparent;
}

.brand-mark img {
    width: 126px;
}

.brand strong {
    color: #e09b24;
    font-size: 0.74rem;
    letter-spacing: 0;
    text-transform: uppercase;
}

.brand small {
    max-width: 280px;
    color: #334155;
}

.site-nav a {
    border-radius: 999px;
    padding: 10px 13px;
    font-size: 0.82rem;
    text-transform: uppercase;
}

.nav-menu {
    position: relative;
}

.nav-parent {
    display: inline-flex;
    align-items: center;
}

.nav-dropdown {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    z-index: 30;
    width: 280px;
    transform: translate(-50%, 8px);
    border: 1px solid #d8dee7;
    border-radius: 8px;
    background: white;
    box-shadow: 0 24px 60px rgba(11, 17, 23, 0.18);
    opacity: 0;
    padding: 10px;
    pointer-events: none;
    transition: opacity 180ms ease, transform 180ms ease;
}

.nav-dropdown::before {
    content: "";
    position: absolute;
    inset: -18px 0 auto;
    height: 18px;
}

.nav-dropdown a {
    display: block;
    border-radius: 6px;
    padding: 12px 13px;
    color: #1d2733;
    font-size: 0.78rem;
    line-height: 1.25;
}

.nav-dropdown a:hover {
    background: #fff5e3;
    color: #9a5f00;
}

.nav-menu:hover .nav-dropdown,
.nav-menu:focus-within .nav-dropdown {
    transform: translate(-50%, 0);
    opacity: 1;
    pointer-events: auto;
}

.site-nav a:hover {
    border-color: rgba(224, 155, 36, 0.44);
    background: #fff7e8;
    color: #9a5f00;
}

.header-cta,
.button,
.catalog-form button,
.quote-form button {
    border-radius: 999px;
}

.hero-section {
    position: relative;
    min-height: 560px;
    display: block;
    overflow: hidden;
    background-position: center;
    background-size: cover;
}

.hero-slide-stack,
.hero-slide,
.hero-bg-stack,
.hero-bg,
.hero-overlay {
    position: absolute;
    inset: 0;
}

.hero-slide-stack {
    z-index: 0;
}

.hero-slide {
    overflow: hidden;
    background: #05080b;
    color: white;
    opacity: 0;
    pointer-events: none;
    transition: opacity 880ms ease;
}

.hero-slide::after {
    pointer-events: none;
}

.hero-slide.active {
    z-index: 1;
    opacity: 1;
    pointer-events: auto;
}

.hero-slide-bg,
.hero-slide-shade {
    position: absolute;
    inset: 0;
}

.hero-slide-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transform: scale(1.035);
    transition: transform 6200ms ease;
}

.hero-slide.active .hero-slide-bg {
    transform: scale(1);
}

.hero-slide-shade {
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(6, 10, 15, 0.94), rgba(8, 12, 16, 0.72) 43%, rgba(8, 12, 16, 0.18) 72%),
        linear-gradient(0deg, rgba(8, 12, 16, 0.46), rgba(8, 12, 16, 0.04) 48%);
}

.hero-slide-content {
    position: relative;
    z-index: 3;
    display: flex;
    width: min(1240px, calc(100% - 42px));
    min-height: 560px;
    flex-direction: column;
    justify-content: center;
    margin: 0 auto;
    padding: 68px 0 78px;
}

.hero-slide-content h1 {
    max-width: 680px;
    margin: 0;
}

.hero-slide-content > p:not(.eyebrow) {
    max-width: 680px;
}

.hero-foreground {
    position: absolute;
    right: max(8px, calc((100% - 1240px) / 2));
    bottom: 36px;
    z-index: 2;
    width: min(42vw, 560px);
    opacity: 0;
    transform: translateX(72px);
    filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.44));
    transition: opacity 700ms ease 180ms, transform 900ms ease 180ms;
}

.hero-slide.active .hero-foreground {
    opacity: 1;
    transform: translateX(0);
}

.pinnacle .hero-slide-bg {
    object-position: center 56%;
}

.pinnacle .hero-slide-shade {
    background:
        linear-gradient(100deg, rgba(6, 10, 15, 0.96), rgba(8, 12, 16, 0.78) 45%, rgba(8, 12, 16, 0.15) 74%),
        linear-gradient(0deg, rgba(8, 12, 16, 0.45), rgba(8, 12, 16, 0.05) 48%);
}

.pinnacle .hero-foreground {
    right: max(24px, calc((100% - 1240px) / 2));
    bottom: 14px;
    z-index: 3;
    width: min(45vw, 620px);
    transform: translate(72px, 18px);
}

.pinnacle.active .hero-foreground {
    transform: translate(0, 0);
}

.pinnacle::after {
    content: "";
    position: absolute;
    right: max(34px, calc((100% - 1240px) / 2));
    bottom: 30px;
    z-index: 2;
    width: min(43vw, 610px);
    height: 58px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.58), rgba(0, 0, 0, 0.24) 46%, transparent 72%);
    filter: blur(4px);
}

.hero-art {
    display: block;
    width: min(720px, 70vw);
    max-height: 330px;
    object-fit: contain;
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 650ms ease 160ms, transform 760ms ease 160ms;
}

.hero-slide.active .hero-art {
    opacity: 1;
    transform: translateY(0);
}

.copy-center .hero-slide-content,
.anniversary .hero-slide-content,
.power .hero-slide-content,
.youtube .hero-slide-content {
    align-items: center;
    text-align: center;
}

.power .hero-slide-shade {
    background:
        linear-gradient(90deg, rgba(5, 8, 11, 0.62), rgba(5, 8, 11, 0.2) 50%, rgba(5, 8, 11, 0.56)),
        linear-gradient(0deg, rgba(5, 8, 11, 0.35), rgba(5, 8, 11, 0.08));
}

.anniversary .hero-slide-shade {
    background:
        linear-gradient(90deg, rgba(6, 5, 2, 0.72), rgba(64, 40, 3, 0.18) 48%, rgba(8, 6, 2, 0.58)),
        linear-gradient(0deg, rgba(7, 5, 1, 0.34), rgba(7, 5, 1, 0.06));
}

.anniversary .hero-slide-bg {
    filter: saturate(1.15) contrast(1.08) brightness(0.9);
}

.anniversary .hero-actions {
    display: none;
}

.youtube .hero-slide-shade {
    background:
        linear-gradient(90deg, rgba(5, 8, 11, 0.98), rgba(5, 8, 11, 0.92) 35%, rgba(54, 29, 8, 0.76) 62%, rgba(155, 83, 18, 0.34)),
        linear-gradient(0deg, rgba(5, 8, 11, 0.26), rgba(5, 8, 11, 0.02));
}

.youtube .hero-slide-bg {
    opacity: 0.44;
    object-position: center;
    filter: grayscale(0.18) contrast(1.18) brightness(0.88);
}

.youtube .hero-slide-content {
    align-items: flex-start;
    text-align: left;
}

.youtube .hero-slide-content h1 {
    font-size: 6.7rem;
    line-height: 0.76;
}

.youtube .hero-slide-content > p:not(.eyebrow) {
    max-width: 620px;
    font-size: 1.28rem;
}

.youtube .hero-foreground {
    right: max(-155px, calc((100% - 1520px) / 2));
    bottom: -58px;
    z-index: 3;
    width: min(62vw, 980px);
    filter: drop-shadow(0 38px 44px rgba(0, 0, 0, 0.62));
}

.youtube::after {
    content: "";
    position: absolute;
    right: max(-125px, calc((100% - 1480px) / 2));
    bottom: 20px;
    z-index: 2;
    width: min(58vw, 900px);
    height: 62px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.62), rgba(0, 0, 0, 0.25) 48%, transparent 76%);
    filter: blur(5px);
}

.anniversary-mark {
    width: min(800px, 86vw);
    color: white;
    text-transform: uppercase;
    text-shadow: 0 18px 34px rgba(0, 0, 0, 0.42);
}

.anniversary-number {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
}

.anniversary-five {
    font-family: "Barlow", ui-sans-serif, system-ui, sans-serif;
    font-size: 12.8rem;
    font-weight: 900;
    line-height: 0.78;
    transform: skew(-5deg);
}

.anniversary-zero {
    position: relative;
    display: grid;
    width: 0.82em;
    height: 0.82em;
    place-items: center;
    border: 0.12em solid #fff;
    border-radius: 50%;
    box-sizing: border-box;
    font-size: 12.8rem;
    line-height: 1;
    filter: drop-shadow(0 18px 28px rgba(0, 0, 0, 0.3));
}

.anniversary-zero::after {
    content: "";
    position: absolute;
    inset: 16%;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.5);
}

.anniversary-logo {
    position: relative;
    z-index: 1;
    width: 58%;
}

.anniversary-logo img {
    width: 100%;
    filter: brightness(0) invert(1);
}

.anniversary-mark small {
    display: block;
    margin-top: 16px;
    font-size: 2.6rem;
    font-weight: 650;
    letter-spacing: 0;
}

.hero-bg-stack {
    z-index: 0;
}

.hero-bg {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0;
    transform: scale(1.02);
    transition: opacity 900ms ease, transform 6200ms ease;
}

.hero-bg.active {
    opacity: 1;
    transform: scale(1);
}

.hero-overlay {
    z-index: 1;
    background:
        linear-gradient(100deg, rgba(6, 10, 15, 0.94), rgba(8, 12, 16, 0.76) 43%, rgba(8, 12, 16, 0.22) 72%),
        linear-gradient(0deg, rgba(8, 12, 16, 0.52), rgba(8, 12, 16, 0.1) 48%);
}

.hero-section::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    z-index: 4;
    height: 7px;
    background: linear-gradient(90deg, #e09b24, #b42318, #1f5f88);
}

.hero-inner {
    position: relative;
    z-index: 3;
    width: min(1240px, calc(100% - 42px));
    padding: 68px 0 78px;
}

.hero-section h1 {
    max-width: 660px;
    font-size: 4.35rem;
    text-transform: uppercase;
}

.hero-section p {
    max-width: 660px;
    font-size: 1.07rem;
}

.hero-machine {
    position: absolute;
    right: max(10px, calc((100% - 1240px) / 2));
    bottom: 34px;
    z-index: 2;
    width: min(40vw, 540px);
    filter: drop-shadow(0 34px 46px rgba(0, 0, 0, 0.42));
}

.hero-machine img {
    width: 100%;
}

.stats-band {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    width: min(1240px, calc(100% - 42px));
    margin: -48px auto 0;
    position: relative;
    z-index: 4;
    overflow: hidden;
    border: 1px solid rgba(11, 17, 23, 0.12);
    border-radius: 8px;
    background: #fff;
    box-shadow: 0 28px 60px rgba(11, 17, 23, 0.16);
}

.stats-band div {
    min-height: 126px;
    border-right: 1px solid #e3e8ee;
    padding: 22px;
}

.stats-band div:last-child {
    border-right: 0;
}

.stats-band strong {
    display: block;
    font-family: "Barlow", ui-sans-serif, system-ui, sans-serif;
    font-size: 2.75rem;
    font-weight: 900;
    line-height: 0.9;
}

.stats-band span {
    display: block;
    margin-top: 10px;
    color: #5d6b7a;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.feature-grid-section {
    padding-top: 92px;
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.feature-card {
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border: 1px solid #d8dee6;
    border-radius: 8px;
    background: #fff;
    padding: 18px;
    box-shadow: 0 18px 44px rgba(11, 17, 23, 0.06);
    transition: transform 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.feature-card:hover {
    border-color: rgba(224, 155, 36, 0.76);
    box-shadow: 0 24px 54px rgba(11, 17, 23, 0.12);
    transform: translateY(-3px);
}

.feature-card img {
    width: 100%;
    height: 128px;
    object-fit: contain;
}

.feature-card span {
    margin-top: 18px;
    font-family: "Barlow", ui-sans-serif, system-ui, sans-serif;
    font-size: 1.35rem;
    font-weight: 900;
    line-height: 1;
}

.feature-card p {
    margin: 10px 0 0;
    color: #5d6b7a;
    font-size: 0.94rem;
    font-weight: 650;
    line-height: 1.5;
}

.feature-grid-section.solutions .feature-card {
    min-height: 190px;
    background:
        linear-gradient(135deg, #111827, #1f2937);
    color: #fff;
}

.feature-grid-section.solutions .feature-card p {
    color: #d8dee6;
}

.copy-grid.has-image {
    grid-template-columns: minmax(260px, 0.7fr) minmax(320px, 1fr) minmax(280px, 0.8fr);
    align-items: center;
}

.copy-grid figure {
    margin: 0;
    overflow: hidden;
    border-radius: 8px;
    border: 1px solid #d8dee6;
    background: #fff;
}

.copy-grid figure img {
    width: 100%;
    height: 260px;
    object-fit: cover;
}

.dark-machine-wall {
    width: 100%;
    max-width: none;
    background:
        linear-gradient(135deg, #070b10 0%, #111827 54%, #1a222e 100%);
    color: #fff;
    padding-left: max(20px, calc((100% - 1240px) / 2));
    padding-right: max(20px, calc((100% - 1240px) / 2));
}

.dark-machine-wall .section-heading {
    width: 100%;
}

.dark-machine-wall h2 {
    color: #fff;
}

.dark-machine-wall .section-heading p {
    color: #cbd5df;
}

.dark-machine-wall .product-card {
    border-color: rgba(255, 255, 255, 0.14);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    box-shadow: none;
}

.dark-machine-wall .product-card-image {
    border-color: rgba(255, 255, 255, 0.1);
    background:
        linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(255, 255, 255, 0.02));
}

.dark-machine-wall .product-card-body span {
    color: #e09b24;
}

.dark-machine-wall .product-card-body p,
.dark-machine-wall dt {
    color: #cbd5df;
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 14px;
}

.logo-grid .feature-card {
    min-height: 150px;
    align-items: center;
    justify-content: center;
}

.logo-grid .feature-card img {
    height: 72px;
    object-fit: contain;
    filter: grayscale(1);
}

.logo-grid .feature-card span,
.logo-grid .feature-card p {
    display: none;
}

.product-hero {
    background: linear-gradient(90deg, #05080b, #131c27);
}

.spec-panel {
    border-top: 5px solid #e09b24;
}

.site-footer {
    border-top: 6px solid #e09b24;
}

.custom-html {
    width: 100%;
    max-width: none;
    padding: 0;
}

.selector-embed-shell {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    align-items: stretch;
    background: linear-gradient(135deg, #070b10 0%, #111827 56%, #182434 100%);
    color: white;
    padding: 46px max(20px, calc((100% - 1500px) / 2)) 58px;
}

.selector-embed-copy {
    display: flex;
    max-width: 1120px;
    min-height: 0;
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 18px 36px;
    padding: 0;
}

.selector-embed-copy h2 {
    margin: 0;
    font-family: "Barlow", ui-sans-serif, system-ui, sans-serif;
    font-size: 2.55rem;
    font-weight: 900;
    line-height: 1;
    text-transform: uppercase;
}

.selector-embed-copy p:not(.eyebrow) {
    max-width: 660px;
    margin: 0;
    color: #cbd5df;
    font-size: 1rem;
    font-weight: 650;
    line-height: 1.7;
}

.selector-embed-copy a {
    width: fit-content;
    align-self: flex-end;
    margin-top: 0;
    border-radius: 999px;
    background: #e09b24;
    color: #111827;
    padding: 13px 18px;
    font-size: 0.82rem;
    font-weight: 900;
    text-transform: uppercase;
}

.selector-embed-copy a:hover {
    background: #f4b64f;
}

.selector-embed-frame {
    width: 100%;
    min-height: 1040px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 8px;
    background: #0b1118;
    box-shadow: 0 34px 74px rgba(0, 0, 0, 0.34);
}

.selector-embed-frame iframe {
    display: block;
    width: 100%;
    height: 1120px;
    border: 0;
    background: #0b1118;
}

@media (max-width: 1080px) {
    .site-header {
        grid-template-columns: 1fr;
    }

    .site-nav {
        justify-content: flex-start;
    }

    .nav-dropdown {
        left: 0;
        transform: translateY(8px);
    }

    .nav-menu:hover .nav-dropdown,
    .nav-menu:focus-within .nav-dropdown {
        transform: translateY(0);
    }

    .stats-band,
    .feature-grid,
    .logo-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .hero-machine {
        opacity: 0.34;
        right: -120px;
        width: 650px;
    }

    .hero-foreground {
        right: -110px;
        width: 620px;
    }

    .pinnacle .hero-foreground {
        right: -76px;
        bottom: 10px;
        width: 620px;
    }

    .pinnacle::after {
        right: -50px;
        width: 620px;
    }

    .youtube .hero-foreground {
        right: -260px;
        bottom: -42px;
        width: 760px;
    }

    .youtube::after {
        right: -230px;
        width: 760px;
    }

    .anniversary-five,
    .anniversary-zero {
        font-size: 10rem;
    }

    .anniversary-mark small {
        font-size: 2rem;
    }

    .copy-grid.has-image {
        grid-template-columns: 1fr;
    }

    .selector-embed-shell {
        grid-template-columns: 1fr;
    }

    .selector-embed-copy {
        min-height: 0;
    }
}

@media (max-width: 640px) {
    .top-rail {
        display: none;
    }

    .hero-section {
        min-height: 500px;
    }

    .hero-slide-content {
        width: min(100% - 28px, 1180px);
        min-height: 500px;
        padding: 62px 0 76px;
    }

    .hero-slide-content h1 {
        font-size: 2.45rem;
    }

    .hero-machine {
        right: -170px;
        bottom: 36px;
        width: 560px;
    }

    .hero-foreground {
        right: -190px;
        bottom: 26px;
        width: 560px;
    }

    .hero-slide.active .hero-foreground {
        opacity: 0.32;
    }

    .pinnacle .hero-foreground {
        right: -260px;
        bottom: 20px;
        width: 570px;
    }

    .pinnacle::after {
        right: -245px;
        bottom: 34px;
        width: 560px;
    }

    .hero-art {
        width: min(92vw, 560px);
    }

    .youtube .hero-slide-content h1 {
        font-size: 3.3rem;
    }

    .youtube .hero-foreground {
        right: -330px;
        bottom: -28px;
        width: 680px;
    }

    .anniversary-five,
    .anniversary-zero {
        font-size: 6.8rem;
    }

    .anniversary-mark small {
        font-size: 1.55rem;
    }

    .stats-band,
    .feature-grid,
    .logo-grid {
        grid-template-columns: 1fr;
    }

    .stats-band {
        margin-top: 0;
        width: 100%;
        border-left: 0;
        border-right: 0;
        border-radius: 0;
    }

    .stats-band div {
        min-height: 96px;
        border-right: 0;
        border-bottom: 1px solid #e3e8ee;
    }

    .selector-embed-shell {
        padding: 28px 14px;
    }

    .selector-embed-copy {
        display: block;
        padding: 0;
    }

    .selector-embed-copy h2 {
        font-size: 2rem;
    }

    .selector-embed-copy p:not(.eyebrow) {
        margin-top: 16px;
    }

    .selector-embed-copy a {
        margin-top: 18px;
    }

    .selector-embed-frame {
        min-height: 980px;
    }

    .selector-embed-frame iframe {
        height: 1100px;
    }
}
