/* ================================================================
   HOME.CSS — Redesigned homepage (hm- prefix)
   Editorial, whitespace-first layout. Instrument Serif display,
   Inter body and micro-labels. Loaded after footer.css.
   ================================================================ */

:root {
    --hm-ink: #0a0a0a;
    --hm-paper: #f8f8fa;
    --hm-blue: #002bff;
    --hm-red: #e03030;
    --hm-line: rgba(10, 10, 10, 0.10);
    --hm-line-soft: rgba(10, 10, 10, 0.06);
    --hm-mut: rgba(10, 10, 10, 0.64);
    --hm-mut-2: rgba(10, 10, 10, 0.58);
    --hm-serif: 'Instrument Serif', 'Instrument Serif Fallback', Georgia, serif;
    --hm-sans: 'Inter', sans-serif;
    --hm-label: 'Inter', sans-serif;
}

/* ---------- shared scaffolding ---------- */

.hm-wrap {
    max-width: 1440px;
    margin: 0 auto;
    padding-left: 32px;
    padding-right: 32px;
}

.hm-section {
    position: relative;
    z-index: 30;
    padding-top: 104px;
    padding-bottom: 104px;
}

.hm-rule {
    border-top: 1px solid var(--hm-line-soft);
}

.hm-kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--hm-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hm-mut);
}

.hm-kicker-num {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 34px;
    height: 23px;
    padding: 0 9px;
    border-radius: 999px;
    border: 1px solid rgba(0, 43, 255, 0.28);
    background: rgba(0, 43, 255, 0.06);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.7);
    color: var(--hm-blue);
    font-size: 10px;
    letter-spacing: 0.12em;
    flex-shrink: 0;
}

.hm-display {
    font-family: var(--hm-serif);
    font-weight: 400;
    color: var(--hm-ink);
    letter-spacing: -0.03em;
    line-height: 1.02;
    margin: 0;
}

.hm-display em,
.hm-display i {
    font-style: italic;
    color: var(--hm-blue);
}

.hm-body {
    font-family: var(--hm-sans);
    font-size: 16px;
    line-height: 1.65;
    color: var(--hm-mut);
    font-weight: 400;
}

/* ---------- buttons ---------- */
.hm-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 14px;
    font-family: var(--hm-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    padding: 7px 7px 7px 26px;
    border-radius: 999px;
    text-decoration: none;
    cursor: pointer;
    white-space: nowrap;
    transition: transform 0.22s ease, box-shadow 0.22s ease, background 0.22s ease, border-color 0.22s ease, color 0.22s ease;
}

.hm-btn-lead {
    padding: 7px 26px 7px 7px;
}

.hm-btn-ic {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    flex-shrink: 0;
    transition: background 0.22s ease, transform 0.22s ease;
}

.hm-btn-icon {
    width: 15px;
    height: 15px;
}

.hm-btn-dark {
    background: linear-gradient(180deg, #1d1d23 0%, #08080a 100%);
    color: #ffffff;
    border: 1px solid rgba(10, 10, 10, 0.9);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
                0 10px 24px -10px rgba(10, 10, 10, 0.55),
                0 2px 6px -2px rgba(10, 10, 10, 0.4);
}

.hm-btn-dark .hm-btn-ic {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.16);
}

.hm-btn-dark:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
                0 16px 32px -12px rgba(0, 43, 255, 0.5),
                0 4px 10px -4px rgba(10, 10, 10, 0.4);
}

.hm-btn-dark:hover .hm-btn-ic {
    background: var(--hm-blue);
    transform: translateX(2px);
}

.hm-btn-light {
    background: linear-gradient(180deg, #ffffff 0%, #e9ebf2 100%);
    color: var(--hm-ink);
    border: 1px solid rgba(255, 255, 255, 0.65);
    box-shadow: inset 0 1px 0 #ffffff,
                0 12px 28px -12px rgba(0, 0, 0, 0.6),
                0 2px 6px -2px rgba(0, 0, 0, 0.35);
}

.hm-btn-light .hm-btn-ic {
    background: var(--hm-ink);
    color: #ffffff;
}

.hm-btn-light:hover {
    transform: translateY(-2px);
    box-shadow: inset 0 1px 0 #ffffff,
                0 16px 36px -12px rgba(0, 0, 0, 0.65),
                0 4px 12px -4px rgba(0, 43, 255, 0.35);
}

.hm-btn-light:hover .hm-btn-ic {
    background: var(--hm-blue);
    transform: translateX(2px);
}

.hm-btn-glass {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.22);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.18);
}

