/* Digital Buckeye homepage: editorial service, work, credibility, and contact layouts. */
.db-home {
    background: var(--db-gray-100);
    color: var(--db-ink-950);
}

.db-home main {
    background: var(--db-gray-100);
}

/* Neutralize legacy .content-container paint from dB10032024.css. Sections own
   their surfaces so color and spacing remain continuous across the viewport. */
.db-home .content-container {
    background: transparent;
    color: inherit;
}

.db-home .db-eyebrow {
    color: var(--db-blue-700);
}

.db-home .content-section > .content-container {
    padding-block: clamp(4.25rem, 7vw, 6.5rem);
}

.db-home h2 {
    font-size: clamp(2rem, 1.55rem + 1.35vw, 3.15rem);
    line-height: 1.08;
}

.db-home :where(.home-hero__lead, .home-section-heading > p, .service-card p, .needs-list p, .featured-case p, .project-grid p, .home-opsentra p, .home-about p, .home-contact p) {
    max-width: 65ch;
}

.home-actions {
    display: flex;
    flex-wrap: wrap;
    gap: var(--db-space-3);
    align-items: center;
}

.home-hero {
    padding-block: clamp(7.25rem, 11vw, 9.5rem) clamp(4rem, 7vw, 6.5rem);
    border-bottom: var(--db-border-thin);
    background: var(--db-gray-100);
}

.home-hero__grid {
    display: grid;
    grid-template-columns: minmax(0, 1.08fr) minmax(20rem, 0.92fr);
    gap: clamp(2.5rem, 6vw, 5.5rem);
    align-items: center;
}

.home-hero__copy h1 {
    max-width: 14ch;
    margin-bottom: var(--db-space-5);
    color: var(--db-ink-950);
    font-size: clamp(2.5rem, 3.8vw, 4.25rem);
    line-height: 1.02;
    letter-spacing: -0.04em;
    text-transform: none;
}

.home-hero__lead {
    max-width: 38rem;
    color: var(--db-ink-800);
    font-size: clamp(1rem, 0.96rem + 0.25vw, 1.2rem);
    line-height: 1.65;
}

.home-hero__media {
    min-height: clamp(20rem, 34vw, 31rem);
    overflow: hidden;
    margin: 0;
    border: 1px solid #263248;
    border-top: 4px solid #22d3ee;
    background: #0f172a;
}

.home-hero__media img {
    display: block;
    width: 100%;
    height: 100%;
    min-height: inherit;
    object-fit: cover;
    object-position: center;
}

.db-home p.home-hero__positioning {
    margin: 0 0 var(--db-space-4);
    color: #f8fafc;
    font-family: var(--db-font-display);
    font-size: clamp(1.4rem, 1.15rem + 0.8vw, 1.85rem);
    font-weight: var(--db-weight-bold);
    line-height: 1.3;
}

.db-home p.home-hero__positioning span {
    color: #22d3ee;
}

