:root {
    --dm-ink: #171b29;
    --dm-navy: #292c3b;
    --dm-navy-deep: #171a25;
    --dm-orange: #ef6c00;
    --dm-orange-light: #ff8a35;
    --dm-teal: #12bfc1;
    --dm-muted: #667085;
    --dm-line: #e5e7ec;
    --dm-surface: #f5f6f8;
}

.dm-public-page {
    color: #333849;
    background: #fff;
    font-family: "Open Sans", sans-serif;
}

.dm-public-page h1,
.dm-public-page h2,
.dm-public-page h3,
.dm-public-page h4,
.dm-public-page strong {
    font-family: Raleway, sans-serif;
}

.dm-site-header {
    position: sticky;
    top: 0;
    z-index: 1040;
    background: rgba(23, 26, 37, .98);
    box-shadow: 0 4px 24px rgba(12, 15, 25, .14);
}

.dm-public-nav {
    min-height: 76px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.dm-public-logo img {
    display: block;
    width: auto;
    height: 48px;
    object-fit: contain;
}

.dm-nav-menu,
.dm-nav-list {
    align-items: center;
}

.dm-nav-list {
    display: flex;
    gap: 4px;
    margin: 0;
    padding: 0;
    list-style: none;
}

.dm-nav-link,
.dm-nav-cta {
    display: inline-flex;
    align-items: center;
    border: 0;
    background: transparent;
    color: rgba(255, 255, 255, .84);
    font-size: 14px;
    font-weight: 700;
    line-height: 1;
}

.dm-nav-link {
    padding: 16px 12px;
}

.dm-nav-link:hover,
.dm-nav-link:focus,
.dm-nav-cta:hover,
.dm-nav-cta:focus {
    color: #fff;
}

.dm-nav-cta {
    margin-left: 8px;
    padding: 12px 18px;
    border-radius: 999px;
    background: var(--dm-orange);
    color: #fff;
}

.dm-nav-toggle {
    display: none;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 30px;
}

.dm-public-nav .dropdown-menu {
    padding: 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 14px;
    box-shadow: 0 16px 40px rgba(11, 14, 24, .22);
}

.dm-platform-menu {
    width: min(440px, calc(100vw - 32px));
}

.dm-public-nav .dropdown-item {
    padding: 10px 12px;
    border-radius: 9px;
    white-space: normal;
}

.dm-public-nav .dropdown-item strong,
.dm-public-nav .dropdown-item span {
    display: block;
}

.dm-public-nav .dropdown-item strong {
    color: var(--dm-ink);
    font-size: 14px;
}

.dm-public-nav .dropdown-item span {
    margin-top: 2px;
    color: var(--dm-muted);
    font-size: 12px;
}

.dm-eyebrow {
    margin-bottom: 14px;
    color: var(--dm-orange);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 1.9px;
    text-transform: uppercase;
}

.dm-section {
    padding: 86px 0;
}

.dm-section-soft {
    background: var(--dm-surface);
}

.dm-section-dark {
    color: #fff;
    background: var(--dm-navy-deep);
}

.dm-section-heading {
    max-width: 780px;
    margin-bottom: 40px;
}

.dm-section-heading h2 {
    margin: 0 0 14px;
    color: var(--dm-ink);
    font: 800 clamp(30px, 4vw, 48px)/1.1 Raleway, sans-serif;
}

.dm-section-dark .dm-section-heading h2 {
    color: #fff;
}

.dm-section-heading p {
    margin: 0;
    color: var(--dm-muted);
    font-size: 18px;
    line-height: 1.7;
}

.dm-section-dark .dm-section-heading p {
    color: rgba(255, 255, 255, .7);
}

.dm-hero {
    position: relative;
    isolation: isolate;
    display: flex;
    min-height: calc(100svh - 76px);
    overflow: hidden;
    padding: clamp(72px, 8vw, 118px) 0;
    color: #fff;
    background: #060c18 url("../video/homepage/hero/drilling_dataflow_hero_poster.webp") center / cover no-repeat;
}

.dm-hero::after {
    position: absolute;
    inset: 0;
    z-index: -1;
    background:
        linear-gradient(90deg, rgba(6, 10, 20, .97) 0%, rgba(6, 10, 20, .86) 34%, rgba(6, 10, 20, .15) 68%, rgba(6, 10, 20, .28) 100%),
        linear-gradient(0deg, rgba(6, 10, 20, .55), transparent 35%);
    content: "";
}

.dm-hero-video {
    position: absolute;
    inset: 0;
    z-index: -2;
    width: 100%;
    height: 100%;
    filter: brightness(.62) blur(2px);
    object-fit: cover;
    transform: scale(1.01);
}

.dm-hero .container {
    display: flex;
    align-items: center;
}

.dm-hero-content {
    max-width: 720px;
}

.dm-hero h1 {
    max-width: 720px;
    margin: 0 0 22px;
    font: 800 clamp(42px, 5.4vw, 70px)/1.02 Raleway, sans-serif;
    letter-spacing: -1.6px;
}

.dm-hero-copy {
    max-width: 680px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
}

.dm-button,
.dm-button-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 13px 22px;
    border-radius: 999px;
    font-weight: 800;
}

