:root {
    --industry-ink: #07111f;
    --industry-blue: #52b8e0;
    --industry-cyan: #8be3ff;
    --industry-muted: #5b6b82;
    --industry-line: #dce6ef;
}

.industries-page {
    background: #f4f8fc;
}

.industries-hero {
    position: relative;
    min-height: 100vh;
    display: grid;
    align-content: center;
    gap: clamp(2.5rem, 5vw, 4.5rem);
    overflow: hidden;
    padding: calc(var(--nav-height) + 4rem) 0 4.5rem;
    background:
        radial-gradient(ellipse at 18% 30%, rgba(82,184,224,0.18), transparent 30rem),
        radial-gradient(ellipse at 86% 64%, rgba(139,227,255,0.16), transparent 34rem),
        linear-gradient(135deg, #06101d 0%, #0b2036 54%, #070b16 100%);
    color: #f8fbff;
}

.industries-hero__grid,
.industries-hero__glow {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.industries-hero__grid {
    opacity: 0.45;
    background-image:
        linear-gradient(rgba(139,227,255,0.07) 1px, transparent 1px),
        linear-gradient(90deg, rgba(139,227,255,0.07) 1px, transparent 1px);
    background-size: 76px 76px;
    mask-image: linear-gradient(90deg, #000, rgba(0,0,0,0.72), transparent);
}

.industries-hero__glow {
    background:
        radial-gradient(circle at 22% 72%, rgba(82,184,224,0.22) 0 1px, transparent 1.5px),
        radial-gradient(circle at 76% 34%, rgba(139,227,255,0.18) 0 1.2px, transparent 2px);
    background-size: 27px 27px, 41px 41px;
    mask-image: radial-gradient(ellipse 48% 42% at 24% 78%, #000 0%, transparent 76%);
}

.industries-hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.03fr) minmax(360px, 0.58fr);
    gap: clamp(2.5rem, 9vw, 9rem);
    align-items: end;
}

.industries-hero__copy h1 {
    margin: 1.15rem 0 1.4rem;
    max-width: 980px;
    color: #f8fbff;
    font-family: var(--font-display);
    font-size: clamp(3.35rem, 6.15vw, 7.35rem);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.065em;
}

.industries-hero__aside {
    padding-bottom: clamp(0.35rem, 1vw, 1rem);
}

.industries-hero__aside .section-tag {
    margin-bottom: 1.35rem;
}

.industries-hero__aside p {
    max-width: 660px;
    color: rgba(226,239,255,0.78);
    font-size: clamp(1.16rem, 1.45vw, 1.5rem);
    line-height: 1.62;
}

.industries-hero__ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 2rem;
}

.industries-hero__marquee {
    position: relative;
    z-index: 1;
    width: 100%;
    overflow: hidden;
    padding: 0.25rem 0 1rem;
    mask-image: linear-gradient(90deg, transparent 0, #000 8%, #000 92%, transparent 100%);
}

.industry-rail {
    --rail-gap: clamp(1rem, 2vw, 1.4rem);
    display: flex;
    width: max-content;
    gap: var(--rail-gap);
    padding-left: clamp(1.25rem, 4vw, 4rem);
    animation: industries-marquee 40s linear infinite;
    will-change: transform;
}

.industry-rail__set {
    display: flex;
    gap: var(--rail-gap);
}

.industry-tile {
    position: relative;
    flex: 0 0 clamp(330px, 31vw, 540px);
    aspect-ratio: 1.55;
    overflow: hidden;
    border: 1px solid rgba(139,227,255,0.18);
    border-radius: 30px;
    background: #07111f;
    box-shadow: 0 28px 80px rgba(0,0,0,0.28), inset 0 0 0 1px rgba(255,255,255,0.03);
}

.industry-tile::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, transparent 42%, rgba(5,12,23,0.84)),
        linear-gradient(90deg, rgba(5,12,23,0.1), transparent 42%);
}

.industry-tile img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.9;
    transform: scale(1.05);
}

.industry-tile span {
    position: absolute;
    left: 1rem;
    bottom: 1rem;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 0.9rem;
    border: 1px solid rgba(139,227,255,0.22);
    border-radius: 999px;
    background: rgba(7,17,31,0.7);
    color: rgba(248,251,255,0.92);
    font-size: 0.84rem;
    font-weight: 900;
    backdrop-filter: blur(14px);
}

.industries-intro,
.vertical-section,
.coverage-section,
.expanding-section {
    padding: clamp(6rem, 10vw, 9rem) 0;
}

