:root {
    --bg: #ffffff;
    --surface: #f6f8fb;
    --surface-strong: #eef2f7;
    --text: #14213d;
    --muted: #5d6b82;
    --border: #dfe5ec;
    --accent: #1f57d6;
    --accent-dark: #1745ab;
    --success-bg: #edf8f0;
    --success-text: #166534;
    --error-bg: #fff1f2;
    --error-text: #9f1239;
    --shadow: 0 22px 60px rgba(20, 33, 61, 0.12);
    --radius-lg: 24px;
    --radius-md: 16px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    background: var(--bg);
    color: var(--text);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

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

a {
    color: inherit;
}

button,
input,
select {
    font: inherit;
}

.container {
    width: min(calc(100% - 32px), var(--container));
    margin-inline: auto;
}

.skip-link {
    position: fixed;
    z-index: 999;
    top: 8px;
    left: 8px;
    transform: translateY(-150%);
    padding: 10px 14px;
    background: var(--text);
    color: #fff;
    border-radius: 8px;
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    z-index: 100;
    top: 0;
    border-bottom: 1px solid rgba(223, 229, 236, 0.9);
    background: rgba(255, 255, 255, 0.94);
    backdrop-filter: blur(16px);
}

.header-inner {
    min-height: 72px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 800;
    text-decoration: none;
}

.brand-mark {
    width: 36px;
    height: 36px;
    display: grid;
    place-items: center;
    border-radius: 10px;
    background: var(--text);
    color: #fff;
}

.primary-nav {
    display: none;
    position: absolute;
    top: 72px;
    left: 0;
    right: 0;
    padding: 20px 16px 24px;
    background: #fff;
    border-bottom: 1px solid var(--border);
}

.primary-nav.is-open {
    display: grid;
    gap: 14px;
}

.primary-nav a {
    text-decoration: none;
    font-weight: 700;
}

.nav-toggle {
    min-height: 44px;
    padding: 8px 14px;
    border: 1px solid var(--border);
    background: #fff;
    color: var(--text);
    border-radius: 10px;
    cursor: pointer;
}

.button {
    display: inline-flex;
    min-height: 48px;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 20px;
    border: 1px solid transparent;
    border-radius: 12px;
    font-weight: 800;
    text-decoration: none;
    cursor: pointer;
}

.button-primary {
    background: var(--accent);
    color: #fff;
}

.button-primary:hover,
.button-primary:focus-visible {
    background: var(--accent-dark);
}

.button-secondary {
    border-color: var(--border);
    background: #fff;
    color: var(--text);
}

.button-small {
    min-height: 40px;
    padding: 8px 14px;
}

.button-full {
    width: 100%;
}

.hero {
    padding: 56px 0 48px;
    overflow: hidden;
}

.hero-grid {
    display: grid;
    gap: 40px;
    align-items: center;
}

.eyebrow {
    display: inline-block;
    margin-bottom: 12px;
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero h1,
.section-heading h2,
.value-grid h2,
.cta-copy h2 {
    margin: 0;
    letter-spacing: -0.04em;
    line-height: 1.08;
}

.hero h1 {
    max-width: 760px;
    font-size: clamp(2.4rem, 8vw, 4.7rem);
}

.hero-lead {
    max-width: 720px;
    margin: 22px 0 0;
    color: var(--muted);
    font-size: clamp(1.05rem, 2vw, 1.25rem);
}

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

.trust-line {
    margin-top: 22px;
    color: var(--muted);
    font-size: 0.95rem;
}

.hero-media {
    position: relative;
}

.media-frame {
    width: 100%;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow);
    object-fit: cover;
    background: var(--surface);
}

.media-placeholder {
    min-height: 260px;
    display: grid;
    place-items: center;
    align-content: center;
    gap: 6px;
    padding: 24px;
    text-align: center;
    color: var(--muted);
    background:
        linear-gradient(135deg, rgba(31, 87, 214, 0.05), rgba(20, 33, 61, 0.03)),
        var(--surface);
}

.media-placeholder span {
    color: var(--text);
    font-size: 1.05rem;
    font-weight: 800;
}

.media-placeholder small {
    overflow-wrap: anywhere;
}

.section {
    padding: 72px 0;
}

.section-muted {
    background: var(--surface);
}

.section-heading {
    max-width: 760px;
    margin-bottom: 34px;
}

.section-heading h2,
.value-grid h2,
.cta-copy h2 {
    font-size: clamp(2rem, 5vw, 3.25rem);
}

.section-heading p,
.value-grid p,
.cta-copy p {
    color: var(--muted);
    font-size: 1.05rem;
}

.product-grid,
.showcase-grid {
    display: grid;
    gap: 20px;
}

.product-card {
    padding: 26px;
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: 0 12px 36px rgba(20, 33, 61, 0.06);
}

.product-card h3 {
    margin: 18px 0 10px;
    font-size: 1.45rem;
}

.product-card p {
    color: var(--muted);
}

.product-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border-radius: 16px;
    background: var(--surface-strong);
    color: var(--accent);
    font-size: 0.82rem;
    font-weight: 900;
}