.home-hero__placeholder {
    margin: 0;
    min-height: clamp(20rem, 34vw, 31rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: clamp(1.5rem, 4vw, 2.5rem);
    border: 1px solid #263248;
    border-top: 4px solid var(--db-cyan-300);
    background:
        linear-gradient(90deg, rgba(129, 226, 229, 0.07) 1px, transparent 1px),
        linear-gradient(rgba(129, 226, 229, 0.07) 1px, transparent 1px),
        #0f172a;
    background-size: 2rem 2rem;
    color: var(--db-white);
}

.home-hero__placeholder span {
    width: fit-content;
    margin-bottom: var(--db-space-4);
    padding: 0.4rem 0.55rem;
    background: var(--db-blue-700);
    color: var(--db-white);
    font-family: var(--db-font-display);
    font-size: var(--db-font-size-xs);
    font-weight: var(--db-weight-bold);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.home-hero__placeholder p {
    max-width: 29rem;
    margin-bottom: var(--db-space-3);
    padding: var(--db-space-4);
    border-left: 3px solid var(--db-cyan-300);
    background: rgba(2, 6, 23, 0.9);
    color: var(--db-white);
    font-family: var(--db-font-display);
    font-weight: var(--db-weight-bold);
    line-height: 1.45;
}

.home-hero__placeholder figcaption {
    width: fit-content;
    padding-inline: var(--db-space-2);
    background: #0f172a;
    color: var(--db-gray-300);
    font-family: var(--db-font-display);
}

.home-section-heading {
    display: grid;
    grid-template-columns: minmax(15rem, 0.75fr) minmax(20rem, 1.25fr);
    column-gap: clamp(2rem, 7vw, 7rem);
    margin-bottom: clamp(2.5rem, 5vw, 4.25rem);
    padding-bottom: var(--db-space-6);
    border-bottom: var(--db-border-thin);
}

.home-section-heading .db-eyebrow {
    grid-column: 1;
}

.home-section-heading h2,
.home-section-heading > p:last-child {
    grid-column: 2;
}

.home-section-heading h2 {
    grid-row: 1 / span 2;
    max-width: 16ch;
    color: var(--db-ink-950);
    letter-spacing: -0.03em;
    text-transform: none;
}

.home-section-heading > p:last-child {
    max-width: 38rem;
    color: var(--db-gray-700);
}

.home-services {
    background: var(--db-gray-100);
    color: var(--db-ink-950);
}

.service-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: var(--db-border-thin);
    border-left: var(--db-border-thin);
}

.service-card {
    position: relative;
    min-width: 0;
    scroll-margin-top: 5.5rem;
    border-right: var(--db-border-thin);
    border-bottom: var(--db-border-thin);
    background: var(--db-white);
}

.service-card__number {
    position: absolute;
    z-index: 1;
    top: 0;
    left: 0;
    padding: 0.45rem 0.65rem;
    background: var(--db-blue-700);
    color: var(--db-white);
    font-family: var(--db-font-display);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: var(--db-weight-bold);
}

.service-card > img {
    display: block;
    width: 100%;
    aspect-ratio: 1983 / 793;
    border-bottom: var(--db-border-thin);
    object-fit: cover;
}

.service-card__body {
    display: flex;
    min-height: 25rem;
    flex-direction: column;
    padding: clamp(1.4rem, 3vw, 2.25rem);
}

.service-card h3 {
    color: var(--db-ink-950);
    letter-spacing: -0.02em;
    text-transform: none;
}

.service-card p,
.service-card li {
    color: var(--db-gray-700);
}

.service-card p {
    line-height: 1.65;
}

.service-card ul {
    margin: 0 0 var(--db-space-6);
    padding: 0;
    list-style: none;
}

.service-card li {
    padding-block: var(--db-space-2);
    border-top: var(--db-border-thin);
}

.service-card li:last-child {
    border-bottom: var(--db-border-thin);
}

.service-card .db-text-link {
    margin-top: auto;
}

.home-needs {
    border-block: var(--db-border-thin);
    background: var(--db-white);
    color: var(--db-ink-950);
}

.home-needs__grid {
    display: grid;
    grid-template-columns: minmax(17rem, 0.8fr) minmax(20rem, 1.2fr);
    gap: clamp(3rem, 8vw, 8rem);
}

.home-needs h2 {
    max-width: 13ch;
    color: var(--db-ink-950);
    letter-spacing: -0.03em;
    text-transform: none;
}

.needs-list {
    border-top: 2px solid var(--db-ink-950);
}

.needs-list article {
    display: grid;
    grid-template-columns: 2rem minmax(9rem, 0.75fr) minmax(12rem, 1.25fr);
    gap: var(--db-space-5);
    padding-block: var(--db-space-6);
    border-bottom: var(--db-border-thin);
}

.needs-list span {
    color: var(--db-blue-700);
    font-family: var(--db-font-display);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    font-weight: var(--db-weight-bold);
}

.needs-list h3,
.needs-list p {
    margin: 0;
    color: var(--db-ink-950);
}

.needs-list h3 {
    font-size: var(--db-font-size-lg);
    text-transform: none;
}

.needs-list p {
    color: var(--db-gray-700);
}

.home-work {
    background: #070b14;
    color: var(--db-white);
}

.home-work .db-eyebrow {
    color: var(--db-cyan-300);
}

.home-section-heading--light {
    border-color: rgba(255, 255, 255, 0.25);
}

.home-section-heading--light h2,
.home-section-heading--light .db-eyebrow {
    color: var(--db-white);
}

.featured-case {
    display: grid;
    grid-template-columns: minmax(16rem, 0.7fr) minmax(24rem, 1.3fr);
    margin-bottom: var(--db-space-8);
    border: 1px solid rgba(255, 255, 255, 0.32);
}

.featured-case__intro,
.featured-case__details {
    padding: clamp(1.5rem, 4vw, 3rem);
}

.featured-case__intro {
    border-right: 1px solid rgba(255, 255, 255, 0.32);
}

.featured-case__number,
.project-grid > article > span {
    display: block;
    margin-bottom: var(--db-space-7);
    color: var(--db-cyan-300);
    font-family: var(--db-font-display);
    font-size: clamp(2.5rem, 5vw, 5rem);
    font-weight: var(--db-weight-bold);
    line-height: 1;
}

.featured-case h3,
.featured-case h4,
.project-grid h3 {
    color: var(--db-white);
    text-transform: none;
}

.featured-case__lead {
    color: var(--db-gray-300);
    font-size: var(--db-font-size-lg);
}

.featured-case__details > div {
    display: grid;
    grid-template-columns: minmax(8rem, 0.4fr) minmax(15rem, 1.6fr);
    gap: var(--db-space-5);
    padding-block: var(--db-space-5);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
}

.featured-case__details > div h4,
.featured-case__details > div p {
    margin: 0;
}

.featured-case__details > div p {
    color: var(--db-gray-300);
}

.featured-case blockquote {
    margin: var(--db-space-7) 0 0;
    padding: var(--db-space-6);
    border-left: 4px solid var(--db-blue-700);
    background: rgba(255, 255, 255, 0.06);
}

.featured-case blockquote p {
    color: var(--db-white);
    font-size: var(--db-font-size-lg);
}

.featured-case blockquote footer {
    padding: 0;
    color: var(--db-cyan-300);
    font-family: var(--db-font-display);
    font-size: var(--db-font-size-sm);
}

.project-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid rgba(255, 255, 255, 0.3);
    border-left: 1px solid rgba(255, 255, 255, 0.3);
}