.industries-intro__inner {
    display: grid;
    grid-template-columns: minmax(360px, 0.72fr) minmax(320px, 0.62fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: end;
}

.industries-intro h2,
.vertical-copy h2,
.coverage-copy h2,
.expanding-panel h2 {
    color: var(--industry-ink);
    font-family: var(--font-display);
    font-size: clamp(2.7rem, 4.6vw, 5rem);
    font-weight: 500;
    line-height: 1;
    letter-spacing: -0.05em;
}

.industries-intro__body,
.vertical-copy p,
.coverage-copy p,
.expanding-panel p {
    color: #475569;
    font-size: clamp(1.05rem, 1.35vw, 1.26rem);
    line-height: 1.68;
}

.vertical-section {
    background: #ffffff;
}

.vertical-section:nth-of-type(even) {
    background: #eef5fb;
}

.vertical-layout {
    display: grid;
    grid-template-columns: minmax(360px, 0.84fr) minmax(360px, 0.76fr);
    gap: clamp(2.5rem, 6vw, 6rem);
    align-items: center;
}

.vertical-layout--reverse {
    grid-template-columns: minmax(360px, 0.76fr) minmax(360px, 0.84fr);
}

.vertical-media {
    position: relative;
    min-height: 560px;
    overflow: hidden;
    border: 1px solid #dce6ef;
    border-radius: 34px;
    background: #07111f;
    box-shadow: 0 30px 90px rgba(10,25,45,0.13);
}

.vertical-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(180deg, rgba(7,17,31,0.02), rgba(7,17,31,0.72)),
        radial-gradient(ellipse at 50% 30%, rgba(82,184,224,0.18), transparent 24rem);
}

.vertical-media img {
    width: 100%;
    height: 100%;
    min-height: 560px;
    object-fit: cover;
}

.vertical-copy {
    position: relative;
}

.vertical-index {
    display: inline-grid;
    width: 54px;
    aspect-ratio: 1;
    place-items: center;
    margin: 0 1rem 1.3rem 0;
    border: 1px solid rgba(82,184,224,0.35);
    border-radius: 18px;
    background: rgba(82,184,224,0.12);
    color: #1674a4;
    font-family: var(--font-mono);
    font-weight: 900;
}

.vertical-index + .section-tag {
    vertical-align: middle;
}

.vertical-copy h2 {
    max-width: 760px;
    margin: 1rem 0 1.4rem;
}

.vertical-copy > p:not(.section-tag) {
    max-width: 720px;
}

.product-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.65rem;
}

.product-strip a,
.product-strip span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 0.9rem;
    border: 1px solid var(--pill-color, #dce6ef);
    border-radius: 999px;
    background: #ffffff;
    color: #0f2742;
    font-size: 0.9rem;
    font-weight: 800;
    box-shadow: 0 10px 24px rgba(10, 25, 45, 0.035);
}