.hm-btn-glass .hm-btn-ic {
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
}

.hm-btn-glass:hover {
    background: rgba(255, 255, 255, 0.16);
    transform: translateY(-2px);
}

.hm-btn-glass:hover .hm-btn-ic {
    background: rgba(255, 255, 255, 0.25);
    transform: translateX(2px);
}

/* ================================================================
   1. HERO
   ================================================================ */

.hm-hero-section {
    position: relative;
    z-index: 30;
    padding: 12px 12px 0;
}

.hm-hero {
    position: relative;
    min-height: calc(100vh - 24px);
    min-height: calc(100svh - 24px);
    border-radius: 24px;
    overflow: hidden;
    background: #070b16;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
}

.hm-hero-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.85;
}

.hm-hero-shade {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(to top, rgba(4, 6, 12, 0.92) 0%, rgba(4, 6, 12, 0.45) 38%, rgba(4, 6, 12, 0.15) 65%, rgba(4, 6, 12, 0.35) 100%);
}

.hm-hero-content {
    position: relative;
    z-index: 2;
    padding: 150px 56px 56px; /* top padding keeps content clear of the fixed nav */
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 28px;
}

.hm-hero-offer {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-family: var(--hm-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, 0.26);
    border-radius: 999px;
    padding: 11px 20px;
    backdrop-filter: blur(18px) saturate(1.4);
    -webkit-backdrop-filter: blur(18px) saturate(1.4);
    background: rgba(255, 255, 255, 0.09);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.2),
                0 8px 24px -12px rgba(0, 0, 0, 0.5);
    transition: border-color 0.2s ease, background 0.2s ease;
}

.hm-hero-offer:hover {
    border-color: rgba(255, 255, 255, 0.5);
    background: rgba(255, 255, 255, 0.14);
}

.hm-hero-offer-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 10px rgba(74, 222, 128, 0.9);
    flex-shrink: 0;
}

.hm-hero-title {
    font-family: var(--hm-serif);
    font-weight: 400;
    font-size: clamp(46px, 6.4vw, 104px);
    line-height: 0.96;
    letter-spacing: -0.03em;
    color: #ffffff;
    margin: 0;
    max-width: 12ch;
    /* neutralize legacy .hero-cta-title styling (kept for speakable schema) */
    font-style: normal;
    transform: none;
    text-shadow: none;
    text-align: left;
    -webkit-text-fill-color: currentColor;
    background: none;
}

.hm-hero-title em {
    font-style: italic;
    color: #ffffff;
}

.hm-hero-desc {
    font-family: var(--hm-sans);
    font-size: 17px;
    line-height: 1.6;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.72);
    max-width: 520px;
    margin: 0;
}

.hm-hero-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
}

.hm-hero-learn {
    font-family: var(--hm-sans);
    font-size: 14px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.75);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hm-hero-learn:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.hm-hero-foot {
    position: relative;
    z-index: 2;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 220px 26px 56px; /* right padding clears the fixed Cal "Book a call" button */
    font-family: var(--hm-label);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.68);
    flex-wrap: wrap;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
    background: rgba(8, 11, 20, 0.5);
    backdrop-filter: blur(16px) saturate(1.3);
    -webkit-backdrop-filter: blur(16px) saturate(1.3);
}

.hm-hero-foot .hm-hero-learn {
    font-family: inherit;
    font-size: inherit;
    letter-spacing: inherit;
}

/* ================================================================
   2. TRUSTED-BY MARQUEE
   ================================================================ */

.hm-trusted {
    position: relative;
    z-index: 30;
    padding: 56px 0 40px;
}

.hm-trusted-label {
    text-align: center;
    margin-bottom: 30px;
}

.hm-marquee {
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
    mask-image: linear-gradient(to right, transparent, black 12%, black 88%, transparent);
}

.hm-marquee-track {
    display: flex;
    align-items: center;
    gap: 72px;
    width: max-content;
    animation: hm-marquee-scroll 55s linear infinite;
    padding-right: 72px;
}