.project-grid article {
    display: flex;
    min-height: 23rem;
    flex-direction: column;
    padding: clamp(1.5rem, 3vw, 2.25rem);
    border-right: 1px solid rgba(255, 255, 255, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.3);
}

.project-grid article > p:not(.db-eyebrow) {
    color: var(--db-gray-300);
}

.project-grid .db-text-link {
    margin-top: auto;
    color: var(--db-white);
    text-decoration-color: var(--db-cyan-300);
}

.home-work__actions {
    justify-content: flex-end;
    margin-top: var(--db-space-7);
}

.home-opsentra {
    background: #020617;
    color: var(--db-white);
}

.home-opsentra__heading {
    display: grid;
    grid-template-columns: minmax(16rem, 0.7fr) minmax(22rem, 1.3fr);
    gap: clamp(3rem, 8vw, 8rem);
    align-items: end;
    padding-bottom: var(--db-space-7);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.home-opsentra .db-eyebrow,
.home-opsentra h2 {
    color: var(--db-white);
}

.home-opsentra h2 {
    max-width: 15ch;
    text-transform: none;
}

.home-opsentra__heading > div:last-child > p {
    max-width: 41rem;
    margin-bottom: 0;
    color: #cbd5e1;
    font-size: var(--db-font-size-lg);
}

.home-opsentra__brand img {
    display: block;
    width: min(100%, 17.5rem);
    height: auto;
    margin-top: var(--db-space-6);
}

.home-opsentra__product {
    display: grid;
    grid-template-columns: minmax(20rem, 1.05fr) minmax(20rem, 0.95fr);
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
}

.home-opsentra__media {
    margin: 0;
    padding: clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem) 0;
    border-right: 1px solid rgba(255, 255, 255, 0.25);
}