.product-strip .pill-prospect { --pill-color: #8b5cf6; }
.product-strip .pill-sellscope { --pill-color: #f97316; }
.product-strip .pill-investor { --pill-color: #22c55e; }
.product-strip .pill-lender { --pill-color: #52b8e0; }
.product-strip .pill-intel,
.product-strip .pill-scope { --pill-color: #8be3ff; }

.vertical-signal-board,
.policy-stack,
.api-console,
.audience-stack,
.platform-stack {
    position: absolute;
    z-index: 2;
}

.vertical-signal-board {
    left: 1.35rem;
    bottom: 1.35rem;
    display: grid;
    width: min(72%, 360px);
    gap: 0.7rem;
}

.vertical-signal-board span,
.policy-stack span,
.audience-stack span,
.platform-stack span,
.api-console {
    border: 1px solid rgba(139,227,255,0.2);
    border-radius: 18px;
    background: rgba(7,17,31,0.76);
    color: rgba(226,239,255,0.9);
    backdrop-filter: blur(14px);
}

.vertical-signal-board span {
    min-height: 58px;
    display: flex;
    align-items: center;
    gap: 0.72rem;
    padding: 0 1rem;
    font-weight: 800;
}

.vertical-signal-board i {
    width: 22px;
    color: var(--industry-cyan);
}

.policy-stack {
    left: 1.4rem;
    bottom: 1.4rem;
    display: grid;
    gap: 0.7rem;
    width: min(72%, 360px);
}

.policy-stack span {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-height: 58px;
    padding: 0 1rem;
    font-weight: 800;
}

.policy-stack i {
    width: 22px;
    color: var(--industry-cyan);
}

.audience-stack,
.platform-stack {
    left: 1.4rem;
    bottom: 1.4rem;
    display: grid;
    gap: 0.7rem;
    width: min(72%, 360px);
}

.audience-stack span,
.platform-stack span {
    display: flex;
    align-items: center;
    gap: 0.72rem;
    min-height: 58px;
    padding: 0 1rem;
    font-weight: 800;
}

.audience-stack i,
.platform-stack i {
    width: 22px;
    color: var(--industry-cyan);
}

.api-console {
    right: 1.35rem;
    bottom: 1.35rem;
    width: min(72%, 360px);
    padding: 1.15rem;
    display: grid;
    gap: 0.6rem;
    font-family: var(--font-mono);
}

.api-console strong {
    color: var(--industry-cyan);
    font-size: 1.75rem;
}

.api-console small {
    color: rgba(203,213,225,0.72);
    text-transform: uppercase;
    letter-spacing: 0.12em;
}

.coverage-section {
    background:
        radial-gradient(ellipse at 18% 16%, rgba(82,184,224,0.18), transparent 30rem),
        linear-gradient(145deg, #07111f 0%, #0b2036 54%, #06101d 100%);
    color: #f8fbff;
}

.coverage-grid {
    display: grid;
    grid-template-columns: minmax(420px, 0.68fr) minmax(0, 1fr);
    gap: clamp(2.5rem, 5.5vw, 5.5rem);
    align-items: start;
}

.coverage-copy h2 {
    color: #f8fbff;
    font-size: clamp(2.35rem, 3.75vw, 4.15rem);
}

.coverage-copy p {
    color: rgba(226,239,255,0.74);
}

.coverage-matrix {
    overflow: hidden;
    border: 1px solid rgba(139,227,255,0.16);
    border-radius: 28px;
    background: rgba(8,24,42,0.76);
    box-shadow: 0 26px 80px rgba(0,0,0,0.24);
}

.coverage-row {
    display: grid;
    grid-template-columns: 0.54fr 1fr 0.86fr;
    gap: 1rem;
    padding: 1.1rem 1.25rem;
    border-top: 1px solid rgba(139,227,255,0.12);
    color: rgba(226,239,255,0.78);
}

.coverage-row:first-child {
    border-top: 0;
}

.coverage-row span:first-child,
.coverage-row--head span {
    color: #f8fbff;
    font-weight: 900;
}

.coverage-row--head {
    background: rgba(139,227,255,0.08);
    color: var(--industry-cyan);
    font-family: var(--font-mono);
    font-size: 0.74rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.expanding-section {
    background: #eef5fb;
    padding: clamp(3.5rem, 6vw, 5rem) clamp(1.25rem, 4vw, 4rem);
}

.expanding-panel {
    display: grid;
    grid-template-columns: minmax(340px, 0.86fr) minmax(320px, 0.74fr);
    gap: clamp(2.5rem, 7vw, 7rem);
    align-items: center;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
}

.expanding-panel h2 {
    margin-top: 1rem;
}

.expanding-panel__body {
    display: grid;
    justify-items: start;
    gap: 1.6rem;
}

.expanding-panel__body p {
    margin: 0;
}

@keyframes industries-rise {
    from { opacity: 0; transform: translateY(22px); }
    to { opacity: 1; transform: none; }
}

@keyframes industries-marquee {
    from { transform: translateX(0); }
    to { transform: translateX(calc(-50% - (var(--rail-gap) / 2))); }
}

@media (prefers-reduced-motion: reduce) {
    .industry-rail {
        animation: none;
    }
}

@media (max-width: 1120px) {
    .industries-hero__inner,
    .industries-intro__inner,
    .vertical-layout,
    .vertical-layout--reverse,
    .coverage-grid,
    .expanding-panel {
        grid-template-columns: 1fr;
    }

    .industries-hero__inner {
        align-items: start;
    }

    .vertical-layout--reverse .vertical-media {
        order: -1;
    }
}

@media (max-width: 760px) {
    .industries-hero {
        min-height: auto;
        padding-top: calc(var(--nav-height) + 2.5rem);
    }

    .industries-hero__copy h1 {
        max-width: 27rem;
        font-size: clamp(2.25rem, 8.6vw, 2.85rem);
        line-height: 1.02;
        letter-spacing: -0.045em;
        text-wrap: balance;
    }

    .industries-hero__ctas,
    .industries-hero__ctas .btn {
        width: 100%;
    }

    .industries-hero__marquee {
        mask-image: linear-gradient(90deg, transparent 0, #000 4%, #000 96%, transparent 100%);
    }

    .industry-tile {
        flex-basis: min(82vw, 360px);
        border-radius: 22px;
    }

    .industry-tile span {
        left: 0.8rem;
        right: 0.8rem;
        bottom: 0.8rem;
        justify-content: center;
        text-align: center;
    }

    .industries-intro,
    .vertical-section,
    .coverage-section {
        padding: 5rem 0;
    }

    .expanding-section {
        padding: 3.5rem 1.25rem;
    }

    .industries-intro h2,
    .vertical-copy h2,
    .coverage-copy h2,
    .expanding-panel h2 {
        font-size: clamp(2.35rem, 11vw, 3.8rem);
    }

    .vertical-media,
    .vertical-media img {
        min-height: 430px;
    }

    .vertical-signal-board {
        grid-template-columns: 1fr;
    }

    .coverage-row,
    .coverage-row--head {
        grid-template-columns: 1fr;
    }
}