.feature-list {
    margin: 20px 0;
    padding-left: 20px;
    color: var(--muted);
}

.text-link {
    color: var(--accent);
    font-weight: 800;
    text-decoration: none;
}

.value-grid {
    display: grid;
    gap: 34px;
}

.value-list {
    display: grid;
    gap: 14px;
}

.value-list article {
    display: grid;
    gap: 5px;
    padding: 20px;
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    background: #fff;
}

.value-list strong {
    font-size: 1.05rem;
}

.value-list span {
    color: var(--muted);
}

.showcase-grid {
    align-items: start;
}

.cta-section {
    padding: 72px 0;
    background: var(--text);
    color: #fff;
}

.cta-grid {
    display: grid;
    gap: 32px;
    align-items: start;
}

.cta-copy .eyebrow {
    color: #a9c3ff;
}

.cta-copy p {
    color: #cbd5e1;
}

.cta-form {
    display: grid;
    gap: 16px;
    padding: 22px;
    border-radius: var(--radius-lg);
    background: #fff;
    color: var(--text);
}

.form-field {
    display: grid;
    gap: 7px;
}

.form-field label {
    font-weight: 800;
}

.form-field input,
.form-field select {
    width: 100%;
    min-height: 48px;
    padding: 10px 12px;
    border: 1px solid var(--border);
    border-radius: 10px;
    background: #fff;
    color: var(--text);
}

.form-field input:focus,
.form-field select:focus {
    outline: 3px solid rgba(31, 87, 214, 0.16);
    border-color: var(--accent);
}

.form-note {
    margin: 0;
    color: var(--muted);
    font-size: 0.84rem;
}

.form-message-wrap {
    padding-top: 24px;
}

.form-message {
    padding: 14px 16px;
    border-radius: 12px;
    font-weight: 700;
}

.form-message.success {
    background: var(--success-bg);
    color: var(--success-text);
}

.form-message.error {
    background: var(--error-bg);
    color: var(--error-text);
}

.site-footer {
    padding: 52px 0 20px;
    background: #0f172a;
    color: #dbe3ef;
}

.footer-grid {
    display: grid;
    gap: 28px;
}

.footer-grid > div {
    display: grid;
    align-content: start;
    gap: 10px;
}

.footer-grid a {
    color: #dbe3ef;
    text-decoration: none;
}

.footer-brand {
    color: #fff;
}

.footer-heading {
    margin: 0 0 4px;
    color: #fff;
    font-size: 1rem;
}

.footer-bottom {
    margin-top: 36px;
    padding-top: 18px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    color: #94a3b8;
    font-size: 0.9rem;
}

@media (min-width: 700px) {
    .product-grid,
    .showcase-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

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

    .cta-form .button-full,
    .cta-form .form-note {
        grid-column: 1 / -1;
    }

    .footer-grid {
        grid-template-columns: 2fr 1fr 1fr;
    }
}