.home-opsentra__media img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 34rem;
    object-fit: contain;
    border: 1px solid #334155;
    background: #0f172a;
}

.home-opsentra__media figcaption {
    margin-top: var(--db-space-3);
    color: #94a3b8;
    font-size: var(--db-font-size-sm);
}

.home-opsentra__details {
    padding: clamp(2rem, 5vw, 4rem) 0 clamp(2rem, 5vw, 4rem) clamp(2rem, 5vw, 4rem);
}

.home-opsentra__capabilities {
    margin: 0;
    padding: 0;
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    list-style: none;
}

.home-opsentra__capabilities li {
    display: grid;
    grid-template-columns: 2.5rem minmax(0, 1fr);
    gap: var(--db-space-4);
    padding: var(--db-space-4) 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    color: var(--db-white);
    font-family: var(--db-font-display);
    font-size: var(--db-font-size-sm);
    font-weight: var(--db-weight-bold);
}

.home-opsentra__capabilities span {
    color: #67e8f9;
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1;
}

.home-opsentra__direction {
    margin: var(--db-space-6) 0 0;
    color: #cbd5e1;
    line-height: var(--db-line-height-relaxed);
}

.home-opsentra__footer {
    display: flex;
    gap: var(--db-space-6);
    align-items: center;
    justify-content: space-between;
    padding-top: var(--db-space-7);
}

.home-opsentra__footer > p {
    max-width: 42rem;
    margin: 0;
    color: #cbd5e1;
    line-height: var(--db-line-height-relaxed);
}

.db-button--on-dark {
    border-color: var(--db-cyan-300);
    color: var(--db-white);
}

.db-button--on-dark:hover {
    border-color: var(--db-white);
    background: var(--db-white);
    color: #020617;
}

.home-about {
    background: var(--db-gray-100);
    color: var(--db-ink-950);
}

.home-about__grid {
    display: grid;
    grid-template-columns: minmax(20rem, 1.15fr) minmax(20rem, 0.85fr);
    gap: clamp(3rem, 9vw, 9rem);
    margin-bottom: clamp(3.5rem, 8vw, 7rem);
}

.home-about h2 {
    max-width: 14ch;
    color: var(--db-ink-950);
    letter-spacing: -0.03em;
    text-transform: none;
}

.home-about__grid > div > p {
    max-width: 42rem;
    color: var(--db-gray-700);
    font-size: var(--db-font-size-lg);
}

.home-about__grid > div > .db-text-link {
    margin-top: var(--db-space-4);
}

.capability-list {
    margin: 0;
    padding: 0;
    border-top: 2px solid var(--db-ink-950);
    list-style: none;
}

.capability-list li {
    display: grid;
    grid-template-columns: 2.5rem 1fr;
    gap: var(--db-space-4);
    padding-block: var(--db-space-5);
    border-bottom: var(--db-border-thin);
    color: var(--db-ink-950);
    font-family: var(--db-font-display);
    font-weight: var(--db-weight-bold);
}

.capability-list span {
    color: var(--db-blue-700);
    font-size: clamp(1.1rem, 1.5vw, 1.35rem);
    line-height: 1;
}

.founder-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    border-top: var(--db-border-thin);
    border-left: var(--db-border-thin);
}

.founder-grid article {
    display: grid;
    grid-template-columns: minmax(8rem, 0.42fr) minmax(10rem, 0.58fr);
    border-right: var(--db-border-thin);
    border-bottom: var(--db-border-thin);
}

.founder-grid img {
    display: block;
    width: 100%;
    height: 100%;
    aspect-ratio: 1;
    border-right: var(--db-border-thin);
    object-fit: cover;
}

.founder-grid article > div {
    align-self: end;
    padding: var(--db-space-5);
}

.founder-grid h3,
.founder-grid p {
    margin: 0;
    color: var(--db-ink-950);
    text-transform: none;
}

.founder-grid p {
    color: var(--db-gray-700);
}

