/* Data Engineer only. Existing NovaData typography and brand tokens. */
.de-demo {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    align-items: center;
    gap: 48px;
    padding: 40px;
    margin: 0 0 27px;
    border-radius: 20px;
    background: #eaf6fd;
    color: var(--text-main, #161616);
    font-family: Roboto, Inter, sans-serif;
    scroll-margin-top: 100px;
}
.de-demo__heading {
    display: flex;
    align-items: center;
    gap: 24px;
    margin-bottom: 20px;
}
.de-demo__heading-text { min-width: 0; }
.de-demo .de-demo__emblem {
    flex: 0 0 112px;
    width: 112px;
    height: 112px;
    object-fit: contain;
}
.de-demo .de-demo__eyebrow {
    margin: 0 0 16px;
    color: #096b9e;
    font-size: 12px;
    font-weight: 600;
    line-height: 18px;
    letter-spacing: 1.4px;
    text-transform: uppercase;
}
.de-demo .de-demo__title {
    margin: 0;
    font-family: OswaldMedium, sans-serif;
    font-size: 44px;
    font-weight: 500;
    line-height: 1.14;
    letter-spacing: -0.5px;
    text-transform: none;
}
.de-demo__name { display: inline-block; max-width: 100%; }
.de-demo__title .de-demo__free {
    display: block;
    color: #096b9e;
}
.de-demo .de-demo__description {
    max-width: 620px;
    margin: 0;
    color: var(--text-body, #333);
    font-size: 18px;
    line-height: 1.5;
}
.de-demo .de-demo__details {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin: 20px 0 0;
    color: #486575;
    font-size: 14px;
    line-height: 1.5;
}
.de-demo__access {
    min-width: 0;
    padding-left: 32px;
    border-left: 1px solid #c6e1ef;
}
.de-demo .de-demo__button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 60px;
    padding: 16px 20px;
    border: 2px solid transparent;
    border-radius: 12px;
    background: #087eb5;
    color: #fff;
    font-size: 18px;
    font-weight: 500;
    line-height: 1.4;
    text-align: center;
    text-decoration: none;
    transition: background-color 160ms ease;
}
.de-demo .de-demo__button-icon {
    flex: 0 0 28px;
    width: 28px;
    height: 28px;
    object-fit: contain;
}
.de-demo .de-demo__button:hover {
    background: #066a9a;
    color: #fff;
    text-decoration: none;
}
.de-demo .de-demo__button:focus-visible {
    outline: 3px solid #075a84;
    outline-offset: 4px;
}
.de-demo .de-demo__button:active {
    background: #075a84;
}
@media (max-width: 1100px) {
    .de-demo { gap: 32px; padding: 32px; }
    .de-demo .de-demo__title { font-size: 40px; }
    .de-demo .de-demo__emblem { flex-basis: 96px; width: 96px; height: 96px; }
}
@media (max-width: 900px) {
    .de-demo { grid-template-columns: 1fr; gap: 28px; }
    .de-demo__access { padding: 24px 0 0; border-left: 0; border-top: 1px solid #c6e1ef; }
    .de-demo .de-demo__button { max-width: 380px; }
}
@media (max-width: 570px) {
    .de-demo { padding: 28px 20px; margin-bottom: 20px; border-radius: 12px; gap: 24px; }
    .de-demo__heading { gap: 16px; margin-bottom: 20px; }
    .de-demo .de-demo__emblem { flex-basis: 76px; width: 76px; height: 76px; }
    .de-demo .de-demo__title { font-size: 32px; letter-spacing: -0.3px; }
    .de-demo .de-demo__description { font-size: 16px; }
    .de-demo .de-demo__eyebrow { font-size: 11px; letter-spacing: 1.1px; }
    .de-demo .de-demo__details { margin-top: 16px; }
    .de-demo .de-demo__button { max-width: none; font-size: 17px; }
}
@media (max-width: 360px) {
    .de-demo__heading { gap: 12px; }
    .de-demo .de-demo__emblem { flex-basis: 60px; width: 60px; height: 60px; }
    .de-demo .de-demo__title { font-size: 30px; }
    .de-demo .de-demo__eyebrow { letter-spacing: 0.5px; }
}
@media (prefers-reduced-motion: reduce) {
    .de-demo .de-demo__button { transition: none; }
}