@media (min-width: 900px) {
    .nav-toggle {
        display: none;
    }

    .primary-nav {
        position: static;
        display: flex;
        align-items: center;
        gap: 24px;
        padding: 0;
        border: 0;
        background: transparent;
    }

    .hero {
        padding: 84px 0 72px;
    }

    .hero-grid {
        grid-template-columns: minmax(0, 1.05fr) minmax(420px, 0.95fr);
        gap: 56px;
    }

    .value-grid,
    .cta-grid {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        gap: 64px;
    }

    .section {
        padding: 96px 0;
    }

    .cta-section {
        padding: 90px 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    *,
    *::before,
    *::after {
        transition-duration: 0.01ms !important;
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
    }
}
/* =========================================================
   MAEVERICK HOMEPAGE HERO + DEMO FORM OVERLAY
   ========================================================= */

.homepage-hero {
    width: 100%;
    margin: 0;
    padding: 0;
    background: #fff;
}

.homepage-hero-stage {
    position: relative;
    width: min(calc(100% - 32px), 1440px);
    aspect-ratio: 16 / 9;
    margin-inline: auto;
    overflow: hidden;
    background:
        #000
        url("/assets/images/home/maeverick-hero1.jpg")
        center center / cover
        no-repeat;
}

.homepage-hero-demo-trigger {
    position: absolute;
    z-index: 4;
    right: clamp(18px, 2.4vw, 34px);
    top: 50%;
    display: inline-flex;
    min-height: 48px;
    transform: translateY(-50%);
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
    transition:
        opacity 220ms ease,
        visibility 220ms ease,
        transform 220ms ease;
}

.hero-demo-overlay {
    position: absolute;
    z-index: 5;
    top: 50%;
    right: clamp(18px, 2.4vw, 34px);
    width: min(420px, 34%);
    max-height: calc(100% - 36px);
    overflow: visible;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(18px, -50%);
    transition:
        opacity 260ms ease,
        visibility 260ms ease,
        transform 320ms cubic-bezier(0.22, 1, 0.36, 1);
}

.homepage-hero-stage.is-demo-open .homepage-hero-demo-trigger {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transform: translate(12px, -50%);
}

.homepage-hero-stage.is-demo-open .hero-demo-overlay {
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: translate(0, -50%);
}

.hero-demo-card {
    width: 100%;
    max-height: inherit;
    overflow-y: auto;
    padding: clamp(18px, 1.8vw, 26px);
    border: 1px solid rgba(255, 255, 255, 0.58);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.80);
    box-shadow: 0 24px 70px rgba(0, 0, 0, 0.28);
    color: var(--text);
    -webkit-backdrop-filter: blur(8px);
    backdrop-filter: blur(8px);
}

.hero-demo-card .cta-copy {
    margin-bottom: 16px;
}

.hero-demo-card .cta-copy .eyebrow {
    margin-bottom: 8px;
}

.hero-demo-card .cta-copy h2 {
    font-size: clamp(1.45rem, 2vw, 2rem);
    line-height: 1.08;
}

.hero-demo-card .cta-copy p {
    margin: 8px 0 0;
    color: #334155;
    font-size: 0.92rem;
    line-height: 1.45;
}

.hero-demo-card .cta-form {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
    padding: 0;
    background: transparent;
}

.hero-demo-card .cta-form .button-full,
.hero-demo-card .cta-form .form-note,
.hero-demo-card .form-field-full {
    grid-column: 1 / -1;
}

.hero-demo-card .form-field {
    gap: 5px;
}

.hero-demo-card .form-field label {
    font-size: 0.82rem;
}

.hero-demo-card .form-field input,
.hero-demo-card .form-field select {
    min-height: 44px;
    padding: 8px 10px;
    background: rgba(255, 255, 255, 0.90);
}

.hero-demo-card .form-message {
    margin-bottom: 14px;
}

.hero-demo-card .button {
    min-height: 44px;
}

.hero-demo-card .form-note {
    font-size: 0.76rem;
}

.hero-demo-back {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    min-height: 40px;
    margin: 0 0 12px;
    padding: 7px 10px;
    border: 1px solid rgba(20, 33, 61, 0.18);
    border-radius: 10px;
    background: rgba(255, 255, 255, 0.72);
    color: var(--text);
    font: inherit;
    font-size: 0.86rem;
    font-weight: 800;
    cursor: pointer;
}
@media (min-width: 1441px) {
    .homepage-hero-stage {
        width: min(calc(100vw - 48px), 1440px);
    }
}

@media (min-width: 700px) and (max-width: 1100px) {
    .hero-demo-overlay {
        width: min(390px, 42%);
        top: 50%;
        right: 18px;
        max-height: calc(100% - 36px);
    }

    .homepage-hero-demo-trigger {
        right: 18px;
    }

    .hero-demo-card {
        padding: 16px;
        border-radius: 18px;
    }

    .hero-demo-card .cta-copy h2 {
        font-size: 1.35rem;
    }

    .hero-demo-card .cta-copy p {
        font-size: 0.84rem;
    }

    .hero-demo-card .form-field label {
        font-size: 0.76rem;
    }

    .hero-demo-card .form-field input,
    .hero-demo-card .form-field select {
        min-height: 40px;
    }
}