.home-contact {
    border-top: 4px solid var(--db-blue-700);
    background: var(--db-white);
    color: var(--db-ink-950);
}

.home-contact__grid {
    display: grid;
    grid-template-columns: minmax(18rem, 0.75fr) minmax(24rem, 1.25fr);
    gap: clamp(3rem, 9vw, 9rem);
}

.home-contact h2 {
    max-width: 12ch;
    color: var(--db-ink-950);
    letter-spacing: -0.03em;
    text-transform: none;
}

.home-contact__intro > p:last-of-type {
    color: var(--db-gray-700);
    font-size: var(--db-font-size-lg);
}

.home-contact address {
    display: grid;
    gap: var(--db-space-3);
    margin-top: var(--db-space-7);
    font-style: normal;
}

.home-contact address a {
    width: fit-content;
    color: var(--db-ink-950);
    font-family: var(--db-font-display);
    font-weight: var(--db-weight-bold);
    text-underline-offset: 0.25em;
}

.home-contact__form {
    padding: clamp(1.5rem, 4vw, 3rem);
    border: var(--db-border-thin);
    border-top: 4px solid var(--db-blue-700);
    background: var(--db-white);
}

.home-contact__next-step h3 {
    margin: 0 0 var(--db-space-5);
    color: var(--db-ink-950);
    font-size: clamp(1.5rem, 3vw, 2.4rem);
    line-height: 1.05;
}

.home-contact__next-step ul {
    margin: 0 0 var(--db-space-7);
    padding: 0;
    border-top: var(--db-border-thin);
    list-style: none;
}

.home-contact__next-step li {
    padding: var(--db-space-4) 0;
    border-bottom: var(--db-border-thin);
    color: var(--db-gray-700);
}

@media (max-width: 74.998rem) {
    .home-hero__grid {
        grid-template-columns: minmax(0, 1fr) minmax(18rem, 0.75fr);
    }

    .service-card__body {
        min-height: 31rem;
    }

    .needs-list article {
        grid-template-columns: 2rem 1fr;
    }

    .needs-list article p {
        grid-column: 2;
    }
}

@media (max-width: 61.998rem) {
    .home-hero__grid,
    .home-section-heading,
    .home-needs__grid,
    .featured-case,
    .home-opsentra__heading,
    .home-opsentra__product,
    .home-about__grid,
    .home-contact__grid {
        grid-template-columns: 1fr;
    }

    .home-hero__copy h1 {
        max-width: 14ch;
    }

    .home-hero__placeholder {
        min-height: 25rem;
    }

    .home-hero__media {
        min-height: 25rem;
    }

    .home-section-heading .db-eyebrow,
    .home-section-heading h2,
    .home-section-heading > p:last-child {
        grid-column: 1;
    }

    .home-section-heading h2 {
        grid-row: auto;
    }

    .service-grid,
    .project-grid {
        grid-template-columns: 1fr;
    }

    .service-card__body {
        min-height: 0;
    }

    .featured-case__intro {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.32);
    }

    .project-grid article {
        min-height: 20rem;
    }

    .home-opsentra__heading,
    .home-about__grid,
    .home-contact__grid {
        gap: var(--db-space-7);
    }

    .home-opsentra__media {
        padding-right: 0;
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, 0.25);
    }

    .home-opsentra__details {
        padding-left: 0;
    }

    .home-opsentra__footer {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 47.998rem) {
    .home-hero {
        padding-top: 7.5rem;
    }

    .home-hero__copy h1 {
        font-size: clamp(2.25rem, 9vw, 2.6rem);
        line-height: 1.04;
    }

    .home-hero__copy .db-eyebrow {
        max-width: 28ch;
        font-size: 0.7rem;
    }

    .home-hero__placeholder {
        min-height: 21rem;
    }

    .home-hero__media {
        min-height: 21rem;
    }

    .founder-grid,
    .founder-grid article {
        grid-template-columns: 1fr;
    }

    .founder-grid img {
        height: auto;
        border-right: 0;
        border-bottom: var(--db-border-thin);
    }

    .featured-case__details > div,
    .needs-list article {
        grid-template-columns: 1fr;
    }

    .needs-list article p {
        grid-column: 1;
    }

    .featured-case__number,
    .project-grid > article > span {
        margin-bottom: var(--db-space-5);
    }

    .home-actions .db-button {
        width: 100%;
    }
}