@keyframes hm-marquee-scroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

.hm-marquee-item {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hm-marquee-item img {
    height: 26px;
    width: auto;
    max-width: 140px;
    object-fit: contain;
    filter: grayscale(1) brightness(0.25);
    opacity: 0.55;
    transition: opacity 0.2s ease;
}

.hm-marquee-item img:hover {
    opacity: 0.9;
}

/* ================================================================
   3. SERVICES INDEX
   ================================================================ */

#services-section {
    padding-bottom: 0;
}

.hm-services-head {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 26px;
}

.hm-services-title {
    font-size: clamp(40px, 4.6vw, 68px);
    max-width: 820px;
    margin: 0 0 34px;
}

.hm-services-head::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--hm-line-soft);
}

.hm-service {
    display: grid;
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
    gap: 64px;
    padding: 64px 0;
    border-top: 1px solid var(--hm-line-soft);
    align-items: center;
}

.hm-service-info {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
}

.hm-service-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.hm-service-badge {
    font-family: var(--hm-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hm-blue);
    border: 1px solid rgba(0, 43, 255, 0.25);
    border-radius: 999px;
    padding: 5px 12px;
}

.hm-service-title {
    font-size: clamp(36px, 3.6vw, 58px);
    line-height: 1;
}

.hm-service-desc {
    max-width: 520px;
    margin: 0;
}

.hm-service-links {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 6px;
}

.hm-service-link {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-family: var(--hm-sans);
    font-size: 13.5px;
    font-weight: 500;
    color: #2c2c33;
    text-decoration: none;
    background: #ffffff;
    border: 1px solid rgba(10, 10, 10, 0.1);
    border-radius: 12px;
    padding: 12px 18px;
    box-shadow: 0 1px 2px rgba(10, 10, 10, 0.04),
                0 6px 16px -8px rgba(10, 10, 10, 0.1);
    transition: transform 0.2s ease, color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
}

.hm-service-link::after {
    content: '\2197';
    font-family: var(--hm-label);
    font-size: 11px;
    line-height: 1;
    color: rgba(10, 10, 10, 0.35);
    transition: color 0.2s ease, transform 0.2s ease;
}

.hm-service-link:hover {
    transform: translateY(-2px);
    color: var(--hm-blue);
    border-color: rgba(0, 43, 255, 0.4);
    box-shadow: 0 10px 22px -10px rgba(0, 43, 255, 0.3),
                0 2px 6px -2px rgba(10, 10, 10, 0.08);
}

.hm-service-link:hover::after {
    color: var(--hm-blue);
    transform: translate(1px, -1px);
}

.hm-service-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 14px;
    font-family: var(--hm-sans);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--hm-ink);
    text-decoration: none;
    border-bottom: 1px solid var(--hm-line);
    padding-bottom: 3px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hm-service-cta span {
    transition: transform 0.2s ease;
}

.hm-service-cta:hover {
    color: var(--hm-blue);
    border-color: var(--hm-blue);
}

.hm-service-cta:hover span {
    transform: translateX(3px);
}

.hm-service-media {
    position: relative;
    border-radius: 18px;
    overflow: hidden;
    aspect-ratio: 4 / 3;
    background: #0c0f18;
}

.hm-service-media video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hm-media-tag {
    position: absolute;
    left: 14px;
    bottom: 14px;
    z-index: 2;
    font-family: var(--hm-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.9);
    background: rgba(8, 11, 20, 0.38);
    backdrop-filter: blur(14px) saturate(1.3);
    -webkit-backdrop-filter: blur(14px) saturate(1.3);
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 999px;
    padding: 8px 14px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hm-services-foot {
    border-top: 1px solid var(--hm-line-soft);
    padding-top: 44px;
    padding-bottom: 104px;
    display: flex;
    justify-content: center;
}

/* ================================================================
   4. EDITORIAL STATEMENT
   ================================================================ */

.hm-editorial {
    text-align: center;
}

.hm-editorial .hm-kicker {
    justify-content: center;
}

.hm-editorial-title {
    font-size: clamp(44px, 5.4vw, 84px);
    max-width: 900px;
    margin: 22px auto 26px;
}

.hm-editorial-desc {
    max-width: 620px;
    margin: 0 auto 48px;
    font-size: 17px;
}

.hm-editorial-stats {
    display: flex;
    justify-content: center;
    gap: 0;
    border-top: 1px solid var(--hm-line-soft);
    border-bottom: 1px solid var(--hm-line-soft);
    margin: 0 auto 48px;
    max-width: 760px;
}

.hm-editorial-stat {
    flex: 1;
    padding: 28px 16px;
    display: flex;
    flex-direction: column;
    gap: 6px;
    align-items: center;
}

.hm-editorial-stat + .hm-editorial-stat {
    border-left: 1px solid var(--hm-line-soft);
}

.hm-stat-num {
    font-family: var(--hm-serif);
    font-size: 40px;
    line-height: 1;
    color: var(--hm-ink);
    letter-spacing: -0.02em;
}

.hm-stat-label {
    font-family: var(--hm-label);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--hm-mut-2);
}