.dm-button {
    background: var(--dm-orange);
    color: #fff;
}

.dm-button:hover {
    background: var(--dm-orange-light);
    color: #fff;
}

.dm-button-secondary {
    border: 1px solid rgba(255, 255, 255, .26);
    color: #fff;
}

.dm-button-secondary:hover {
    border-color: rgba(255, 255, 255, .54);
    background: rgba(255, 255, 255, .07);
    color: #fff;
}

.dm-hero-proof {
    display: flex;
    flex-wrap: wrap;
    gap: 10px 22px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
    color: rgba(255, 255, 255, .66);
    font-size: 14px;
}

.dm-hero-proof li::before {
    margin-right: 8px;
    color: var(--dm-teal);
    content: "●";
}

.dm-proof-strip {
    border-bottom: 1px solid var(--dm-line);
    background: #fff;
}

.dm-proof-item {
    height: 100%;
    padding: 32px 22px;
}

.dm-proof-strip .row > div:not(:last-child) .dm-proof-item {
    border-right: 1px solid var(--dm-line);
}

.dm-proof-item::before {
    display: block;
    width: 30px;
    height: 3px;
    margin-bottom: 14px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--dm-orange), var(--dm-teal));
    content: "";
}

.dm-proof-item strong,
.dm-proof-item span {
    display: block;
}

.dm-proof-item strong {
    color: var(--dm-ink);
    font-size: 16px;
}

.dm-proof-item span {
    margin-top: 6px;
    color: var(--dm-muted);
    font-size: 13px;
    line-height: 1.5;
}

.dm-flow {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.dm-flow-step {
    position: relative;
    padding: 24px;
    border: 1px solid var(--dm-line);
    border-radius: 16px;
    background: #fff;
}

.dm-flow-step::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    border-radius: 15px 15px 0 0;
    background: linear-gradient(90deg, var(--dm-orange), var(--dm-teal));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
}

.dm-flow-step:not(:last-child)::after {
    position: absolute;
    top: 50%;
    right: -15px;
    z-index: 2;
    display: grid;
    width: 28px;
    height: 28px;
    place-items: center;
    border: 1px solid var(--dm-line);
    border-radius: 50%;
    background: #fff;
    color: var(--dm-orange);
    content: "→";
    transform: translateY(-50%);
}

.dm-flow-step small {
    color: var(--dm-orange);
    font-weight: 800;
    letter-spacing: 1px;
}

.dm-flow-step h3 {
    margin: 9px 0;
    color: var(--dm-ink);
    font-size: 20px;
}

.dm-flow-step p {
    margin: 0;
    color: var(--dm-muted);
    font-size: 14px;
    line-height: 1.6;
}