@media (max-width: 699px) {
    .homepage-hero {
        background: #000;
    }

    .homepage-hero-stage {
        width: 100%;
        aspect-ratio: 9 / 16;
        margin-inline: 0;
        background: #000;
        isolation: isolate;
    }

    .homepage-hero-stage::before {
        content: "";
        position: absolute;
        inset: 0;
        z-index: 1;
        background: inherit;
        background-image: url("/assets/images/home/maeverick-hero-mobile.jpg");
        background-position: center;
        background-size: cover;
        background-repeat: no-repeat;
        transform: translateX(0);
        transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
    }

    .homepage-hero-demo-trigger {
        position: absolute;
        z-index: 3;
        top: auto;
        right: 18px;
        bottom: 22px;
        display: inline-flex;
        min-height: 46px;
        transform: none;
        box-shadow: 0 12px 28px rgba(0, 0, 0, 0.32);
    }

    .hero-demo-overlay {
        position: absolute;
        z-index: 4;
        inset: 0;
        width: 100%;
        max-height: none;
        padding: 16px;
        display: flex;
        align-items: center;
        opacity: 1;
        visibility: visible;
        transform: translateX(100%);
        transition: transform 420ms cubic-bezier(0.22, 1, 0.36, 1);
        will-change: transform;
        pointer-events: none;
    }

    .hero-demo-card {
        width: 100%;
        max-height: calc(100% - 32px);
        padding: 18px;
        border-radius: 20px;
        background: rgba(255, 255, 255, 0.86);
        -webkit-backdrop-filter: blur(8px);
        backdrop-filter: blur(8px);
        pointer-events: auto;
    }

    .hero-demo-card .cta-form {
        grid-template-columns: 1fr;
        gap: 11px;
    }

    .hero-demo-card .cta-form .button-full,
    .hero-demo-card .cta-form .form-note,
    .hero-demo-card .form-field-full {
        grid-column: 1;
    }

    .hero-demo-card .cta-copy h2 {
        font-size: clamp(1.45rem, 6vw, 1.9rem);
    }

    .hero-demo-card .cta-copy p {
        font-size: 0.9rem;
    }

    .hero-demo-back {
        display: inline-flex;
        align-items: center;
        gap: 7px;
        min-height: 40px;
        margin: 0 0 12px;
        padding: 7px 10px;
        border: 1px solid rgba(20, 33, 61, 0.18);
        border-radius: 10px;
        background: rgba(255, 255, 255, 0.72);
        color: var(--text);
        font: inherit;
        font-size: 0.86rem;
        font-weight: 800;
        cursor: pointer;
    }

    .homepage-hero-stage.is-demo-open::before {
        transform: translateX(-100%);
    }

    .homepage-hero-stage.is-demo-open .homepage-hero-demo-trigger {
        opacity: 0;
        visibility: hidden;
        pointer-events: none;
        transform: none;
    }

    .homepage-hero-stage.is-demo-open .hero-demo-overlay {
        opacity: 1;
        visibility: visible;
        transform: translateX(0);
        pointer-events: auto;
    }
}

@media (prefers-reduced-motion: reduce) {
    .homepage-hero-stage::before,
    .hero-demo-overlay {
        transition: none;
    }
}

/* =========================================================
   ACCESSIBILITY
   ========================================================= */