/* ================================================================
   5. SPOTLIGHTS (FORBES + AEO)
   ================================================================ */

#spotlight-section {
    padding-top: 0;
}

.hm-spotlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}

.hm-spot {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background: #070b16;
    min-height: 560px;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 12px;
}

.hm-spot-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.75;
}

.hm-spot-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(4, 6, 12, 0.7) 0%, rgba(4, 6, 12, 0.25) 55%, rgba(4, 6, 12, 0.15) 100%);
}

.hm-spot-content {
    position: relative;
    z-index: 2;
    padding: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 18px;
    border-radius: 14px;
    background: rgba(10, 14, 24, 0.45);
    backdrop-filter: blur(22px) saturate(1.4);
    -webkit-backdrop-filter: blur(22px) saturate(1.4);
    border: 1px solid rgba(255, 255, 255, 0.12);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.hm-spot-tags {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.hm-spot-tag {
    font-family: var(--hm-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 999px;
    padding: 6px 13px;
    background: rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.hm-spot-title {
    font-family: var(--hm-serif);
    font-size: clamp(40px, 3.4vw, 56px);
    font-weight: 400;
    line-height: 0.95;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 0;
}

.hm-spot-sub {
    font-family: var(--hm-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
}

.hm-spot-desc {
    font-family: var(--hm-sans);
    font-size: 15px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    max-width: 440px;
    margin: 0;
}

.hm-spot-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 22px;
    font-family: var(--hm-label);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

.hm-spot-actions {
    display: flex;
    align-items: center;
    gap: 22px;
    flex-wrap: wrap;
    margin-top: 8px;
}

.hm-spot-link {
    font-family: var(--hm-sans);
    font-size: 13.5px;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.hm-spot-link:hover {
    color: #ffffff;
    border-color: #ffffff;
}

.hm-spot-attribution {
    font-family: var(--hm-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
    margin-top: 6px;
}

.hm-spot-attribution strong {
    color: rgba(255, 255, 255, 0.65);
    font-weight: 600;
}

/* ================================================================
   6. CRISIS STRIP
   ================================================================ */

.hm-crisis {
    border-top: 1px solid var(--hm-line-soft);
    border-bottom: 1px solid var(--hm-line-soft);
    padding: 52px 0;
}

.hm-crisis-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 48px;
}

.hm-crisis-left {
    display: flex;
    flex-direction: column;
    gap: 14px;
    max-width: 640px;
}

.hm-crisis-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hm-label);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--hm-red);
}

.hm-crisis-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--hm-red);
    animation: hm-pulse 1.6s ease-in-out infinite;
    flex-shrink: 0;
}

@keyframes hm-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(224, 48, 48, 0.4); }
    50% { box-shadow: 0 0 0 6px rgba(224, 48, 48, 0); }
}

.hm-crisis-title {
    font-size: clamp(34px, 3vw, 48px);
    line-height: 1;
}

.hm-crisis-right {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    flex-shrink: 0;
}

.hm-crisis-stat {
    font-family: var(--hm-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hm-mut);
}

.hm-crisis-stat strong {
    color: var(--hm-ink);
    font-weight: 600;
}

.hm-crisis-avail {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hm-label);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hm-mut-2);
}

.hm-crisis-avail::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: #22c55e;
}

/* ================================================================
   7. AWARDS
   ================================================================ */

.hm-awards-head {
    margin-bottom: 40px;
}