/* Opsentra-aligned continuous dark canvas. Keep this final so the legacy site
   stylesheet cannot reintroduce light section surfaces. */
.db-home,
.db-home main,
.db-home .home-hero,
.db-home .home-services,
.db-home .home-needs,
.db-home .home-work,
.db-home .home-opsentra,
.db-home .home-about,
.db-home .home-contact {
    background: #020617;
    color: #f8fafc;
}

.db-home .home-hero,
.db-home .home-needs,
.db-home .home-contact {
    border-color: #1e293b;
}

.db-home .db-eyebrow,
.db-home .home-work .db-eyebrow,
.db-home .home-opsentra .db-eyebrow {
    color: #22d3ee;
}

.db-home :where(
    .home-hero__copy h1,
    .home-section-heading h2,
    .home-needs h2,
    .home-about h2,
    .home-contact h2,
    .service-card h3,
    .needs-list h3,
    .capability-list li,
    .founder-grid h3,
    .home-contact__next-step h3
) {
    color: #f8fafc;
}

.db-home :where(
    .home-hero__lead,
    .home-section-heading > p:last-child,
    .service-card p,
    .service-card li,
    .needs-list p,
    .home-about__grid > div > p,
    .founder-grid p,
    .home-contact__intro > p:last-of-type,
    .home-contact__next-step li
) {
    color: #cbd5e1;
}

.db-home .home-section-heading,
.db-home .service-grid,
.db-home .service-card,
.db-home .service-card > img,
.db-home .service-card li,
.db-home .needs-list,
.db-home .needs-list article,
.db-home .capability-list,
.db-home .capability-list li,
.db-home .founder-grid,
.db-home .founder-grid article,
.db-home .founder-grid img,
.db-home .home-contact__form,
.db-home .home-contact__next-step ul,
.db-home .home-contact__next-step li {
    border-color: #1e293b;
}

.db-home .service-card,
.db-home .home-contact__form {
    background: #0f172a;
}

.db-home .service-card {
    color: #f8fafc;
}

.db-home .needs-list {
    border-top-color: #22d3ee;
}

.db-home .needs-list span,
.db-home .capability-list span {
    color: #22d3ee;
}

.db-home .capability-list {
    border-top-color: #22d3ee;
}

.db-home .founder-grid article {
    background: #0f172a;
}

.db-home .home-contact {
    border-top-color: #2563eb;
}

.db-home .home-contact address a,
.db-home .db-text-link {
    color: #f8fafc;
    text-decoration-color: #22d3ee;
}

.db-home .home-contact address a:hover,
.db-home .db-text-link:hover {
    color: #22d3ee;
}

.db-home .db-button--secondary {
    border-color: #22d3ee;
    color: #f8fafc;
}

.db-home .db-button--secondary:hover {
    border-color: #22d3ee;
    background: #22d3ee;
    color: #020617;
}

/* Exact selector matches for the former light-theme rules. */
.db-home .home-hero__copy h1,
.db-home .home-section-heading h2,
.db-home .home-needs h2,
.db-home .home-about h2,
.db-home .home-contact h2,
.db-home .service-card h3,
.db-home .needs-list h3,
.db-home .founder-grid h3,
.db-home .home-contact__next-step h3 {
    color: #f8fafc;
}

.db-home .home-hero__lead,
.db-home .home-section-heading > p:last-child,
.db-home .service-card p,
.db-home .service-card li,
.db-home .needs-list p,
.db-home .home-about__grid > div > p,
.db-home .founder-grid p,
.db-home .home-contact__intro > p:last-of-type,
.db-home .home-contact__next-step li {
    color: #cbd5e1;
}

.db-home .capability-list li {
    color: #f8fafc;
}