.dm-reveal-group > :nth-child(2) {
    --dm-reveal-delay: .08s;
}

.dm-reveal-group > :nth-child(3) {
    --dm-reveal-delay: .16s;
}

.dm-reveal-group > :nth-child(4) {
    --dm-reveal-delay: .24s;
}

.dm-reveal-group > :nth-child(5) {
    --dm-reveal-delay: .32s;
}

.dm-reveal-group > :nth-child(6) {
    --dm-reveal-delay: .4s;
}

.dm-reveal-ready > * {
    opacity: .45;
    transform: translateY(18px) scale(.97);
    transition: opacity .55s ease var(--dm-reveal-delay, 0s), transform .55s ease var(--dm-reveal-delay, 0s);
}

.dm-reveal-ready .dm-flow-step::before {
    transition: transform .7s ease var(--dm-reveal-delay, 0s);
}

.dm-reveal-visible > *,
.dm-reveal-visible .dm-flow-step::before {
    opacity: 1;
    transform: none;
}

.dm-platform-card,
.dm-resource-card,
.dm-quote-card {
    display: block;
    height: 100%;
    border: 1px solid var(--dm-line);
    border-radius: 18px;
    background: #fff;
    color: inherit;
    transition: transform .18s ease, box-shadow .18s ease;
}

.dm-platform-card:hover,
.dm-resource-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 16px 36px rgba(28, 32, 48, .09);
    color: inherit;
}

.dm-platform-card {
    position: relative;
    display: flex;
    overflow: hidden;
    flex-direction: column;
    padding: 28px;
}

.dm-platform-card::before {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 3px;
    background: linear-gradient(90deg, var(--dm-orange), var(--dm-teal));
    content: "";
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .35s ease;
}

.dm-platform-card:hover::before,
.dm-platform-card:focus-visible::before {
    transform: none;
}

.dm-platform-icon {
    display: grid;
    width: 45px;
    height: 45px;
    margin-bottom: 22px;
    place-items: center;
    border-radius: 12px;
    background: rgba(239, 108, 0, .1);
    color: var(--dm-orange);
    font-size: 22px;
}

.dm-platform-card h3 {
    margin: 0 0 10px;
    color: var(--dm-ink);
    font-size: 22px;
}

.dm-platform-card p {
    margin: 0 0 18px;
    color: var(--dm-muted);
    line-height: 1.65;
}

.dm-platform-card .dm-text-link {
    margin-top: auto;
}

.dm-text-link {
    color: var(--dm-orange);
    font-weight: 800;
}

.dm-workflow-visual {
    overflow: hidden;
    border: 1px solid #363b4d;
    border-radius: 16px;
    background: #22252f;
    box-shadow: 0 24px 60px rgba(0, 0, 0, .24);
}

.dm-workflow-visual img {
    display: block;
    width: 100%;
    height: auto;
}