.hm-awards-title {
    font-size: clamp(40px, 4vw, 64px);
    margin-top: 18px;
}

.hm-awards-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--hm-line-soft);
    border-left: 1px solid var(--hm-line-soft);
}

.hm-award {
    border-right: 1px solid var(--hm-line-soft);
    border-bottom: 1px solid var(--hm-line-soft);
    padding: 28px 24px;
    display: flex;
    flex-direction: column;
    gap: 10px;
    min-height: 150px;
}

.hm-award-rank {
    font-family: var(--hm-serif);
    font-size: 34px;
    line-height: 1;
    color: var(--hm-ink);
    letter-spacing: -0.02em;
}

.hm-award-label {
    font-family: var(--hm-sans);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--hm-mut);
    flex: 1;
}

.hm-award-src {
    font-family: var(--hm-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hm-mut-2);
}

.hm-certs {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.hm-cert {
    border: 1px solid var(--hm-line-soft);
    border-radius: 16px;
    padding: 28px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.hm-cert-title {
    font-family: var(--hm-serif);
    font-size: 26px;
    font-weight: 400;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--hm-ink);
    margin: 0;
}

.hm-cert-label {
    font-family: var(--hm-label);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--hm-blue);
    white-space: nowrap;
}

/* ================================================================
   8. SIGN-UP BAND (uses email-grab.js ids)
   ================================================================ */

#email-grab-section {
    padding-top: 0;
}

.hm-signup .hm-kicker {
    color: rgba(255, 255, 255, 0.5);
}

.hm-signup {
    background: radial-gradient(120% 170% at 88% -30%, rgba(0, 43, 255, 0.4) 0%, rgba(0, 43, 255, 0) 55%),
                linear-gradient(180deg, #101014 0%, #08080a 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 72px 56px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 56px;
    align-items: center;
}

.hm-signup-title {
    font-family: var(--hm-serif);
    font-size: clamp(36px, 3.6vw, 56px);
    font-weight: 400;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #ffffff;
    margin: 16px 0 18px;
}

.hm-signup-title em {
    font-style: italic;
}

.hm-signup-desc {
    font-family: var(--hm-sans);
    font-size: 15.5px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    max-width: 420px;
}

.hm-signup-form {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.hm-signup-row {
    display: flex;
    gap: 12px;
}

.hm-signup-input {
    flex: 1;
    min-width: 0;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 999px;
    padding: 15px 24px;
    font-family: var(--hm-sans);
    font-size: 16px;
    color: #ffffff;
    outline: none;
    transition: border-color 0.2s ease;
}

.hm-signup-input::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.hm-signup-input:focus {
    border-color: rgba(255, 255, 255, 0.45);
}

.hm-signup-btn {
    border: none;
    cursor: pointer;
    font-family: var(--hm-sans);
    justify-content: center;
    flex: 1;
}

.hm-signup-note {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--hm-label);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.62);
}

.hm-signup-note svg,
.hm-signup-note .hm-note-icon {
    width: 12px;
    height: 12px;
}

/* ================================================================
   KEPT-SECTION HARMONIZATION (light zone)
   ================================================================ */

.light-mode-zone .onet-eyebrow,
.light-mode-zone .faq-label,
.light-mode-zone .cs-eyebrow,
.light-mode-zone .ptr-eyebrow,
.light-mode-zone .ent-eyebrow {
    font-family: var(--hm-label);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
}

/* legacy buttons restyled to match the hm- button system */
.light-mode-zone .onet-request-btn,
.light-mode-zone .ent-cta,
.light-mode-zone .ol-more-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--hm-sans);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 0.01em;
    color: #ffffff;
    text-decoration: none;
    background: linear-gradient(180deg, #1d1d23 0%, #08080a 100%);
    border: 1px solid rgba(10, 10, 10, 0.9);
    border-radius: 999px;
    padding: 15px 28px;
    cursor: pointer;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
                0 10px 24px -10px rgba(10, 10, 10, 0.55);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.light-mode-zone .onet-request-btn:hover,
.light-mode-zone .ent-cta:hover,
.light-mode-zone .ol-more-btn:hover {
    transform: translateY(-2px);
    color: #ffffff;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.14),
                0 16px 32px -12px rgba(0, 43, 255, 0.5);
}

.light-mode-zone .cs-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--hm-sans);
    font-size: 14px;
    font-weight: 600;
    color: var(--hm-ink);
    text-decoration: none;
    background: linear-gradient(180deg, #ffffff 0%, #e9ebf2 100%);
    border: 1px solid rgba(255, 255, 255, 0.65);
    border-radius: 999px;
    padding: 15px 28px;
    box-shadow: inset 0 1px 0 #ffffff,
                0 12px 28px -12px rgba(0, 0, 0, 0.6);
    transition: transform 0.22s ease, box-shadow 0.22s ease;
}

