.industries-page {
    --navy: #1A237E;
    --navy-light: #283593;
    --gold: #F2C94C;
    --gold-dark: #F4B400;
    --charcoal: #263238;
    --surface: #FAFAF8;
    color: var(--charcoal);
}

.ind-hero {
    background:
        radial-gradient(circle at 16% 16%, rgba(26, 35, 126, .1), transparent 26rem),
        radial-gradient(circle at 88% 70%, rgba(242, 201, 76, .16), transparent 24rem),
        linear-gradient(180deg, #fff 0%, #FAFAF8 100%);
}

.ind-hero__grid {
    background-image:
        linear-gradient(rgba(26, 35, 126, .035) 1px, transparent 1px),
        linear-gradient(90deg, rgba(26, 35, 126, .035) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(to bottom, black 12%, transparent 92%);
}

.ind-section {
    padding: 5.5rem 0;
}

.ind-heading {
    display: grid;
    gap: 1.5rem;
}

.ind-heading h2 {
    margin-top: 1rem;
    max-width: 44rem;
    font-size: clamp(1.875rem, 3.8vw, 2.75rem);
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -.03em;
    color: var(--navy);
}

.ind-heading > p {
    max-width: 34rem;
    align-self: end;
    font-size: 1rem;
    line-height: 1.75;
    color: rgba(38, 50, 56, .65);
}

.ind-eyebrow {
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .2em;
    text-transform: uppercase;
    color: var(--navy);
}

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

.ind-btn-primary,
.ind-btn-secondary {
    display: inline-flex;
    min-height: 3.25rem;
    align-items: center;
    justify-content: center;
    gap: .5rem;
    border-radius: .75rem;
    padding: .875rem 1.375rem;
    font-size: .875rem;
    font-weight: 700;
    transition: transform .2s ease, box-shadow .2s ease, background-color .2s ease, border-color .2s ease, color .2s ease;
}

.ind-btn-primary {
    background: var(--gold);
    color: var(--charcoal);
    box-shadow: 0 12px 28px rgba(244, 180, 0, .28);
}

.ind-btn-primary:hover {
    background: var(--gold-dark);
    transform: translateY(-2px);
}

.ind-btn-secondary {
    border: 1px solid rgba(26, 35, 126, .18);
    background: rgba(255, 255, 255, .88);
    color: var(--navy);
}

.ind-btn-secondary:hover {
    border-color: rgba(26, 35, 126, .35);
    background: #fff;
    transform: translateY(-2px);
}

.ind-visual {
    position: relative;
}

.ind-visual__panel {
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 1.5rem;
    background:
        radial-gradient(circle at 90% 10%, rgba(242, 201, 76, .22), transparent 35%),
        linear-gradient(160deg, #1A237E, #283593);
    padding: 1.4rem;
    box-shadow: 0 28px 70px rgba(26, 35, 126, .22);
}

.ind-visual__chip {
    position: absolute;
    border: 1px solid rgba(26, 35, 126, .12);
    border-radius: 999px;
    background: rgba(255, 255, 255, .94);
    padding: .55rem .85rem;
    font-size: .7rem;
    font-weight: 700;
    color: var(--navy);
    box-shadow: 0 10px 24px rgba(26, 35, 126, .12);
}

.ind-visual__chip--left {
    bottom: 12%;
    left: -.75rem;
}

.ind-visual__chip--right {
    top: 12%;
    right: -.75rem;
}

.ind-card {
    display: flex;
    min-height: 100%;
    flex-direction: column;
    border: 1px solid rgba(26, 35, 126, .1);
    border-radius: 1.25rem;
    background: #fff;
    padding: 1.5rem;
    box-shadow: 0 1px 2px rgba(26, 35, 126, .03);
    transition: transform .25s ease, border-color .25s ease, box-shadow .25s ease;
}

.ind-card:hover {
    border-color: rgba(26, 35, 126, .22);
    box-shadow: 0 18px 40px rgba(26, 35, 126, .1);
    transform: translateY(-4px);
}

.ind-card__icon {
    display: flex;
    width: 3.1rem;
    height: 3.1rem;
    flex-shrink: 0;
    align-items: center;
    justify-content: center;
    border-radius: .95rem;
    background: linear-gradient(135deg, rgba(26, 35, 126, .08), rgba(242, 201, 76, .18));
    color: var(--navy);
}

.ind-card h3 {
    font-size: 1.15rem;
    font-weight: 700;
    letter-spacing: -.02em;
    color: var(--navy);
}

.ind-card__desc {
    margin-top: .45rem;
    font-size: .88rem;
    line-height: 1.6;
    color: rgba(38, 50, 56, .68);
}

.ind-card__groups {
    display: grid;
    gap: 1rem;
    margin-top: 1.25rem;
}

.ind-card__groups h4 {
    margin-bottom: .45rem;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .14em;
    text-transform: uppercase;
    color: rgba(26, 35, 126, .55);
}

.ind-card__groups ul {
    display: grid;
    gap: .35rem;
}

.ind-card__groups li {
    font-size: .8rem;
    line-height: 1.45;
    color: rgba(38, 50, 56, .75);
}

.ind-card__benefits li {
    display: flex;
    align-items: center;
    gap: .45rem;
    font-weight: 600;
}

.ind-card__link {
    display: inline-flex;
    width: fit-content;
    align-items: center;
    gap: .4rem;
    margin-top: auto;
    padding-top: 1.3rem;
    font-size: .875rem;
    font-weight: 700;
    color: var(--navy);
    transition: gap .2s ease, color .2s ease;
}

.ind-card__link:hover {
    gap: .7rem;
    color: var(--gold-dark);
}

.ind-challenge,
.ind-why {
    border: 1px solid rgba(26, 35, 126, .1);
    border-radius: 1.1rem;
    background: #fff;
    padding: 1.25rem;
    transition: transform .22s ease, border-color .22s ease, box-shadow .22s ease;
}

.ind-challenge {
    min-height: 8.5rem;
}

.ind-why {
    min-height: 14rem;
}

.ind-challenge:hover,
.ind-why:hover {
    border-color: rgba(242, 201, 76, .55);
    box-shadow: 0 14px 28px rgba(26, 35, 126, .08);
    transform: translateY(-3px);
}

.ind-challenge__icon,
.ind-why__icon {
    display: inline-flex;
    width: 2.55rem;
    height: 2.55rem;
    align-items: center;
    justify-content: center;
    border-radius: .8rem;
    background: rgba(26, 35, 126, .08);
    color: var(--navy);
}

.ind-challenge h3,
.ind-why h3 {
    margin-top: 1rem;
    font-size: .95rem;
    font-weight: 700;
    color: var(--navy);
}

.ind-why p {
    margin-top: .55rem;
    font-size: .82rem;
    line-height: 1.65;
    color: rgba(38, 50, 56, .65);
}

.ind-process {
    display: grid;
    gap: 1.75rem;
}

.ind-process li {
    position: relative;
}

.ind-process__marker {
    position: relative;
    display: flex;
    height: 2.75rem;
    align-items: center;
}

.ind-process__marker span {
    position: relative;
    z-index: 2;
    display: flex;
    width: 2.75rem;
    height: 2.75rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(242, 201, 76, .55);
    border-radius: 999px;
    background: rgba(242, 201, 76, .18);
    font-size: .7rem;
    font-weight: 800;
    color: var(--navy);
}

.ind-process h3 {
    margin-top: 1.1rem;
    font-size: 1rem;
    font-weight: 700;
    color: var(--navy);
}

.ind-process p {
    margin-top: .45rem;
    max-width: 13rem;
    font-size: .8rem;
    line-height: 1.6;
    color: rgba(38, 50, 56, .65);
}

.ind-tech {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: .75rem;
}

.ind-tech li {
    display: flex;
    min-height: 3.35rem;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(26, 35, 126, .1);
    border-radius: .9rem;
    background: #fff;
    padding: .7rem 1rem;
    text-align: center;
    font-size: .82rem;
    font-weight: 700;
    letter-spacing: -.01em;
    color: rgba(38, 50, 56, .68);
    transition: border-color .2s ease, color .2s ease, transform .2s ease, box-shadow .2s ease;
}

.ind-tech li:hover {
    border-color: rgba(26, 35, 126, .25);
    color: var(--navy);
    box-shadow: 0 10px 22px rgba(26, 35, 126, .07);
    transform: translateY(-2px);
}

.ind-final-cta {
    position: relative;
    overflow: hidden;
    border-radius: 1.75rem;
    background:
        radial-gradient(circle at 85% 20%, rgba(242, 201, 76, .35), transparent 25%),
        radial-gradient(circle at 70% 100%, rgba(40, 53, 147, .55), transparent 38%),
        #1A237E;
    padding: 3rem 1.5rem;
    box-shadow: 0 30px 70px rgba(26, 35, 126, .22);
}

.ind-final-cta::after {
    position: absolute;
    top: -8rem;
    right: -4rem;
    width: 28rem;
    height: 28rem;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    content: "";
}

.reveal {
    opacity: 1;
    transform: none;
}

.js-reveal-ready .reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity .65s ease, transform .65s cubic-bezier(.2, .7, .2, 1);
}

.js-reveal-ready .reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (min-width: 640px) {
    .ind-tech {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

@media (min-width: 768px) {
    .ind-heading {
        grid-template-columns: minmax(0, 1.2fr) minmax(16rem, .8fr);
        align-items: end;
    }

    .ind-process {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }

    .ind-process li:nth-child(-n+3) .ind-process__marker::after {
        position: absolute;
        left: 2.75rem;
        width: calc(100% - 1rem);
        height: 1px;
        background: linear-gradient(90deg, rgba(242, 201, 76, .7), rgba(26, 35, 126, .12));
        content: "";
    }

    .ind-tech {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .ind-final-cta {
        padding: 4rem;
    }
}

@media (min-width: 1024px) {
    .ind-section {
        padding: 6.5rem 0;
    }

    .ind-process {
        grid-template-columns: repeat(6, minmax(0, 1fr));
        gap: 1rem;
    }

    .ind-process li .ind-process__marker::after {
        position: absolute;
        left: 2.75rem;
        width: calc(100% - .5rem);
        height: 1px;
        background: linear-gradient(90deg, rgba(242, 201, 76, .7), rgba(26, 35, 126, .12));
        content: "";
    }

    .ind-process li:last-child .ind-process__marker::after {
        display: none;
    }

    .ind-tech {
        grid-template-columns: repeat(6, minmax(0, 1fr));
    }

    .ind-final-cta {
        padding: 5rem;
    }
}

@media (max-width: 640px) {
    .ind-section {
        padding: 4.25rem 0;
    }

    .ind-visual__chip {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .js-reveal-ready .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}