.dm-laptop {
    position: relative;
    padding: 11px 11px 19px;
    border-radius: 18px 18px 8px 8px;
    background: linear-gradient(145deg, #4b5060, #1c1f28);
    box-shadow: 0 24px 60px rgba(0, 0, 0, .3);
}

.dm-laptop::before {
    position: absolute;
    top: 4px;
    left: 50%;
    width: 3px;
    height: 3px;
    border-radius: 50%;
    background: #0b0d12;
    content: "";
}

.dm-laptop::after {
    position: absolute;
    right: -3%;
    bottom: 0;
    left: -3%;
    height: 9px;
    border-radius: 2px 2px 12px 12px;
    background: linear-gradient(#727888, #303440);
    content: "";
    clip-path: polygon(3% 0, 97% 0, 100% 100%, 0 100%);
}

.dm-laptop-screen {
    position: relative;
    overflow: hidden;
    aspect-ratio: 3565 / 2044;
    border-radius: 7px;
    background: #090f15;
}

.dm-laptop-shot {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    animation: dm-screenshot-crossfade 12s ease-in-out infinite;
}

.dm-laptop-shot-next {
    opacity: 0;
    animation-delay: -6s;
}

.dm-laptop-shot:only-child {
    opacity: 1;
    animation: none;
}

@keyframes dm-screenshot-crossfade {
    0%, 42%, 100% { opacity: 1; }
    50%, 92% { opacity: 0; }
}

.dm-laptop-slides-3 .dm-laptop-shot {
    animation-name: dm-screenshot-crossfade-three;
    animation-duration: 18s;
}

.dm-laptop-slides-3 .dm-laptop-shot:nth-child(2) {
    animation-delay: -12s;
}

@keyframes dm-screenshot-crossfade-three {
    0%, 28%, 100% { opacity: 1; }
    33%, 95% { opacity: 0; }
}

.dm-feature-list {
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.dm-feature-list li {
    position: relative;
    margin-bottom: 12px;
    padding-left: 27px;
    color: rgba(255, 255, 255, .77);
    line-height: 1.55;
}

.dm-feature-list li::before {
    position: absolute;
    left: 0;
    color: var(--dm-teal);
    content: "✓";
    font-weight: 800;
}

.dm-feature-list-light li {
    color: #4f5668;
}

.dm-case-panel {
    padding: 38px;
    border: 1px solid var(--dm-line);
    border-radius: 20px;
    background: #fff;
}

.dm-case-signal {
    position: relative;
    min-height: 210px;
    overflow: hidden;
    border-radius: 15px;
    background: linear-gradient(145deg, #2e3243, #20232f);
}

.dm-case-signal svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.dm-aide-frame {
    overflow: hidden;
    border: 1px solid var(--dm-line);
    border-radius: 18px;
    background: #111;
}

.dm-aide-frame img {
    display: block;
    width: 100%;
    max-height: 560px;
    object-fit: cover;
    object-position: top;
}

.dm-mobile-card {
    height: 100%;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .05);
}

.dm-mobile-card h3 {
    color: #fff;
    font-size: 21px;
}

.dm-mobile-card p {
    margin-bottom: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.65;
}

.dm-resource-card {
    overflow: hidden;
    padding: 27px;
}

.dm-resource-meta {
    color: var(--dm-orange);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .8px;
    text-transform: uppercase;
}

.dm-resource-card h3 {
    margin: 12px 0;
    color: var(--dm-ink);
    font-size: 22px;
    line-height: 1.28;
}

.dm-resource-card h2 {
    margin: 12px 0;
    font-size: 22px;
    line-height: 1.28;
}

.dm-resource-card h2 a {
    color: var(--dm-ink);
}

.dm-resource-card p {
    color: var(--dm-muted);
    line-height: 1.65;
}

.resource-card-categories {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin: 18px 0;
}

.resource-card-categories a {
    padding: 5px 9px;
    border-radius: 999px;
    background: var(--dm-surface);
    color: #596174;
    font-size: 12px;
    font-weight: 700;
}

.dm-contact-form button:disabled {
    cursor: wait;
    opacity: .65;
}

.dm-quote-card {
    padding: 28px;
}

.dm-quote-card blockquote {
    margin: 0 0 22px;
    color: #4e5568;
    font-size: 16px;
    line-height: 1.75;
}

.dm-quote-card cite {
    color: var(--dm-ink);
    font-style: normal;
    font-weight: 800;
}

.dm-faq details {
    border-bottom: 1px solid var(--dm-line);
}

.dm-faq summary {
    padding: 20px 0;
    color: var(--dm-ink);
    cursor: pointer;
    font-weight: 800;
}

.dm-faq details p {
    max-width: 820px;
    padding: 0 0 22px;
    color: var(--dm-muted);
    line-height: 1.7;
}

.dm-contact-panel {
    padding: 38px;
    border-radius: 20px;
    background: var(--dm-navy);
    color: #fff;
}

.dm-contact-panel h2 {
    color: #fff;
    font-size: clamp(30px, 4vw, 46px);
}

.dm-contact-form .form-control {
    min-height: 50px;
    border: 1px solid rgba(255, 255, 255, .16);
    background: rgba(255, 255, 255, .08);
    color: #fff;
}

.dm-contact-form textarea.form-control {
    min-height: 140px;
}

.dm-contact-form .form-control::placeholder {
    color: rgba(255, 255, 255, .58);
}

.dm-contact-form .loading,
.dm-contact-form .error-message,
.dm-contact-form .sent-message {
    display: none;
    margin-top: 12px;
}

.dm-contact-form .loading.d-block,
.dm-contact-form .error-message.d-block,
.dm-contact-form .sent-message.d-block {
    display: block;
}

.dm-contact-form .error-message {
    color: #ffb4a8;
}

.dm-contact-form .sent-message {
    color: #86e6cf;
}

.dm-public-footer {
    padding: 58px 0 26px;
    color: rgba(255, 255, 255, .62);
    background: #151821;
}

.dm-public-footer strong,
.dm-public-footer a,
.dm-public-footer span {
    display: block;
}

.dm-public-footer strong {
    margin-bottom: 14px;
    color: #fff;
}

.dm-public-footer a {
    margin-bottom: 8px;
    color: rgba(255, 255, 255, .72);
}

.dm-public-footer a:hover {
    color: #fff;
}

.dm-footer-brand {
    font-size: 24px;
}

.dm-public-footer p {
    max-width: 520px;
    line-height: 1.7;
}

.dm-footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 18px;
    margin-top: 42px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, .1);
    font-size: 13px;
}

.dm-footer-bottom a,
.dm-footer-bottom span {
    display: inline;
    margin: 0;
}

.detail-hero,
.resource-hero {
    padding: 88px 0 72px;
    color: #fff;
    background: radial-gradient(circle at 76% 20%, rgba(18, 191, 193, .17), transparent 30%), linear-gradient(135deg, #292c3b, #202332);
}

.detail-hero h1,
.resource-hero h1 {
    max-width: 900px;
    margin: 0 0 20px;
    color: #fff;
    font: 800 clamp(38px, 5vw, 64px)/1.06 Raleway, sans-serif;
}

.detail-intro,
.resource-intro {
    max-width: 820px;
    color: rgba(255, 255, 255, .8);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
}

.detail-highlights,
.resource-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 9px;
    margin: 28px 0 0;
    padding: 0;
    list-style: none;
}

.detail-highlights li,
.resource-tags a,
.resource-tags span {
    padding: 8px 13px;
    border: 1px solid rgba(255, 255, 255, .17);
    border-radius: 999px;
    background: rgba(255, 255, 255, .06);
    color: rgba(255, 255, 255, .84);
    font-size: 13px;
}

.detail-visual {
    overflow: hidden;
    margin-top: 34px;
    padding: 12px;
    border: 1px solid rgba(255, 255, 255, .15);
    border-radius: 18px;
    background: rgba(255, 255, 255, .06);
}

.detail-laptop {
    margin-top: 34px;
}

.detail-visual img,
.detail-visual svg {
    display: block;
    width: 100%;
    max-height: 560px;
    border-radius: 11px;
    object-fit: contain;
}

.detail-visual-natural img {
    height: auto;
    max-height: none;
}

.detail-content {
    padding: 76px 0 26px;
}

.detail-section {
    padding-bottom: 50px;
}

.detail-section h2 {
    margin-bottom: 16px;
    color: var(--dm-ink);
    font-size: clamp(27px, 3vw, 38px);
}

.detail-section p,
.detail-section li {
    font-size: 17px;
    line-height: 1.78;
}

.detail-section li {
    margin-bottom: 8px;
}

.detail-contact {
    padding: 24px;
    border-left: 4px solid var(--dm-orange);
    border-radius: 0 12px 12px 0;
    background: var(--dm-surface);
}

.detail-bottom-cta {
    padding: 62px 0;
    color: #fff;
    background: var(--dm-navy);
}

.detail-bottom-cta h2 {
    color: #fff;
}

.about-hero {
    position: relative;
    overflow: hidden;
    padding: clamp(76px, 9vw, 128px) 0;
    color: #fff;
    background:
        radial-gradient(circle at 82% 18%, rgba(18, 191, 193, .18), transparent 29%),
        radial-gradient(circle at 12% 84%, rgba(239, 108, 0, .09), transparent 28%),
        linear-gradient(135deg, #111827, #202332 58%, #172936);
}

.about-hero::before {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px), linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: 48px 48px;
    content: "";
    mask-image: linear-gradient(90deg, transparent, #000 55%, #000);
}

.about-hero .container {
    position: relative;
}

.about-hero h1,
.about-why h2,
.about-operation h2 {
    color: inherit;
    font: 800 clamp(38px, 5vw, 64px)/1.05 Raleway, sans-serif;
    letter-spacing: -1px;
}

.about-hero-copy {
    max-width: 650px;
    color: rgba(255, 255, 255, .78);
    font-size: clamp(18px, 2vw, 22px);
    line-height: 1.65;
}

.about-product-visual {
    position: relative;
    padding: 28px 0 24px;
}

.about-product-visual::before {
    position: absolute;
    inset: 0 8%;
    border-radius: 50%;
    background: rgba(18, 191, 193, .16);
    filter: blur(50px);
    content: "";
}

.about-product-visual .dm-laptop {
    z-index: 1;
}

.about-visual-labels {
    position: relative;
    z-index: 2;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-top: 25px;
}

.about-visual-labels span {
    padding: 7px 11px;
    border: 1px solid rgba(255, 255, 255, .14);
    border-radius: 999px;
    background: rgba(6, 12, 24, .55);
    color: rgba(255, 255, 255, .7);
    font-size: 12px;
}

.about-why h2,
.about-operation h2 {
    margin-bottom: 22px;
    color: var(--dm-ink);
    font-size: clamp(32px, 4vw, 48px);
}

.about-why p,
.about-operation p {
    color: var(--dm-muted);
    font-size: 17px;
    line-height: 1.78;
}

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

.about-flow .dm-flow-step::after {
    display: none;
}

.about-principle-card {
    height: 100%;
    padding: 30px;
    border: 1px solid rgba(255, 255, 255, .12);
    border-radius: 18px;
    background: rgba(255, 255, 255, .045);
}

.about-principle-card span {
    color: var(--dm-orange-light);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 1.2px;
}

.about-principle-card h3 {
    margin: 12px 0;
    color: #fff;
    font-size: 23px;
}

.about-principle-card p {
    margin: 0;
    color: rgba(255, 255, 255, .68);
    line-height: 1.7;
}

.about-context-map {
    position: relative;
    display: grid;
    gap: 18px;
    overflow: hidden;
    padding: 30px;
    border: 1px solid #34394b;
    border-radius: 20px;
    background: #171b26;
    box-shadow: 0 26px 60px rgba(22, 25, 36, .18);
}

.about-context-map::before {
    position: absolute;
    top: 24%;
    bottom: 24%;
    left: 50%;
    width: 2px;
    background: linear-gradient(transparent, var(--dm-teal), var(--dm-orange), transparent);
    content: "";
    transform: translateX(-50%);
    animation: about-data-flow 3.6s ease-in-out infinite;
}

.about-context-source,
.about-context-core {
    position: relative;
    z-index: 1;
}

.about-context-source small {
    display: block;
    margin-bottom: 10px;
    color: rgba(255, 255, 255, .55);
    font-weight: 800;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.about-context-source div {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
}

.about-context-source span {
    padding: 7px 10px;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    background: #202532;
    color: rgba(255, 255, 255, .74);
    font-size: 13px;
}

.about-context-core {
    display: grid;
    padding: 25px;
    border: 1px solid rgba(18, 191, 193, .4);
    border-radius: 14px;
    background: #0e1821;
    place-items: center;
    text-align: center;
}

.about-context-core strong {
    color: #fff;
    font: 800 24px Raleway, sans-serif;
}

.about-context-core small {
    margin-top: 5px;
    color: rgba(255, 255, 255, .58);
}

.about-context-pulse {
    width: 10px;
    height: 10px;
    margin-bottom: 12px;
    border-radius: 50%;
    background: var(--dm-teal);
    box-shadow: 0 0 0 8px rgba(18, 191, 193, .11);
}

@keyframes about-data-flow {
    0%, 100% { opacity: .35; transform: translateX(-50%) scaleY(.72); }
    50% { opacity: 1; transform: translateX(-50%) scaleY(1); }
}

.resource-index-content {
    padding: 68px 0 86px;
}

.resource-filter {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 34px;
}

.resource-filter a {
    padding: 8px 13px;
    border: 1px solid var(--dm-line);
    border-radius: 999px;
    color: #4d5465;
    font-size: 13px;
    font-weight: 700;
}

.resource-filter a:hover,
.resource-filter a.active {
    border-color: var(--dm-orange);
    background: rgba(239, 108, 0, .07);
    color: var(--dm-orange);
}

.article-shell {
    padding: 58px 0 86px;
}

.article-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 8px 18px;
    margin-top: 22px;
    color: rgba(255, 255, 255, .68);
    font-size: 14px;
}

.article-preview {
    padding: 11px 16px;
    background: #fff3cd;
    color: #684f00;
    text-align: center;
    font-weight: 700;
}

.article-body {
    color: #363c4c;
    font-size: 17px;
    line-height: 1.82;
}

.article-body h2 {
    margin: 54px 0 18px;
    color: var(--dm-ink);
    font-size: clamp(27px, 3vw, 36px);
}

.article-body h3 {
    margin: 34px 0 14px;
    color: var(--dm-ink);
    font-size: 23px;
}

.article-body a {
    color: #c95700;
    text-decoration: underline;
    text-decoration-thickness: 1px;
    text-underline-offset: 3px;
}

.article-body img {
    display: block;
    width: 100%;
    height: auto;
    margin: 30px 0;
    border-radius: 14px;
}

.article-body img[role="button"] {
    cursor: zoom-in;
}

.article-body img[role="button"]:focus-visible {
    outline: 3px solid var(--dm-orange);
    outline-offset: 4px;
}

.article-image-dialog {
    width: min(96vw, 1600px);
    max-width: none;
    height: 94vh;
    max-height: none;
    padding: 48px 24px 24px;
    border: 0;
    border-radius: 14px;
    background: #151823;
    box-shadow: 0 24px 80px rgba(0, 0, 0, .5);
}

.article-image-dialog[open] {
    display: grid;
    place-items: center;
}

.article-image-dialog::backdrop {
    background: rgba(5, 7, 12, .88);
}

.article-image-dialog img {
    display: block;
    width: auto;
    max-width: 100%;
    height: auto;
    max-height: calc(94vh - 72px);
}

.article-image-dialog-close {
    position: absolute;
    top: 8px;
    right: 14px;
    border: 0;
    background: transparent;
    color: #fff;
    font-size: 32px;
    line-height: 1;
    cursor: pointer;
}

.article-body blockquote {
    margin: 30px 0;
    padding: 20px 26px;
    border-left: 4px solid var(--dm-orange);
    background: var(--dm-surface);
}

.article-body pre {
    overflow-x: auto;
    margin: 28px 0;
    padding: 22px;
    border-radius: 13px;
    background: #1e2230;
    color: #ecedf2;
    font-size: 14px;
    line-height: 1.65;
}

.article-body :not(pre) > code {
    padding: 2px 6px;
    border-radius: 5px;
    background: #f0f1f4;
    color: #9a3f00;
}

.article-body table {
    display: block;
    width: 100%;
    overflow-x: auto;
    margin: 30px 0;
    border-collapse: collapse;
}

.article-body th,
.article-body td {
    min-width: 160px;
    padding: 12px 14px;
    border: 1px solid var(--dm-line);
    text-align: left;
    vertical-align: top;
}

.article-body th {
    background: var(--dm-surface);
    color: var(--dm-ink);
}

.article-aside {
    position: sticky;
    top: 106px;
    padding: 24px;
    border: 1px solid var(--dm-line);
    border-radius: 16px;
    background: var(--dm-surface);
}

.article-aside strong,
.article-aside a {
    display: block;
}

.article-aside a {
    margin-top: 10px;
    color: #535b6d;
}

.dm-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 42px;
}

.dm-pagination a,
.dm-pagination span {
    padding: 9px 14px;
    border: 1px solid var(--dm-line);
    border-radius: 9px;
}

@media (min-width: 992px) {
    .dm-nav-menu {
        display: flex !important;
    }
}

@media (max-width: 991px) {
    .dm-nav-toggle {
        display: block;
    }

    .dm-nav-menu {
        position: absolute;
        top: 76px;
        left: 0;
        width: 100%;
        padding: 10px 20px 20px;
        background: #171a25;
        box-shadow: 0 18px 35px rgba(10, 12, 20, .2);
    }

    .dm-nav-list {
        align-items: stretch;
        flex-direction: column;
    }

    .dm-nav-link,
    .dm-nav-cta {
        width: 100%;
        justify-content: space-between;
        margin: 0;
    }

    .dm-nav-cta {
        justify-content: center;
        margin-top: 8px;
    }

    .dm-public-nav .dropdown-menu {
        position: static !important;
        width: 100%;
        transform: none !important;
        box-shadow: none;
    }

    .dm-flow {
        grid-template-columns: 1fr 1fr;
    }

    .dm-flow-step::after {
        display: none !important;
    }

    .dm-proof-strip .row > div:not(:last-child) .dm-proof-item,
    .dm-proof-strip .row > div:last-child .dm-proof-item {
        border-right: 0;
        border-bottom: 1px solid var(--dm-line);
    }

    .dm-proof-strip .row > div:last-child .dm-proof-item {
        border-bottom: 0;
    }

    .article-aside {
        position: static;
        margin-top: 34px;
    }
}

@media (max-width: 575px) {
    .dm-section {
        padding: 64px 0;
    }

    .dm-hero {
        min-height: calc(100svh - 76px);
        padding: 64px 0 52px;
    }

    .dm-hero::after {
        background:
            linear-gradient(180deg, rgba(6, 10, 20, .94) 0%, rgba(6, 10, 20, .82) 58%, rgba(6, 10, 20, .42) 100%),
            linear-gradient(90deg, rgba(6, 10, 20, .35), transparent 55%, rgba(6, 10, 20, .3));
    }

    .dm-hero h1 {
        font-size: 38px;
        letter-spacing: -.8px;
    }

    .dm-hero-proof {
        display: none;
    }

    .dm-flow {
        grid-template-columns: 1fr;
    }

    .dm-case-panel,
    .dm-contact-panel {
        padding: 25px;
    }

    .dm-footer-bottom {
        flex-direction: column;
    }

    .detail-hero,
    .resource-hero {
        padding: 64px 0 56px;
    }

    .about-hero {
        padding: 64px 0 58px;
    }

    .about-flow {
        grid-template-columns: 1fr;
    }

    .about-context-map {
        padding: 22px;
    }
}

@media (prefers-reduced-motion: reduce) {
    .dm-hero-video {
        display: none;
    }

    .dm-reveal-ready > *,
    .dm-reveal-ready .dm-flow-step::before {
        opacity: 1;
        transform: none;
        transition: none;
    }

    .dm-platform-card::before {
        transition: none;
    }

    .dm-laptop-shot {
        animation: none;
    }

    .dm-laptop-shot-next {
        display: none;
    }

    .about-context-map::before {
        animation: none;
    }
}