.light-mode-zone .cs-cta:hover {
    transform: translateY(-2px);
    color: var(--hm-ink);
    box-shadow: inset 0 1px 0 #ffffff,
                0 16px 36px -12px rgba(0, 0, 0, 0.65);
}

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

.hm-sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.hm-btn:focus-visible,
.hm-service-link:focus-visible,
.hm-service-cta:focus-visible,
.hm-hero-offer:focus-visible,
.hm-hero-learn:focus-visible,
.hm-spot-link:focus-visible,
.hm-signup-input:focus-visible,
.ol-more-btn:focus-visible,
.onet-request-btn:focus-visible,
.ent-cta:focus-visible,
.cs-cta:focus-visible,
.faq-tab:focus-visible,
.faq-q:focus-visible,
.faq-link:focus-visible,
.ptr-card:focus-visible,
a.ptr-hero:focus-visible,
.ft-cell-link:focus-visible,
.ft-input:focus-visible,
.ft-capture-btn:focus-visible,
.ft-social-big:focus-visible {
    outline: 2px solid var(--hm-blue);
    outline-offset: 3px;
}

.onet-search-wrap:focus-within {
    border-color: var(--hm-blue);
}

@media (prefers-reduced-motion: reduce) {
    .hm-marquee-track {
        animation: none;
        flex-wrap: wrap;
        justify-content: center;
        width: auto;
    }

    .hm-marquee-item[aria-hidden="true"] {
        display: none;
    }

    .hm-btn,
    .hm-btn-ic,
    .hm-service-link {
        transition: none;
    }

    .hm-crisis-dot {
        animation: none;
    }
}

/* ================================================================
   RESPONSIVE
   ================================================================ */

@media (max-width: 1100px) {
    .hm-service {
        gap: 40px;
    }

    .hm-awards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 900px) {
    .hm-section {
        padding-top: 72px;
        padding-bottom: 72px;
    }

    .hm-wrap {
        padding-left: 20px;
        padding-right: 20px;
    }

    .hm-hero-content {
        padding: 130px 24px 32px;
        gap: 22px;
    }

    .hm-hero-foot {
        padding: 18px 24px 90px;
        gap: 8px;
        flex-direction: column;
        align-items: flex-start;
    }

    .hm-service {
        grid-template-columns: 1fr;
        gap: 28px;
        padding: 48px 0;
    }

    .hm-services-foot {
        padding-bottom: 72px;
    }

    .hm-service-media {
        order: -1;
        aspect-ratio: 16 / 10;
    }

    .hm-spotlights {
        grid-template-columns: 1fr;
    }

    .hm-spot {
        min-height: 480px;
        padding: 8px;
    }

    .hm-spot-content {
        padding: 24px 20px;
    }

    .hm-crisis-inner {
        flex-direction: column;
        align-items: flex-start;
        gap: 28px;
    }

    .hm-awards-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .hm-certs {
        grid-template-columns: 1fr;
    }

    .hm-signup {
        grid-template-columns: 1fr;
        padding: 44px 28px;
        gap: 32px;
    }

    .hm-editorial-stats {
        flex-direction: column;
    }

    .hm-editorial-stat + .hm-editorial-stat {
        border-left: none;
        border-top: 1px solid var(--hm-line-soft);
    }
}

@media (max-width: 560px) {
    .hm-hero-title {
        font-size: clamp(42px, 12vw, 60px);
    }

    .hm-hero-offer {
        letter-spacing: 0.08em;
        font-size: 10px;
        padding: 9px 14px;
        line-height: 1.6;
        border-radius: 16px;
    }

    .hm-awards-grid {
        grid-template-columns: 1fr;
    }

    .hm-award {
        min-height: 0;
    }

    .hm-signup-row {
        flex-direction: column;
    }

    .hm-marquee-track {
        gap: 44px;
        padding-right: 44px;
    }
}