.visually-hidden {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    clip-path: inset(50%) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* =========================================================
   MAEVERICK BLACK + GOLD HOMEPAGE THEME
   ========================================================= */

:root {
    --bg: #050505;
    --surface: #0b0b0b;
    --surface-strong: #121212;
    --text: #f7f4ec;
    --muted: #c8c1b3;
    --border: rgba(214, 165, 50, 0.32);
    --accent: #d6a532;
    --accent-dark: #b78416;
    --maeverick-gold: #d6a532;
    --maeverick-gold-light: #f2c75c;
    --maeverick-black: #050505;
    --maeverick-charcoal: #101010;
    --shadow: 0 24px 64px rgba(0, 0, 0, 0.38);
}

html,
body {
    background: var(--maeverick-black);
}

body {
    color: var(--text);
}

main {
    display: block;
    background: var(--maeverick-black);
}

.site-header {
    border-bottom-color: rgba(214, 165, 50, 0.28);
    background: rgba(5, 5, 5, 0.94);
    color: var(--text);
}

.brand {
    color: var(--maeverick-gold-light);
}

.brand-logo {
    width: 40px;
    height: 40px;
    display: block;
    flex: 0 0 auto;
    object-fit: contain;
}

.primary-nav {
    background: #080808;
    border-bottom-color: rgba(214, 165, 50, 0.24);
}

.primary-nav a {
    color: #f4efe3;
}

.primary-nav a:hover,
.primary-nav a:focus-visible,
.text-link:hover,
.text-link:focus-visible {
    color: var(--maeverick-gold-light);
}

.nav-toggle {
    border-color: rgba(214, 165, 50, 0.4);
    background: #0d0d0d;
    color: var(--maeverick-gold-light);
}

.button-primary {
    border-color: #e2b540;
    background: linear-gradient(135deg, #f0c75e 0%, #c88e16 100%);
    color: #080808;
    box-shadow: 0 10px 28px rgba(214, 165, 50, 0.18);
}

.button-primary:hover,
.button-primary:focus-visible {
    background: linear-gradient(135deg, #f6d477 0%, #d6a532 100%);
    color: #050505;
}

.button-secondary {
    border-color: rgba(214, 165, 50, 0.4);
    background: #111;
    color: var(--text);
}

.homepage-hero {
    background: var(--maeverick-black);
}

.section,
.section-muted,
.showcase,
.cta-section {
    margin: 0;
    background: var(--maeverick-black);
    color: var(--text);
}

.section-muted {
    background: var(--maeverick-charcoal);
}

.section + .section {
    border-top: 1px solid rgba(214, 165, 50, 0.08);
}

.eyebrow {
    color: var(--maeverick-gold);
}

.section-heading h2,
.value-grid h2,
.cta-copy h2 {
    color: #fffaf0;
}

.section-heading p,
.value-grid p,
.cta-copy p,
.product-card p,
.value-list span,
.feature-list,
.form-note {
    color: var(--muted);
}

.product-card,
.value-list article {
    border-color: rgba(214, 165, 50, 0.28);
    background:
        linear-gradient(
            145deg,
            rgba(255, 255, 255, 0.025),
            rgba(214, 165, 50, 0.025)
        ),
        #0b0b0b;
    box-shadow: 0 18px 42px rgba(0, 0, 0, 0.24);
}

.product-card {
    position: relative;
    overflow: hidden;
}

.product-card::before {
    content: "";
    position: absolute;
    inset: 0 auto 0 0;
    width: 2px;
    background: linear-gradient(
        180deg,
        transparent,
        var(--maeverick-gold),
        transparent
    );
    opacity: 0.72;
}

.product-card h3 {
    margin-top: 0;
    color: var(--maeverick-gold-light);
}

.feature-list li::marker {
    color: var(--maeverick-gold);
}

.text-link {
    color: var(--maeverick-gold);
}

.showcase-grid a {
    overflow: hidden;
    border: 1px solid rgba(214, 165, 50, 0.24);
    border-radius: var(--radius-lg);
    background: #090909;
}

.media-placeholder {
    color: var(--muted);
    background:
        linear-gradient(
            135deg,
            rgba(214, 165, 50, 0.06),
            rgba(255, 255, 255, 0.015)
        ),
        #0b0b0b;
}

.media-placeholder span {
    color: var(--maeverick-gold-light);
}

.site-footer {
    margin: 0;
    border-top: 1px solid rgba(214, 165, 50, 0.24);
    background: #050505;
    color: #c9c2b5;
}

.footer-brand,
.footer-heading {
    color: var(--maeverick-gold-light);
}

.footer-grid a {
    color: #d8d1c4;
}

.footer-grid a:hover,
.footer-grid a:focus-visible {
    color: var(--maeverick-gold-light);
}

.footer-bottom {
    border-top-color: rgba(214, 165, 50, 0.18);
    color: #9f9788;
}

/* Keep the demo form deliberately lighter for form readability. */
.hero-demo-card {
    border-color: rgba(242, 199, 92, 0.58);
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(214, 165, 50, 0.12);
}

/* =========================================================
   WHAT MAEVERICK STANDS FOR
   ========================================================= */

.maeverick-meaning {
    position: relative;
    overflow: hidden;
    padding-top: clamp(64px, 7vw, 104px);
    padding-bottom: clamp(64px, 7vw, 104px);
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(214, 165, 50, 0.14),
            transparent 44%
        ),
        #080808;
}

.maeverick-meaning::before,
.maeverick-meaning::after {
    content: "";
    position: absolute;
    left: 50%;
    width: min(92%, 1180px);
    height: 1px;
    transform: translateX(-50%);
    background: linear-gradient(
        90deg,
        transparent,
        rgba(214, 165, 50, 0.58),
        transparent
    );
}

.maeverick-meaning::before {
    top: 0;
}

.maeverick-meaning::after {
    bottom: 0;
}

.maeverick-meaning-intro {
    max-width: 980px;
    margin: 0 auto clamp(40px, 5vw, 64px);
    text-align: center;
}

.maeverick-meaning-intro .eyebrow {
    margin-bottom: 16px;
    color: var(--maeverick-gold);
    letter-spacing: 0.16em;
}

.maeverick-meaning-intro h2 {
    max-width: 900px;
    margin: 0 auto;
    color: #fff9ec;
    font-size: clamp(2rem, 4.2vw, 4.5rem);
    font-weight: 760;
    line-height: 1.04;
    letter-spacing: -0.045em;
    text-wrap: balance;
}

.maeverick-meaning-intro p {
    max-width: 760px;
    margin: 24px auto 0;
    color: #c9c1b2;
    font-size: clamp(1rem, 1.5vw, 1.14rem);
}

.maeverick-acronym {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(214, 165, 50, 0.22);
    border-left: 1px solid rgba(214, 165, 50, 0.22);
}

.maeverick-acronym-item {
    min-height: 142px;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: clamp(20px, 2.6vw, 32px);
    border-right: 1px solid rgba(214, 165, 50, 0.22);
    border-bottom: 1px solid rgba(214, 165, 50, 0.22);
    background: rgba(255, 255, 255, 0.012);
}

.maeverick-acronym-item strong {
    flex: 0 0 auto;
    color: var(--maeverick-gold-light);
    font-size: clamp(2.8rem, 5vw, 5.2rem);
    font-weight: 900;
    line-height: 0.85;
    letter-spacing: -0.06em;
    text-shadow: 0 0 28px rgba(214, 165, 50, 0.12);
}

.maeverick-acronym-item span {
    color: #f5efe2;
    font-size: clamp(1rem, 1.35vw, 1.22rem);
    font-weight: 720;
    letter-spacing: 0.01em;
}

/* No SFA or HRIS decorative icons. */
.product-icon {
    display: none !important;
}

@media (min-width: 900px) {
    .primary-nav {
        background: transparent;
    }
}

@media (max-width: 899px) {
    .maeverick-acronym {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 599px) {
    .section {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .maeverick-meaning {
        padding-top: 64px;
        padding-bottom: 64px;
    }

    .maeverick-meaning-intro {
        text-align: left;
    }

    .maeverick-meaning-intro h2 {
        font-size: clamp(2rem, 10vw, 3.1rem);
    }

    .maeverick-acronym {
        grid-template-columns: 1fr;
    }

    .maeverick-acronym-item {
        min-height: 96px;
        padding: 18px 20px;
    }

    .maeverick-acronym-item strong {
        width: 52px;
        font-size: 3.15rem;
    }
}

/* =========================================================
   HERO-MATCHED WARM BLACK BACKGROUND
   ========================================================= */

:root {
    --maeverick-black: #0c0904;
    --maeverick-charcoal: #151007;
    --maeverick-surface: #120d06;
    --maeverick-surface-strong: #1a1309;

    --bg: #0c0904;
    --surface: #120d06;
    --surface-strong: #1a1309;
}

html,
body,
main,
.homepage-hero,
.section,
.showcase,
.cta-section {
    background-color: #0c0904;
}

body {
    background: #0c0904;
}

.homepage-hero {
    background: #0c0904;
}

.maeverick-meaning {
    background:
        radial-gradient(
            circle at 50% -20%,
            rgba(214, 165, 50, 0.12),
            transparent 44%
        ),
        #0c0904;
}

.section-muted {
    background: #151007;
}

.product-card,
.value-list article,
.showcase-grid a,
.media-placeholder {
    background-color: #120d06;
}

.site-header {
    background: rgba(12, 9, 4, 0.96);
}

.primary-nav {
    background-color: #0c0904;
}

.site-footer {
    background: #0c0904;
}

/* Prevent visible seams between the hero and adjacent sections. */
.homepage-hero,
.homepage-hero-stage,
.maeverick-meaning,
.section,
.section-muted,
.showcase,
.cta-section,
.site-footer {
    margin-top: 0;
    margin-bottom: 0;
}

.homepage-hero + .section,
.homepage-hero + .maeverick-meaning {
    border-top: 0;
}

@media (min-width: 900px) {
    .primary-nav {
        background: transparent;
    }
}

/* =========================================================
   HERO-MATCHED NEUTRAL BLACK BACKGROUND
   ========================================================= */

:root {
    --maeverick-black: #010101;
    --maeverick-charcoal: #080808;
    --maeverick-surface: #0d0d0d;
    --maeverick-surface-strong: #121212;

    --bg: #010101;
    --surface: #0d0d0d;
    --surface-strong: #121212;
}

html,
body,
main,
.homepage-hero,
.section,
.showcase,
.cta-section,
.site-footer {
    background: #010101 !important;
}

body {
    background-color: #010101 !important;
}

.homepage-hero {
    background-color: #010101 !important;
}

.homepage-hero-stage {
    background-color: #010101;
}

.maeverick-meaning {
    background: #010101 !important;
}

.section-muted {
    background: #080808 !important;
}

.product-card,
.value-list article,
.showcase-grid a,
.media-placeholder {
    background-color: #0d0d0d;
}

.site-header {
    background: rgba(1, 1, 1, 0.97);
}

.primary-nav {
    background-color: #010101;
}

.site-footer {
    background-color: #010101 !important;
}

/* Eliminate any visible seam between the hero and the next section. */
.homepage-hero,
.homepage-hero-stage,
.maeverick-meaning,
.section,
.section-muted,
.showcase,
.cta-section,
.site-footer {
    margin-top: 0;
    margin-bottom: 0;
}

.homepage-hero + .section,
.homepage-hero + .maeverick-meaning {
    border-top: 0 !important;
}

.maeverick-meaning::before,
.maeverick-meaning::after {
    opacity: 0.55;
}

@media (min-width: 900px) {
    .primary-nav {
        background: transparent;
    }
}

/* =========================================================
   RESPONSIVE PRODUCT PREVIEW IMAGES
   ========================================================= */

.showcase-grid .showcase-preview {
    aspect-ratio: 3 / 2;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: #010101;
}

.showcase-preview-picture {
    width: 100%;
    height: 100%;
    display: block;
}

.showcase-grid .showcase-preview-image {
    width: 100%;
    height: 100%;
    display: block;
    border: 0;
    border-radius: 0;
    box-shadow: none;
    background: #010101;
    object-fit: contain;
    object-position: center center;
}

.showcase-grid .media-placeholder {
    width: 100%;
    height: 100%;
    min-height: 0;
}

@media (max-width: 699px) {
    .showcase-grid .showcase-preview {
        aspect-ratio: 4 / 5;
    }

    .showcase-grid .showcase-preview-image {
        object-fit: contain;
        object-position: center center;
    }
}

/* =========================================================
   MAEVERICK ACRONYM — SEQUENTIAL WORD LIGHT SWEEP
   ========================================================= */

.maeverick-acronym {
    position: relative;
}

/* Keep letters completely static. */
.maeverick-acronym-item strong {
    color: var(--maeverick-gold-light);
    text-shadow: none;
    transform: none;
    animation: none;
}

/* Animate only the descriptive words. */
.maeverick-acronym-item span {
    display: inline-block;
    color: #f5efe2;
    background:
        linear-gradient(
            90deg,
            #f5efe2 0%,
            #f5efe2 36%,
            #e7ba4f 45%,
            #fff4c2 50%,
            #e7ba4f 55%,
            #f5efe2 64%,
            #f5efe2 100%
        );
    background-size: 240% 100%;
    background-position: 120% 0;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: maeverickWordLightSweep 9s ease-in-out infinite;
}

/* One word lights up every second. */
.maeverick-acronym-item:nth-child(1) span {
    animation-delay: 0s;
}

.maeverick-acronym-item:nth-child(2) span {
    animation-delay: 1s;
}

.maeverick-acronym-item:nth-child(3) span {
    animation-delay: 2s;
}

.maeverick-acronym-item:nth-child(4) span {
    animation-delay: 3s;
}

.maeverick-acronym-item:nth-child(5) span {
    animation-delay: 4s;
}

.maeverick-acronym-item:nth-child(6) span {
    animation-delay: 5s;
}

.maeverick-acronym-item:nth-child(7) span {
    animation-delay: 6s;
}

.maeverick-acronym-item:nth-child(8) span {
    animation-delay: 7s;
}

.maeverick-acronym-item:nth-child(9) span {
    animation-delay: 8s;
}

@keyframes maeverickWordLightSweep {
    0%,
    7% {
        background-position: 120% 0;
    }

    13% {
        background-position: -120% 0;
    }

    14%,
    100% {
        background-position: -120% 0;
    }
}

@media (prefers-reduced-motion: reduce) {
    .maeverick-acronym-item span {
        animation: none;
        background: none;
        -webkit-text-fill-color: currentColor;
        color: #f5efe2;
    }
}

/* =========================================================
   HERO CTA — HIGH CONTRAST BLACK + GOLD
   ========================================================= */

.hero-demo-card {
    color: #f8f1e3;
    border: 1px solid rgba(229, 181, 58, 0.58);
    background:
        linear-gradient(
            145deg,
            rgba(18, 15, 10, 0.94),
            rgba(5, 5, 5, 0.90)
        );
    box-shadow:
        0 26px 70px rgba(0, 0, 0, 0.50),
        0 0 0 1px rgba(229, 181, 58, 0.08);
    -webkit-backdrop-filter: blur(12px);
    backdrop-filter: blur(12px);
}

.hero-demo-card .cta-copy .eyebrow {
    color: #e8b93f;
    text-shadow: none;
}

.hero-demo-card .cta-copy h2 {
    color: #fff7e6;
    text-shadow: none;
}

.hero-demo-card .cta-copy p {
    color: #d8cfbf;
}

.hero-demo-card .form-field label {
    color: #e6c56f;
    font-weight: 800;
}

.hero-demo-card .form-field input,
.hero-demo-card .form-field select {
    color: #17130c;
    border: 1px solid rgba(224, 180, 68, 0.58);
    background: rgba(255, 250, 239, 0.97);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.75);
}

.hero-demo-card .form-field input::placeholder {
    color: #746b5d;
    opacity: 1;
}

.hero-demo-card .form-field input:focus,
.hero-demo-card .form-field select:focus {
    outline: 3px solid rgba(232, 185, 63, 0.20);
    border-color: #e8b93f;
    box-shadow:
        0 0 0 1px rgba(232, 185, 63, 0.22),
        inset 0 1px 0 rgba(255, 255, 255, 0.78);
}

.hero-demo-card .button-primary,
.hero-demo-card .button-full {
    border: 1px solid #f1cb65;
    background: linear-gradient(
        135deg,
        #f2cc63 0%,
        #d9a522 52%,
        #bd8611 100%
    );
    color: #090704;
    font-weight: 900;
    box-shadow:
        0 10px 24px rgba(207, 151, 22, 0.24),
        inset 0 1px 0 rgba(255, 255, 255, 0.38);
}

.hero-demo-card .button-primary:hover,
.hero-demo-card .button-primary:focus-visible,
.hero-demo-card .button-full:hover,
.hero-demo-card .button-full:focus-visible {
    background: linear-gradient(
        135deg,
        #ffe18a 0%,
        #edbd43 52%,
        #ce9417 100%
    );
    color: #050403;
}

.hero-demo-card .form-note {
    color: #a9a092;
}

.hero-demo-card .hero-demo-back {
    border-color: rgba(232, 185, 63, 0.38);
    background: rgba(0, 0, 0, 0.46);
    box-shadow: none;
}

.hero-demo-card .hero-demo-back:hover,
.hero-demo-card .hero-demo-back:focus-visible {
    border-color: #e8b93f;
    background: rgba(232, 185, 63, 0.10);
}

.hero-demo-card .hero-demo-back img {
    opacity: 0.96;
}

.hero-demo-card .form-message.success {
    border: 1px solid rgba(74, 222, 128, 0.34);
    background: rgba(22, 101, 52, 0.26);
    color: #dcfce7;
}

.hero-demo-card .form-message.error {
    border: 1px solid rgba(251, 113, 133, 0.35);
    background: rgba(159, 18, 57, 0.24);
    color: #ffe4e6;
}

/* Keep Turnstile visually separated from the dark panel. */
.hero-demo-card .cf-turnstile {
    overflow: hidden;
    border-radius: 10px;
    background: #ffffff;
}

/* Mobile keeps the same contrast treatment. */
@media (max-width: 699px) {
    .hero-demo-card {
        background:
            linear-gradient(
                145deg,
                rgba(18, 15, 10, 0.96),
                rgba(5, 5, 5, 0.94)
            );
    }

    .hero-demo-card .cta-copy h2 {
        color: #fff7e6;
    }

    .hero-demo-card .cta-copy p {
        color: #d8cfbf;
    }
}