/* ================================================================
   SEO / CRO / A11Y ADDITIONS
   ================================================================ */

/* font-swap CLS mitigation: size-matched serif fallback */
@font-face {
    font-family: 'Instrument Serif Fallback';
    src: local('Georgia');
    size-adjust: 106%;
    ascent-override: 96%;
    descent-override: 25%;
    line-gap-override: 0%;
}

/* skip link */
.hm-skip-link {
    position: absolute;
    left: -9999px;
    z-index: 100;
}

.hm-skip-link:focus {
    left: 16px;
    top: 16px;
    padding: 12px 20px;
    background: var(--hm-ink);
    color: #ffffff;
    border-radius: 999px;
    font: 600 14px var(--hm-sans);
    text-decoration: none;
}

/* mobile nav purchase CTA (nav CTA is hidden below lg) */
.mobile-cta-pill {
    display: none;
}

@media (max-width: 1023px) {
    .mobile-cta-pill {
        display: inline-flex;
        align-items: center;
        font-family: var(--hm-sans);
        font-size: 13px;
        font-weight: 700;
        color: #0a0a0a;
        background: linear-gradient(180deg, #ffffff 0%, #e9ebf2 100%);
        border-radius: 999px;
        padding: 10px 18px;
        margin-left: auto;
        margin-right: 10px;
        text-decoration: none;
        box-shadow: 0 8px 20px -10px rgba(0, 0, 0, 0.6);
        white-space: nowrap;
    }
}

/* keyboard-operable nav dropdowns (mirrors the :hover rules) */
.nav-item-group:focus-within .dropdown-wrapper {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1) rotateX(0);
    pointer-events: auto;
}

.nav-item-group:focus-within .dropdown-center {
    transform: translate(-50%, 0) scale(1) rotateX(0);
}

/* collapsed FAQ answers: remove invisible links from tab order */
.light-mode-zone .faq-a {
    visibility: hidden;
    transition: max-height 0.35s ease, padding 0.35s ease, visibility 0s linear 0.35s;
}

.light-mode-zone .faq-item.open .faq-a {
    visibility: visible;
    transition-delay: 0s;
}

/* legacy FAQ contrast bumps */
.light-mode-zone .faq-tab:not(.active) {
    color: rgba(0, 0, 0, 0.55);
}

.light-mode-zone .faq-a p {
    color: rgba(0, 0, 0, 0.6);
}

/* FAQ closing CTA */
.faq-cta {
    margin-top: 48px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}

.faq-cta-text {
    font-family: var(--hm-sans);
    font-size: 16px;
    color: var(--hm-mut);
    margin: 0;
}

.faq-cta-note {
    font-family: var(--hm-label);
    font-size: 10.5px;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--hm-mut-2);
}

/* sign-up band offer echo */
.hm-signup-offer {
    margin-top: 16px;
    color: rgba(255, 255, 255, 0.75);
}

/* outlet wall: reserve cell height while lazy logos load */
.light-mode-zone .ol-logo {
    min-height: 89px;
}

/* outlet search footer: room for the two CTAs */
.light-mode-zone .onet-footer {
    flex-wrap: wrap;
    gap: 14px;
}

.light-mode-zone .onet-cta-row {
    display: flex;
    align-items: center;
    gap: 18px;
    flex-wrap: wrap;
}

.light-mode-zone a.onet-request-link {
    font-family: var(--hm-sans);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--hm-mut);
    text-decoration: none;
    border-bottom: 1px solid var(--hm-line);
    padding-bottom: 2px;
    transition: color 0.2s ease, border-color 0.2s ease;
}

.light-mode-zone a.onet-request-link:hover {
    color: var(--hm-blue);
    border-color: var(--hm-blue);
}

/* outlet wall CTA under See More */
.light-mode-zone .ol-more-wrap {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
}

/* partnerships hero card is now a link */
.light-mode-zone a.ptr-hero {
    text-decoration: none;
    display: block;
    color: inherit;
}

/* footer inputs: no iOS focus zoom */
.ft .ft-input {
    font-size: 16px;
}
