:root {
    --dg-navy: #071f33;
    --dg-navy-2: #10364d;
    --dg-blue: #0b6f8f;
    --dg-teal: #138c8a;
    --dg-green: #2f9e75;
    --dg-mint: #e8f5f0;
    --dg-ice: #f3f8fa;
    --dg-white: #ffffff;
    --dg-text: #1a2d3a;
    --dg-muted: #607685;
    --dg-border: #d8e5eb;
    --dg-border-strong: #bdd1da;
    --dg-radius: 8px;
    --dg-shadow: 0 18px 44px rgba(7, 31, 51, 0.11);
    --dg-shadow-soft: 0 10px 28px rgba(7, 31, 51, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--dg-text);
    background: var(--dg-white);
    font-family: Inter, "Segoe UI", Roboto, Arial, Helvetica, sans-serif;
    line-height: 1.62;
    text-rendering: optimizeLegibility;
}

a {
    color: inherit;
    text-decoration: none;
}

img {
    display: block;
    max-width: 100%;
    height: auto;
}

.dg-container {
    width: min(1360px, calc(100% - 56px));
    margin: 0 auto;
}

.dg-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.94);
    border-bottom: 1px solid rgba(216, 229, 235, 0.9);
    backdrop-filter: blur(16px);
}

.dg-header__inner {
    min-height: 74px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.dg-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-weight: 760;
    color: var(--dg-navy);
}

.dg-logo__mark {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 8px;
    box-shadow: 0 10px 24px rgba(19, 140, 138, 0.2);
    overflow: hidden;
}

.dg-logo__mark img {
    width: 100%;
    height: 100%;
}

.dg-logo__text {
    max-width: 226px;
    line-height: 1.15;
}

.dg-nav {
    display: flex;
    align-items: center;
    gap: 22px;
}

.dg-menu {
    display: flex;
    align-items: center;
    gap: 20px;
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 14px;
    color: var(--dg-muted);
}

.dg-menu a {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 2px;
    border-bottom: 2px solid transparent;
    transition: color 180ms ease;
}

.dg-menu a:hover,
.dg-menu a:focus-visible {
    color: var(--dg-blue);
}

.dg-menu .current-menu-item > a,
.dg-menu .current_page_item > a,
.dg-menu .current-menu-ancestor > a {
    color: var(--dg-navy);
    border-bottom-color: var(--dg-green);
    font-weight: 800;
}

.dg-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: var(--dg-green);
    color: white;
    font-weight: 760;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(47, 158, 117, 0.22);
    transition: transform 180ms ease, background 180ms ease, border-color 180ms ease, box-shadow 180ms ease;
}

.dg-button:hover,
.dg-button:focus-visible {
    background: #267f5f;
    transform: translateY(-1px);
}

.dg-button--secondary {
    background: var(--dg-navy);
    box-shadow: 0 12px 24px rgba(7, 31, 51, 0.18);
}

.dg-button--secondary:hover,
.dg-button--secondary:focus-visible {
    background: var(--dg-navy-2);
}

.dg-button--outline {
    background: rgba(255, 255, 255, 0.78);
    color: var(--dg-navy);
    border-color: var(--dg-border-strong);
    box-shadow: none;
}

.dg-button--outline:hover,
.dg-button--outline:focus-visible {
    background: white;
    border-color: var(--dg-teal);
}

.dg-button--small {
    min-height: 40px;
    padding: 0 16px;
    font-size: 14px;
}

.dg-nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    border: 1px solid var(--dg-border);
    border-radius: 8px;
    background: white;
}

.dg-nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 5px auto;
    background: var(--dg-navy);
    transition: transform 180ms ease, opacity 180ms ease;
}

.dg-nav-toggle.is-active span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.dg-nav-toggle.is-active span:nth-child(2) {
    opacity: 0;
}

.dg-nav-toggle.is-active span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

.dg-main {
    min-height: 60vh;
    overflow: hidden;
}

.dg-section {
    padding: 96px 0;
}

.dg-section--soft {
    background:
        linear-gradient(180deg, rgba(243, 248, 250, 0.78), rgba(255, 255, 255, 0.92)),
        var(--dg-ice);
}

.dg-section__eyebrow {
    margin: 0 0 14px;
    color: var(--dg-teal);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 12px;
}

.dg-section h1,
.dg-section h2,
.dg-hero h1,
.dg-section-intro h2,
.dg-transition h2,
.dg-cta-panel h2 {
    margin: 0 0 20px;
    color: var(--dg-navy);
    line-height: 1.04;
    letter-spacing: 0;
}

.dg-hero h1 {
    max-width: 1080px;
    font-size: clamp(44px, 5.6vw, 76px);
}

.dg-section h2,
.dg-section-intro h2,
.dg-transition h2 {
    max-width: 840px;
    font-size: clamp(32px, 3.8vw, 54px);
}

.dg-section h3 {
    margin: 0 0 12px;
    color: var(--dg-navy);
    font-size: 23px;
    line-height: 1.18;
    letter-spacing: 0;
}

.dg-lead {
    max-width: 850px;
    margin: 0;
    color: var(--dg-muted);
    font-size: clamp(18px, 1.8vw, 22px);
}

.dg-section-intro {
    margin-bottom: 42px;
}

.dg-hero {
    position: relative;
    padding: 106px 0 92px;
    background:
        radial-gradient(circle at 90% 18%, rgba(47, 158, 117, 0.2), transparent 28%),
        radial-gradient(circle at 20% 0%, rgba(11, 111, 143, 0.13), transparent 30%),
        linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.dg-hero--background,
.dg-page-hero--background {
    min-height: 680px;
    display: flex;
    align-items: center;
    background-color: var(--dg-navy);
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dg-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.32;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(7, 31, 51, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 31, 51, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 74%);
}

.dg-hero--background::before,
.dg-page-hero--background::before {
    opacity: 1;
    background:
        linear-gradient(90deg, rgba(7, 31, 51, 0.9) 0%, rgba(7, 31, 51, 0.78) 34%, rgba(7, 31, 51, 0.34) 68%, rgba(7, 31, 51, 0.16) 100%),
        linear-gradient(180deg, rgba(7, 31, 51, 0.18), rgba(7, 31, 51, 0.36));
    mask-image: none;
}

.dg-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 58px;
    align-items: center;
}

.dg-hero--background .dg-hero__grid,
.dg-page-hero--background .dg-page-hero__grid {
    display: block;
}

.dg-hero__content {
    padding-top: 16px;
}

.dg-hero--background .dg-hero__content,
.dg-page-hero--background .dg-reveal {
    width: min(100%, 1160px);
    max-width: none;
    padding: 36px 0;
}

.dg-hero--background h1,
.dg-page-hero--background h1,
.dg-hero--background .dg-lead,
.dg-page-hero--background .dg-lead {
    color: white;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.26);
}

.dg-hero--background .dg-section__eyebrow,
.dg-page-hero--background .dg-section__eyebrow {
    color: #93e2c7;
}

.dg-hero--background .dg-button--outline,
.dg-page-hero--background .dg-button--outline {
    color: white;
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.46);
}

.dg-hero__actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 34px;
}

.dg-hero__meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 34px;
}

.dg-hero__meta span {
    padding: 8px 11px;
    border: 1px solid rgba(11, 111, 143, 0.16);
    border-radius: 6px;
    background: rgba(255, 255, 255, 0.66);
    color: var(--dg-muted);
    font-size: 13px;
    font-weight: 700;
}

.dg-hero--background .dg-hero__meta span {
    color: #e9f6f8;
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.24);
}

.dg-media {
    position: relative;
    margin: 0;
    overflow: hidden;
    border: 1px solid rgba(189, 209, 218, 0.82);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow);
}

.dg-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dg-media--hero {
    min-height: 520px;
}

.dg-media--hero::after,
.dg-media--contained::after,
.dg-media--wide::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.32);
}

.dg-media--contained {
    aspect-ratio: 4 / 3;
}

.dg-media--wide {
    aspect-ratio: 16 / 10;
}

.dg-proof {
    position: relative;
    z-index: 2;
    margin-top: -34px;
}

.dg-proof__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    overflow: hidden;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--dg-shadow-soft);
}

.dg-proof__grid div {
    min-height: 116px;
    padding: 26px;
    border-right: 1px solid var(--dg-border);
}

.dg-proof__grid div:last-child {
    border-right: 0;
}

.dg-proof strong {
    display: block;
    color: var(--dg-navy);
    font-size: 28px;
    line-height: 1;
}

.dg-proof span {
    display: block;
    margin-top: 9px;
    color: var(--dg-muted);
    font-size: 14px;
}

.dg-objectives {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.dg-objective-card {
    min-height: 255px;
    padding: 26px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
}

.dg-objective-card span {
    display: inline-grid;
    place-items: center;
    width: 42px;
    height: 42px;
    margin-bottom: 28px;
    border-radius: 6px;
    background: linear-gradient(135deg, rgba(11, 111, 143, 0.1), rgba(47, 158, 117, 0.14));
    color: var(--dg-teal);
    font-weight: 800;
}

.dg-objective-card p,
.dg-capability p,
.dg-platform-copy p,
.dg-cta-panel p {
    margin: 0;
    color: var(--dg-muted);
}

.dg-platform-layout {
    display: grid;
    grid-template-columns: 0.78fr 1.22fr;
    gap: 52px;
    align-items: center;
}

.dg-platform-copy {
    padding: 10px 0;
}

.dg-platform-copy h2 {
    margin: 0 0 20px;
    color: var(--dg-navy);
    font-size: clamp(32px, 3.6vw, 50px);
    line-height: 1.05;
}

.dg-platform-links {
    display: grid;
    gap: 10px;
    margin-top: 30px;
}

.dg-platform-links a {
    display: flex;
    align-items: center;
    justify-content: space-between;
    min-height: 54px;
    padding: 0 16px;
    border: 1px solid var(--dg-border);
    border-radius: 6px;
    background: white;
    color: var(--dg-navy);
    font-weight: 760;
    transition: border-color 180ms ease, transform 180ms ease, box-shadow 180ms ease;
}

.dg-platform-links a::after,
.dg-text-link::after {
    content: ">";
    color: var(--dg-teal);
}

.dg-platform-links a:hover,
.dg-platform-links a:focus-visible {
    border-color: var(--dg-teal);
    box-shadow: var(--dg-shadow-soft);
    transform: translateY(-1px);
}

.dg-platform-architecture {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 52px;
    align-items: start;
}

.dg-platform-architecture h2 {
    margin: 0 0 20px;
    color: var(--dg-navy);
    font-size: clamp(32px, 3.6vw, 50px);
    line-height: 1.05;
}

.dg-platform-architecture p {
    margin: 0;
    color: var(--dg-muted);
}

.dg-architecture-stack {
    display: grid;
    gap: 12px;
}

.dg-architecture-stack div {
    position: relative;
    padding: 24px 24px 24px 32px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
}

.dg-architecture-stack div::before {
    content: "";
    position: absolute;
    left: 0;
    top: 20px;
    bottom: 20px;
    width: 4px;
    border-radius: 999px;
    background: linear-gradient(180deg, var(--dg-blue), var(--dg-green));
}

.dg-architecture-stack span,
.dg-module-card span {
    display: block;
    margin-bottom: 10px;
    color: var(--dg-teal);
    font-size: 12px;
    font-weight: 850;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dg-architecture-stack strong {
    display: block;
    margin-bottom: 8px;
    color: var(--dg-navy);
    font-size: 21px;
    line-height: 1.18;
}

.dg-platform-module-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.dg-module-card {
    min-height: 315px;
    display: flex;
    flex-direction: column;
    padding: 28px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
}

.dg-module-card p {
    margin: 0;
    color: var(--dg-muted);
}

.dg-module-card .dg-text-link {
    margin-top: auto;
    padding-top: 24px;
}

.dg-capability-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 26px;
}

.dg-capability {
    display: grid;
    grid-template-rows: auto 1fr;
    overflow: hidden;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
}

.dg-capability > div {
    padding: 28px;
}

.dg-capability__media {
    margin: 0;
    aspect-ratio: 16 / 10;
    overflow: hidden;
    background: var(--dg-ice);
}

.dg-capability__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.dg-text-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin-top: 22px;
    color: var(--dg-navy);
    font-weight: 800;
}

.dg-transition {
    background:
        linear-gradient(90deg, rgba(232, 245, 240, 0.72), rgba(255, 255, 255, 0.96) 46%),
        white;
}

.dg-transition__grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 52px;
    align-items: center;
}

.dg-transition .dg-button {
    margin-top: 32px;
}

.dg-page-hero {
    position: relative;
    padding: 96px 0 78px;
    background:
        radial-gradient(circle at 82% 18%, rgba(47, 158, 117, 0.18), transparent 30%),
        linear-gradient(180deg, #f7fbfd 0%, #ffffff 100%);
}

.dg-page-hero--background {
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
}

.dg-page-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: 0.22;
    pointer-events: none;
    background-image:
        linear-gradient(rgba(7, 31, 51, 0.06) 1px, transparent 1px),
        linear-gradient(90deg, rgba(7, 31, 51, 0.06) 1px, transparent 1px);
    background-size: 56px 56px;
    mask-image: linear-gradient(180deg, #000 0%, transparent 78%);
}

.dg-page-hero--background::before {
    opacity: 1;
    background:
        linear-gradient(90deg, rgba(7, 31, 51, 0.94) 0%, rgba(7, 31, 51, 0.84) 38%, rgba(7, 31, 51, 0.48) 70%, rgba(7, 31, 51, 0.22) 100%),
        linear-gradient(180deg, rgba(7, 31, 51, 0.12) 0%, rgba(7, 31, 51, 0.42) 100%);
    mask-image: none;
}

.dg-page-hero--background h1,
.dg-page-hero--background .dg-lead {
    color: white;
}

.dg-page-hero__grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 58px;
    align-items: center;
}

.dg-page-hero h1 {
    max-width: 1080px;
    margin: 0 0 22px;
    color: var(--dg-navy);
    font-size: clamp(42px, 5.2vw, 70px);
    line-height: 1.04;
    letter-spacing: 0;
}

.dg-page-hero--background h1,
.dg-page-hero--background .dg-lead {
    color: white;
    text-shadow: 0 2px 22px rgba(0, 0, 0, 0.26);
}

.dg-page-hero--background .dg-section__eyebrow {
    color: #93e2c7;
}

.dg-page-hero__panel {
    padding: 30px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: var(--dg-shadow-soft);
}

.dg-page-hero__panel span {
    display: block;
    margin-bottom: 18px;
    color: var(--dg-teal);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dg-page-hero__panel strong {
    display: block;
    color: var(--dg-navy);
    font-size: 24px;
    line-height: 1.18;
}

.dg-page-hero__panel p {
    margin: 18px 0 0;
    color: var(--dg-muted);
}

/* ─── Platform split-panel banner ────────────────────────── */

.dg-split-banner {
    position: relative;
    background: var(--dg-ice);
    border-bottom: 1px solid var(--dg-border);
    overflow: hidden;
}

/* Faint teal wash bleeding in from the right half */
.dg-split-banner::before {
    content: "";
    position: absolute;
    top: 0; right: 0; bottom: 0;
    width: 46%;
    background: linear-gradient(135deg, #e8f5f0 0%, #d0ede6 100%);
    clip-path: polygon(6% 0%, 100% 0%, 100% 100%, 0% 100%);
    pointer-events: none;
}

.dg-split-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    min-height: 380px;
    align-items: center;
}

/* ── Left: copy ── */
.dg-split-banner__copy {
    padding: 72px 56px 72px 0;
}

.dg-split-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dg-muted);
}

.dg-split-banner__breadcrumb a {
    color: var(--dg-muted);
    transition: color 0.2s;
}

.dg-split-banner__breadcrumb a:hover {
    color: var(--dg-navy);
}

.dg-split-banner__breadcrumb span {
    color: var(--dg-teal);
}

.dg-split-banner__copy .dg-section__eyebrow {
    margin-bottom: 14px;
}

.dg-split-banner__copy h1 {
    margin: 0 0 20px;
    color: var(--dg-navy);
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.dg-split-banner__copy .dg-lead {
    margin: 0 0 28px;
    color: var(--dg-muted);
    font-size: 16px;
    line-height: 1.65;
}

.dg-split-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Right: module mini-map ── */
.dg-split-banner__visual {
    padding: 56px 0 56px 48px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dg-split-banner__visual-label {
    margin-bottom: 4px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dg-teal);
}

.dg-module-map {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dg-module-tile {
    padding: 18px 20px;
    background: #fff;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    box-shadow: var(--dg-shadow-soft);
    transition: box-shadow 0.2s, transform 0.2s;
}

.dg-module-tile:hover {
    box-shadow: var(--dg-shadow);
    transform: translateY(-2px);
}

.dg-module-tile__num {
    display: inline-block;
    margin-bottom: 8px;
    padding: 2px 8px;
    border-radius: 4px;
    background: var(--dg-mint);
    color: var(--dg-teal);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dg-module-tile h3 {
    margin: 0 0 4px;
    color: var(--dg-navy);
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.dg-module-tile p {
    margin: 0;
    color: var(--dg-muted);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 900px) {
    .dg-split-banner__inner {
        grid-template-columns: 1fr;
    }

    .dg-split-banner::before {
        display: none;
    }

    .dg-split-banner__copy {
        padding: 56px 0 32px;
    }

    .dg-split-banner__visual {
        padding: 0 0 56px;
    }

    .dg-split-banner {
        background: var(--dg-ice);
    }
}

/* ─── end .dg-split-banner ────────────────────────────────── */

/* ─── Contact banner ─────────────────────────────────────── */

.dg-contact-banner {
    position: relative;
    padding: 60px 0 52px;
    background: #f7f4ef;
    border-top: 4px solid var(--dg-teal);
    overflow: hidden;
}

/* Soft warm circle */
.dg-contact-banner::before {
    content: "";
    position: absolute;
    top: -120px;
    right: -120px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19,140,138,0.07) 0%, transparent 65%);
    pointer-events: none;
}

.dg-contact-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.dg-contact-banner__copy {
    max-width: 520px;
}

.dg-contact-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--dg-muted);
}

.dg-contact-banner__breadcrumb a {
    color: var(--dg-muted);
    transition: color 0.2s;
}

.dg-contact-banner__breadcrumb a:hover {
    color: var(--dg-navy);
}

.dg-contact-banner__breadcrumb span {
    color: var(--dg-teal);
}

.dg-contact-banner__copy .dg-section__eyebrow {
    margin-bottom: 14px;
}

.dg-contact-banner__copy h1 {
    margin: 0 0 16px;
    color: var(--dg-navy);
    font-size: clamp(26px, 3vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.dg-contact-banner__copy .dg-lead {
    margin: 0;
    color: var(--dg-muted);
    font-size: 15px;
    line-height: 1.65;
}

/* Right: 3 purpose context cards */
.dg-contact-purposes {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dg-contact-purpose {
    display: flex;
    gap: 16px;
    align-items: flex-start;
    padding: 16px 20px;
    border-radius: var(--dg-radius);
    border: 1px solid var(--dg-border);
    background: #fff;
    box-shadow: var(--dg-shadow-soft);
    transition: box-shadow 0.2s, border-color 0.2s;
}

.dg-contact-purpose:hover {
    border-color: var(--dg-teal);
    box-shadow: var(--dg-shadow);
}

.dg-contact-purpose__icon {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 8px;
    background: var(--dg-mint);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    margin-top: 1px;
}

.dg-contact-purpose__text h3 {
    margin: 0 0 3px;
    color: var(--dg-navy);
    font-size: 13px;
    font-weight: 700;
}

.dg-contact-purpose__text p {
    margin: 0;
    color: var(--dg-muted);
    font-size: 12px;
    line-height: 1.5;
}

@media (max-width: 860px) {
    .dg-contact-banner__inner {
        grid-template-columns: 1fr;
        gap: 32px;
    }

    .dg-contact-banner__copy {
        max-width: 100%;
    }
}

/* ─── end .dg-contact-banner ──────────────────────────────── */

/* ─── Join Alliance banner ───────────────────────────────── */

.dg-join-banner {
    position: relative;
    padding: 64px 0 60px;
    background: linear-gradient(135deg, var(--dg-navy) 0%, #0e3a50 45%, var(--dg-teal) 100%);
    overflow: hidden;
}

/* Subtle radial highlight */
.dg-join-banner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255,255,255,0.04) 0%, transparent 65%);
    pointer-events: none;
}

/* Grid texture */
.dg-join-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 48px 48px;
    mask-image: linear-gradient(90deg, transparent 0%, #000 30%, #000 70%, transparent 100%);
    pointer-events: none;
}

.dg-join-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ── Left: persuasive copy ── */
.dg-join-banner__copy {
    max-width: 540px;
}

.dg-join-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
}

.dg-join-banner__breadcrumb a {
    color: rgba(255,255,255,0.38);
    transition: color 0.2s;
}

.dg-join-banner__breadcrumb a:hover {
    color: #fff;
}

.dg-join-banner__breadcrumb span {
    color: #93e2c7;
}

.dg-join-banner__copy .dg-section__eyebrow {
    color: #93e2c7;
    margin-bottom: 14px;
}

.dg-join-banner__copy h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.dg-join-banner__copy .dg-lead {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.65);
    font-size: 15px;
    line-height: 1.65;
}

/* Benefit checklist */
.dg-join-benefits {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.dg-join-benefits li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    color: rgba(255,255,255,0.8);
    font-size: 13px;
    line-height: 1.5;
}

.dg-join-benefits li::before {
    content: "✓";
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: rgba(147,226,199,0.18);
    color: #93e2c7;
    font-size: 11px;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 1px;
}

/* ── Right: membership card ── */
.dg-join-card {
    padding: 32px;
    border-radius: 12px;
    background: rgba(255,255,255,0.08);
    border: 1px solid rgba(255,255,255,0.14);
    backdrop-filter: blur(8px);
}

.dg-join-card__free {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 20px;
    padding: 6px 14px;
    border-radius: 20px;
    background: rgba(147,226,199,0.15);
    border: 1px solid rgba(147,226,199,0.3);
    color: #93e2c7;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.dg-join-card__free::before {
    content: "★";
    font-size: 10px;
}

.dg-join-card h3 {
    margin: 0 0 8px;
    color: #fff;
    font-size: 18px;
    font-weight: 700;
}

.dg-join-card p {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.55);
    font-size: 13px;
    line-height: 1.55;
}

/* Who can join — org type pills */
.dg-join-card__types {
    display: flex;
    flex-wrap: wrap;
    gap: 7px;
    margin-bottom: 24px;
}

.dg-join-card__type {
    padding: 5px 11px;
    border-radius: 6px;
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.1);
    color: rgba(255,255,255,0.6);
    font-size: 11px;
    font-weight: 600;
}

.dg-join-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 24px;
    border-radius: var(--dg-radius);
    background: #fff;
    color: var(--dg-navy);
    font-size: 13px;
    font-weight: 700;
    text-decoration: none;
    transition: background 0.2s, transform 0.15s;
    width: 100%;
    justify-content: center;
}

.dg-join-card__cta:hover {
    background: #e8f5f0;
    transform: translateY(-1px);
}

@media (max-width: 860px) {
    .dg-join-banner__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dg-join-banner__copy {
        max-width: 100%;
    }
}

/* ─── end .dg-join-banner ─────────────────────────────────── */

/* ─── Roadmap timeline banner ────────────────────────────── */

.dg-timeline-banner {
    position: relative;
    padding: 64px 0 60px;
    background: linear-gradient(150deg, #141210 0%, #1e1a10 55%, #181510 100%);
    overflow: hidden;
}

/* Amber radial glow — bottom left */
.dg-timeline-banner::before {
    content: "";
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 480px;
    height: 480px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(201,162,39,0.12) 0%, transparent 65%);
    pointer-events: none;
}

/* Faint diagonal rule lines */
.dg-timeline-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        -45deg,
        transparent,
        transparent 28px,
        rgba(255,255,255,0.015) 28px,
        rgba(255,255,255,0.015) 29px
    );
    pointer-events: none;
}

.dg-timeline-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

/* ── Left: copy ── */
.dg-timeline-banner__copy {
    max-width: 540px;
}

.dg-timeline-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.dg-timeline-banner__breadcrumb a {
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}

.dg-timeline-banner__breadcrumb a:hover {
    color: #fff;
}

.dg-timeline-banner__breadcrumb span {
    color: #c9a227;
}

.dg-timeline-banner__copy .dg-section__eyebrow {
    color: #c9a227;
    margin-bottom: 14px;
}

.dg-timeline-banner__copy h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.dg-timeline-banner__copy .dg-lead {
    margin: 0 0 28px;
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    line-height: 1.65;
}

.dg-timeline-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Right: phase timeline ── */
.dg-phase-timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
}

.dg-phase-timeline__label {
    margin-bottom: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.28);
}

.dg-phase-item {
    display: flex;
    gap: 20px;
    align-items: flex-start;
    position: relative;
}

/* Vertical connector line between items */
.dg-phase-item:not(:last-child)::after {
    content: "";
    position: absolute;
    left: 15px;
    top: 32px;
    bottom: -20px;
    width: 2px;
    background: rgba(255,255,255,0.1);
}

/* Completed phase — line filled amber */
.dg-phase-item--done:not(:last-child)::after {
    background: linear-gradient(180deg, #c9a227 0%, rgba(201,162,39,0.3) 100%);
}

/* Active phase — line half amber */
.dg-phase-item--active:not(:last-child)::after {
    background: linear-gradient(180deg, rgba(201,162,39,0.4) 0%, rgba(255,255,255,0.08) 100%);
}

.dg-phase-item__node {
    flex-shrink: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 800;
    margin-top: 2px;
    position: relative;
    z-index: 1;
}

/* Done: filled amber circle with checkmark */
.dg-phase-item--done .dg-phase-item__node {
    background: #c9a227;
    color: #141210;
    box-shadow: 0 0 0 3px rgba(201,162,39,0.2);
}

/* Active: glowing amber ring */
.dg-phase-item--active .dg-phase-item__node {
    background: rgba(201,162,39,0.15);
    color: #c9a227;
    border: 2px solid #c9a227;
    box-shadow: 0 0 0 4px rgba(201,162,39,0.1), 0 0 16px rgba(201,162,39,0.25);
    animation: dg-amber-pulse 2.4s ease-in-out infinite;
}

/* Upcoming: dim outline */
.dg-phase-item--upcoming .dg-phase-item__node {
    background: transparent;
    color: rgba(255,255,255,0.25);
    border: 2px solid rgba(255,255,255,0.15);
}

@keyframes dg-amber-pulse {
    0%, 100% { box-shadow: 0 0 0 4px rgba(201,162,39,0.1), 0 0 16px rgba(201,162,39,0.25); }
    50%       { box-shadow: 0 0 0 7px rgba(201,162,39,0.06), 0 0 28px rgba(201,162,39,0.18); }
}

.dg-phase-item__body {
    padding-bottom: 28px;
    flex: 1;
}

.dg-phase-item__header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 4px;
}

.dg-phase-item__name {
    color: #fff;
    font-size: 14px;
    font-weight: 700;
    line-height: 1.2;
}

.dg-phase-item__badge {
    padding: 2px 8px;
    border-radius: 10px;
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
}

.dg-phase-item--done   .dg-phase-item__badge { background: rgba(201,162,39,0.15); color: #c9a227; }
.dg-phase-item--active .dg-phase-item__badge { background: rgba(201,162,39,0.2);  color: #e8c040; }
.dg-phase-item--upcoming .dg-phase-item__badge { background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.35); }

.dg-phase-item__desc {
    color: rgba(255,255,255,0.42);
    font-size: 12px;
    line-height: 1.5;
    margin: 0;
}

@media (max-width: 860px) {
    .dg-timeline-banner__inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .dg-timeline-banner__copy {
        max-width: 100%;
    }
}

/* ─── end .dg-timeline-banner ─────────────────────────────── */

/* ─── Resources archive banner ───────────────────────────── */

.dg-archive-banner {
    position: relative;
    padding: 64px 0 60px;
    background: linear-gradient(145deg, #141f15 0%, #1c2e1e 55%, #162318 100%);
    overflow: hidden;
}

/* Warm grain texture overlay */
.dg-archive-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(ellipse at 20% 80%, rgba(184,134,11,0.07) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(47,158,117,0.1) 0%, transparent 45%);
    pointer-events: none;
}

.dg-archive-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Left: copy ── */
.dg-archive-banner__copy {
    max-width: 540px;
}

.dg-archive-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.32);
}

.dg-archive-banner__breadcrumb a {
    color: rgba(255,255,255,0.32);
    transition: color 0.2s;
}

.dg-archive-banner__breadcrumb a:hover {
    color: #fff;
}

.dg-archive-banner__breadcrumb span {
    color: #8ed4a0;
}

.dg-archive-banner__copy .dg-section__eyebrow {
    color: #8ed4a0;
    margin-bottom: 14px;
}

.dg-archive-banner__copy h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.dg-archive-banner__copy .dg-lead {
    margin: 0 0 28px;
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    line-height: 1.65;
}

/* Filter tag pills under the lead */
.dg-archive-banner__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dg-archive-banner__tag {
    padding: 5px 12px;
    border-radius: 20px;
    border: 1px solid rgba(255,255,255,0.12);
    background: rgba(255,255,255,0.05);
    color: rgba(255,255,255,0.55);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    transition: border-color 0.2s, color 0.2s, background 0.2s;
    cursor: default;
}

.dg-archive-banner__tag:hover {
    border-color: #8ed4a0;
    color: #8ed4a0;
    background: rgba(142,212,160,0.07);
}

/* ── Right: fanned document cards ── */
.dg-doc-fan {
    position: relative;
    height: 260px;
}

/* All cards centred at the same anchor, then fanned via translateX */
.dg-doc-card {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 210px;
    /* centre the card on the anchor point */
    margin-left: -105px;
    margin-top: -62px;
    padding: 18px 20px;
    border-radius: 6px;
    border: 1px solid rgba(255,255,255,0.1);
    background: rgba(255,255,255,0.06);
    backdrop-filter: blur(6px);
    text-decoration: none;
    display: block;
    transition: transform 0.35s ease, box-shadow 0.35s ease;
    cursor: pointer;
}

/* Default stacked fan — rotate then slide in rotated space */
.dg-doc-card:nth-child(1) { transform: rotate(-10deg) translateX(-78px); z-index: 1; background: rgba(255,255,255,0.03); }
.dg-doc-card:nth-child(2) { transform: rotate(-5deg)  translateX(-39px); z-index: 2; background: rgba(255,255,255,0.05); }
.dg-doc-card:nth-child(3) { transform: rotate(0deg);                     z-index: 4; background: rgba(255,255,255,0.08); border-color: rgba(142,212,160,0.3); }
.dg-doc-card:nth-child(4) { transform: rotate(5deg)   translateX(39px);  z-index: 2; background: rgba(255,255,255,0.05); }
.dg-doc-card:nth-child(5) { transform: rotate(10deg)  translateX(78px);  z-index: 1; background: rgba(255,255,255,0.03); }

/* Spread apart on hover */
.dg-doc-fan:hover .dg-doc-card:nth-child(1) { transform: rotate(-10deg) translateX(-150px); }
.dg-doc-fan:hover .dg-doc-card:nth-child(2) { transform: rotate(-5deg)  translateX(-75px); }
.dg-doc-fan:hover .dg-doc-card:nth-child(3) { transform: rotate(0deg) translateY(-10px); z-index: 5; box-shadow: 0 20px 48px rgba(0,0,0,0.5); }
.dg-doc-fan:hover .dg-doc-card:nth-child(4) { transform: rotate(5deg)   translateX(75px); }
.dg-doc-fan:hover .dg-doc-card:nth-child(5) { transform: rotate(10deg)  translateX(150px); }

/* Individual card hover — lift whichever is clicked */
.dg-doc-card:hover {
    z-index: 6 !important;
    box-shadow: 0 20px 48px rgba(0,0,0,0.55);
    border-color: rgba(142,212,160,0.5) !important;
}

.dg-doc-card__type {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-bottom: 10px;
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #8ed4a0;
}

.dg-doc-card__type::before {
    content: "";
    display: inline-block;
    width: 12px;
    height: 14px;
    border-radius: 2px;
    background: rgba(142,212,160,0.2);
    border: 1px solid rgba(142,212,160,0.4);
    flex-shrink: 0;
}

.dg-doc-card__title {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 600;
    line-height: 1.35;
    margin-bottom: 6px;
}

.dg-doc-card__meta {
    display: block;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
}

@media (max-width: 860px) {
    .dg-archive-banner__inner {
        grid-template-columns: 1fr;
    }

    .dg-doc-fan {
        height: 220px;
    }

    .dg-doc-card {
        width: 180px;
        margin-left: -90px;
    }

    .dg-doc-fan:hover .dg-doc-card:nth-child(1) { transform: rotate(-10deg) translateX(-100px); }
    .dg-doc-fan:hover .dg-doc-card:nth-child(2) { transform: rotate(-5deg)  translateX(-50px); }
    .dg-doc-fan:hover .dg-doc-card:nth-child(4) { transform: rotate(5deg)   translateX(50px); }
    .dg-doc-fan:hover .dg-doc-card:nth-child(5) { transform: rotate(10deg)  translateX(100px); }
}

/* ─── end .dg-archive-banner ──────────────────────────────── */

/* ─── NaviQore product / dashboard banner ────────────────── */

.dg-product-banner {
    position: relative;
    padding: 60px 0 56px;
    background: linear-gradient(150deg, #080f1a 0%, #0d1829 60%, #0a1a2e 100%);
    overflow: hidden;
}

/* Radial cyan glow — top right, subtle */
.dg-product-banner::before {
    content: "";
    position: absolute;
    top: -60px;
    right: -60px;
    width: 500px;
    height: 500px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,212,255,0.09) 0%, transparent 65%);
    pointer-events: none;
}

/* Faint horizontal scan lines */
.dg-product-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image: repeating-linear-gradient(
        0deg,
        transparent,
        transparent 3px,
        rgba(255,255,255,0.015) 3px,
        rgba(255,255,255,0.015) 4px
    );
    pointer-events: none;
}

.dg-product-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Left: copy ── */
.dg-product-banner__copy {
    max-width: 520px;
}

.dg-product-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.3);
}

.dg-product-banner__breadcrumb a {
    color: rgba(255,255,255,0.3);
    transition: color 0.2s;
}

.dg-product-banner__breadcrumb a:hover {
    color: #fff;
}

.dg-product-banner__breadcrumb span {
    color: #00d4ff;
}

.dg-product-banner__copy .dg-section__eyebrow {
    color: #00d4ff;
    margin-bottom: 14px;
}

.dg-product-banner__copy h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(28px, 3.4vw, 46px);
    line-height: 1.08;
    letter-spacing: -0.02em;
}

/* Cyan underline accent on the product name */
.dg-product-banner__copy h1 em {
    font-style: normal;
    color: #00d4ff;
}

.dg-product-banner__copy .dg-lead {
    margin: 0 0 28px;
    color: rgba(255,255,255,0.55);
    font-size: 15px;
    line-height: 1.65;
}

.dg-product-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Right: instrument panel ── */
.dg-instrument-panel {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.dg-instrument {
    padding: 18px 20px;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 8px;
    background: rgba(255,255,255,0.04);
    backdrop-filter: blur(4px);
    transition: border-color 0.25s, background 0.25s;
}

.dg-instrument:hover {
    border-color: rgba(0,212,255,0.3);
    background: rgba(0,212,255,0.05);
}

.dg-instrument__header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.dg-instrument__label {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.4);
}

/* Status dot */
.dg-instrument__dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #00d4ff;
    box-shadow: 0 0 6px rgba(0,212,255,0.7);
    flex-shrink: 0;
}

/* Monitor tile — pulsing dot */
.dg-instrument--monitor .dg-instrument__dot {
    animation: dg-pulse 2s ease-in-out infinite;
}

.dg-instrument--simulate .dg-instrument__dot {
    background: var(--dg-teal);
    box-shadow: 0 0 6px rgba(19,140,138,0.8);
}

.dg-instrument--assess .dg-instrument__dot {
    background: var(--dg-green);
    box-shadow: 0 0 6px rgba(47,158,117,0.8);
}

.dg-instrument--deploy .dg-instrument__dot {
    background: #f0a500;
    box-shadow: 0 0 6px rgba(240,165,0,0.7);
}

@keyframes dg-pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50%       { opacity: 0.4; transform: scale(0.7); }
}

.dg-instrument__value {
    display: block;
    color: #fff;
    font-size: 22px;
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 4px;
}

.dg-instrument__desc {
    display: block;
    color: rgba(255,255,255,0.35);
    font-size: 11px;
    line-height: 1.4;
}

/* Mini bar beneath value */
.dg-instrument__bar {
    margin-top: 12px;
    height: 3px;
    border-radius: 2px;
    background: rgba(255,255,255,0.07);
    overflow: hidden;
}

.dg-instrument__bar-fill {
    height: 100%;
    border-radius: 2px;
    background: #00d4ff;
}

.dg-instrument--simulate .dg-instrument__bar-fill { background: var(--dg-teal); }
.dg-instrument--assess  .dg-instrument__bar-fill { background: var(--dg-green); }
.dg-instrument--deploy  .dg-instrument__bar-fill { background: #f0a500; }

@media (max-width: 860px) {
    .dg-product-banner__inner {
        grid-template-columns: 1fr;
    }

    .dg-product-banner__copy {
        max-width: 100%;
    }
}

/* ─── end .dg-product-banner ──────────────────────────────── */

/* ─── Knowledge Hub layered banner ───────────────────────── */

.dg-hub-banner {
    position: relative;
    padding: 64px 0 60px;
    background: linear-gradient(145deg, #0d1f3c 0%, #112c50 55%, #0e2440 100%);
    overflow: hidden;
}

/* Subtle radial pulse from centre-left */
.dg-hub-banner::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 30%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(11,111,143,0.2) 0%, transparent 65%);
    pointer-events: none;
}

.dg-hub-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

/* ── Left: copy ── */
.dg-hub-banner__copy {
    max-width: 560px;
}

.dg-hub-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 18px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.38);
}

.dg-hub-banner__breadcrumb a {
    color: rgba(255,255,255,0.38);
    transition: color 0.2s;
}

.dg-hub-banner__breadcrumb a:hover {
    color: #fff;
}

.dg-hub-banner__breadcrumb span {
    color: #6ec6e8;
}

.dg-hub-banner__copy .dg-section__eyebrow {
    color: #6ec6e8;
    margin-bottom: 14px;
}

.dg-hub-banner__copy h1 {
    margin: 0 0 18px;
    color: #fff;
    font-size: clamp(26px, 3.2vw, 44px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.dg-hub-banner__copy .dg-lead {
    margin: 0 0 28px;
    color: rgba(255,255,255,0.6);
    font-size: 15px;
    line-height: 1.65;
}

.dg-hub-banner__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

/* ── Right: layer stack diagram ── */
.dg-hub-banner__layers {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.dg-hub-banner__layers-label {
    margin-bottom: 8px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.35);
}

.dg-layer-bar {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 14px 20px;
    border-radius: 6px;
    border-left: 3px solid transparent;
    transition: transform 0.2s, box-shadow 0.2s;
    cursor: default;
}

.dg-layer-bar:hover {
    transform: translateX(4px);
}

/* Each layer gets its own colour depth — bottom = darkest data, top = brightest insight */
.dg-layer-bar:nth-child(2) {
    background: rgba(11, 111, 143, 0.18);
    border-left-color: #0b6f8f;
    margin-left: 0px;
}

.dg-layer-bar:nth-child(3) {
    background: rgba(19, 140, 138, 0.22);
    border-left-color: var(--dg-teal);
    margin-left: 12px;
}

.dg-layer-bar:nth-child(4) {
    background: rgba(47, 158, 117, 0.25);
    border-left-color: var(--dg-green);
    margin-left: 24px;
}

.dg-layer-bar:nth-child(5) {
    background: rgba(110, 198, 232, 0.18);
    border-left-color: #6ec6e8;
    margin-left: 36px;
}

.dg-layer-bar__num {
    flex-shrink: 0;
    width: 28px;
    height: 28px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255,255,255,0.08);
    color: rgba(255,255,255,0.5);
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 0.04em;
}

.dg-layer-bar__text {
    flex: 1;
}

.dg-layer-bar__title {
    display: block;
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 2px;
}

.dg-layer-bar__desc {
    display: block;
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    line-height: 1.4;
}

@media (max-width: 860px) {
    .dg-hub-banner__inner {
        grid-template-columns: 1fr;
    }

    .dg-layer-bar:nth-child(2),
    .dg-layer-bar:nth-child(3),
    .dg-layer-bar:nth-child(4),
    .dg-layer-bar:nth-child(5) {
        margin-left: 0;
    }

    .dg-hub-banner__copy {
        max-width: 100%;
    }
}

/* ─── end .dg-hub-banner ──────────────────────────────────── */

/* ─── Library / catalogue banner (Models page) ───────────── */

.dg-library-banner {
    position: relative;
    padding: 56px 0 52px;
    background: linear-gradient(135deg, var(--dg-teal) 0%, #0d6e6c 40%, var(--dg-green) 100%);
    overflow: hidden;
}

/* Faint ring pattern */
.dg-library-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        repeating-linear-gradient(
            0deg,
            transparent,
            transparent 39px,
            rgba(255,255,255,0.05) 39px,
            rgba(255,255,255,0.05) 40px
        ),
        repeating-linear-gradient(
            90deg,
            transparent,
            transparent 39px,
            rgba(255,255,255,0.05) 39px,
            rgba(255,255,255,0.05) 40px
        );
    pointer-events: none;
}

/* Large faded watermark character */
.dg-library-banner::after {
    content: "{}";
    position: absolute;
    right: 5%;
    top: 50%;
    transform: translateY(-50%);
    font-size: 260px;
    font-weight: 900;
    line-height: 1;
    color: rgba(255,255,255,0.05);
    font-family: monospace;
    pointer-events: none;
    user-select: none;
}

.dg-library-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 56px;
    align-items: center;
}

.dg-library-banner__copy {
    max-width: 640px;
}

.dg-library-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.5);
}

.dg-library-banner__breadcrumb a {
    color: rgba(255,255,255,0.5);
    transition: color 0.2s;
}

.dg-library-banner__breadcrumb a:hover {
    color: #fff;
}

.dg-library-banner__breadcrumb span {
    color: rgba(255,255,255,0.9);
}

.dg-library-banner__copy h1 {
    margin: 0 0 14px;
    color: #fff;
    font-size: clamp(26px, 3.2vw, 42px);
    line-height: 1.1;
    letter-spacing: -0.01em;
}

.dg-library-banner__copy .dg-lead {
    margin: 0 0 24px;
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.65;
}

/* Search jump bar */
.dg-library-banner__search {
    display: flex;
    align-items: center;
    gap: 0;
    max-width: 480px;
    border-radius: var(--dg-radius);
    overflow: hidden;
    box-shadow: 0 4px 24px rgba(0,0,0,0.18);
}

.dg-library-banner__search input {
    flex: 1;
    padding: 13px 18px;
    border: none;
    outline: none;
    background: #fff;
    color: var(--dg-navy);
    font-size: 14px;
    font-family: inherit;
}

.dg-library-banner__search input::placeholder {
    color: var(--dg-muted);
}

.dg-library-banner__search button {
    padding: 13px 22px;
    border: none;
    background: var(--dg-navy);
    color: #fff;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.04em;
    cursor: pointer;
    font-family: inherit;
    transition: background 0.2s;
    white-space: nowrap;
}

.dg-library-banner__search button:hover {
    background: #0d2f4a;
}

/* Right: live stat stack */
.dg-library-banner__stats {
    display: flex;
    flex-direction: column;
    gap: 2px;
    flex-shrink: 0;
}

.dg-library-stat {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 16px 24px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.dg-library-stat:last-child {
    border-bottom: none;
}

.dg-library-stat__num {
    color: #fff;
    font-size: 36px;
    font-weight: 800;
    line-height: 1;
    letter-spacing: -0.02em;
    min-width: 52px;
    text-align: right;
}

.dg-library-stat__label {
    color: rgba(255,255,255,0.6);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    line-height: 1.3;
    max-width: 120px;
}

@media (max-width: 860px) {
    .dg-library-banner__inner {
        grid-template-columns: 1fr;
    }

    .dg-library-banner__stats {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dg-library-stat {
        border-bottom: none;
        border-right: 1px solid rgba(255,255,255,0.1);
        padding: 12px 20px 12px 0;
    }

    .dg-library-stat:last-child {
        border-right: none;
    }

    .dg-library-banner::after {
        display: none;
    }
}

/* ─── end .dg-library-banner ──────────────────────────────── */

/* ─── Inner-page banner (replaces photo hero on sub-pages) ─── */

.dg-page-banner {
    position: relative;
    padding: 64px 0 60px;
    background: var(--dg-navy);
    overflow: hidden;
}

/* Subtle dot-grid texture */
.dg-page-banner::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(circle, rgba(255,255,255,0.07) 1px, transparent 1px);
    background-size: 32px 32px;
    pointer-events: none;
}

/* Teal glow in top-right */
.dg-page-banner::after {
    content: "";
    position: absolute;
    top: -80px;
    right: -80px;
    width: 420px;
    height: 420px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(19,140,138,0.22) 0%, transparent 70%);
    pointer-events: none;
}

.dg-page-banner__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 48px;
    align-items: center;
}

/* Left: breadcrumb + title + lead */
.dg-page-banner__copy {
    max-width: 700px;
}

.dg-page-banner__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 20px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(255,255,255,0.45);
}

.dg-page-banner__breadcrumb a {
    color: rgba(255,255,255,0.45);
    transition: color 0.2s;
}

.dg-page-banner__breadcrumb a:hover {
    color: #fff;
}

.dg-page-banner__breadcrumb span {
    color: var(--dg-teal);
    opacity: 1;
}

/* Teal left accent bar */
.dg-page-banner h1 {
    position: relative;
    margin: 0 0 18px;
    padding-left: 20px;
    color: #fff;
    font-size: clamp(30px, 3.8vw, 50px);
    line-height: 1.08;
    letter-spacing: -0.01em;
}

.dg-page-banner h1::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    bottom: 6px;
    width: 4px;
    border-radius: 2px;
    background: linear-gradient(180deg, var(--dg-teal) 0%, var(--dg-green) 100%);
}

.dg-page-banner .dg-lead {
    margin: 0;
    padding-left: 20px;
    color: rgba(255,255,255,0.65);
    font-size: 16px;
    line-height: 1.65;
}

/* Right: compact stat chips */
.dg-page-banner__meta {
    display: flex;
    flex-direction: column;
    gap: 12px;
    flex-shrink: 0;
}

.dg-page-banner__chip {
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding: 14px 20px;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: var(--dg-radius);
    background: rgba(255,255,255,0.05);
    min-width: 160px;
}

.dg-page-banner__chip strong {
    color: #fff;
    font-size: 18px;
    font-weight: 700;
    line-height: 1.1;
}

.dg-page-banner__chip span {
    color: rgba(255,255,255,0.45);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .dg-page-banner__inner {
        grid-template-columns: 1fr;
    }

    .dg-page-banner__meta {
        flex-direction: row;
        flex-wrap: wrap;
    }

    .dg-page-banner__chip {
        min-width: 130px;
    }
}

/* ─── end .dg-page-banner ─────────────────────────────────── */

.dg-principle-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.dg-principle-card {
    min-height: 250px;
    padding: 28px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
}

.dg-principle-card::before {
    content: "";
    display: block;
    width: 52px;
    height: 4px;
    margin-bottom: 28px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--dg-blue), var(--dg-green));
}

.dg-principle-card p,
.dg-audience-item p,
.dg-step p {
    margin: 0;
    color: var(--dg-muted);
}

.dg-audience-layout,
.dg-value-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 52px;
    align-items: start;
}

.dg-audience-layout h2,
.dg-value-layout h2 {
    margin: 0;
    color: var(--dg-navy);
    font-size: clamp(32px, 3.6vw, 50px);
    line-height: 1.05;
}

.dg-audience-list {
    display: grid;
    gap: 14px;
}

.dg-audience-item {
    display: grid;
    grid-template-columns: 56px 1fr;
    gap: 18px;
    padding: 24px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
}

.dg-audience-item span {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border-radius: 6px;
    background: var(--dg-mint);
    color: var(--dg-teal);
    font-weight: 850;
}

.dg-check-list {
    display: grid;
    gap: 16px;
    margin: 26px 0 0;
    padding: 0;
    list-style: none;
}

.dg-check-list li {
    position: relative;
    padding: 18px 18px 18px 52px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    color: var(--dg-muted);
    box-shadow: var(--dg-shadow-soft);
}

.dg-check-list li::before {
    content: "";
    position: absolute;
    left: 18px;
    top: 22px;
    width: 16px;
    height: 9px;
    border-left: 3px solid var(--dg-green);
    border-bottom: 3px solid var(--dg-green);
    transform: rotate(-45deg);
}

.dg-model-guide-grid {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 18px;
}

.dg-model-guide-card,
.dg-model-use-card {
    padding: 24px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
}

.dg-model-guide-card span {
    display: inline-grid;
    place-items: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 6px;
    background: var(--dg-mint);
    color: var(--dg-teal);
    font-weight: 850;
}

.dg-model-guide-card p,
.dg-model-use-card p {
    margin: 0;
    color: var(--dg-muted);
}

.dg-roadmap-phase-list {
    grid-template-columns: 1fr;
    gap: 22px;
}

.dg-roadmap-phase-list .dg-model-guide-card {
    display: grid;
    grid-template-columns: 92px minmax(0, 1fr);
    gap: 8px 28px;
    padding: 34px;
}

.dg-roadmap-phase-list .dg-model-guide-card span {
    grid-row: 1 / 4;
    width: 64px;
    height: 64px;
    margin: 0;
    font-size: 18px;
}

.dg-roadmap-phase-list .dg-model-guide-card p,
.dg-roadmap-phase-list .dg-model-guide-card .dg-check-list {
    max-width: 980px;
}

.dg-model-use-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.dg-model-use-card::before {
    content: "";
    display: block;
    width: 48px;
    height: 4px;
    margin-bottom: 22px;
    border-radius: 999px;
    background: linear-gradient(90deg, var(--dg-blue), var(--dg-green));
}

.dg-models-layout {
    display: grid;
    grid-template-columns: 300px minmax(0, 1fr);
    gap: 22px;
    align-items: start;
}

.dg-model-filters {
    position: sticky;
    top: 98px;
    padding: 18px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: rgba(255, 255, 255, 0.96);
    box-shadow: var(--dg-shadow-soft);
}

.dg-model-filters__header,
.dg-model-results__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    margin-bottom: 16px;
}

.dg-model-filters__header h2 {
    margin: 0;
    color: var(--dg-navy);
    font-size: 20px;
    line-height: 1.12;
}

.dg-field,
.dg-check-field {
    display: grid;
    gap: 6px;
    margin-bottom: 12px;
}

.dg-field span,
.dg-check-field span {
    color: var(--dg-navy);
    font-size: 12px;
    font-weight: 800;
}

.dg-field input,
.dg-field select,
.dg-field textarea {
    width: 100%;
    border: 1px solid var(--dg-border-strong);
    border-radius: 6px;
    background: white;
    color: var(--dg-text);
    font: inherit;
}

.dg-field input,
.dg-field select {
    min-height: 40px;
    padding: 0 12px;
}

.dg-field textarea {
    min-height: 150px;
    padding: 12px;
    resize: vertical;
}

.dg-field input:focus,
.dg-field select:focus,
.dg-field textarea:focus {
    outline: 2px solid rgba(19, 140, 138, 0.18);
    border-color: var(--dg-teal);
}

.dg-field--compact {
    min-width: 210px;
    margin-bottom: 0;
}

.dg-check-field {
    grid-template-columns: 18px 1fr;
    align-items: start;
    margin-top: 18px;
    margin-bottom: 0;
    color: var(--dg-muted);
}

.dg-check-field input {
    margin-top: 4px;
}

.dg-check-field a {
    color: var(--dg-blue);
    font-weight: 760;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dg-join-layout {
    display: grid;
    gap: 28px;
}

.dg-join-layout h2 {
    margin: 0 0 20px;
    color: var(--dg-navy);
    font-size: clamp(32px, 3.8vw, 54px);
    line-height: 1.04;
}

.dg-join-layout p {
    color: var(--dg-muted);
}

.dg-form {
    width: min(100%, 920px);
    padding: 30px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow);
}

.dg-form--wide {
    width: 100%;
}

.dg-form__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px 16px;
}

.dg-form .dg-button {
    margin-top: 22px;
}

.dg-form--cf7 p {
    margin: 0 0 14px;
}

.dg-form--cf7 label {
    display: grid;
    gap: 6px;
    color: var(--dg-navy);
    font-size: 12px;
    font-weight: 800;
}

.dg-form--cf7 .wpcf7-form {
    margin: 0;
}

.dg-form--cf7 .wpcf7-form-control-wrap {
    display: block;
    margin-top: 6px;
}

.dg-form--cf7 input[type="text"],
.dg-form--cf7 input[type="email"],
.dg-form--cf7 select,
.dg-form--cf7 textarea {
    width: 100%;
    border: 1px solid var(--dg-border-strong);
    border-radius: 6px;
    background: white;
    color: var(--dg-text);
    font: inherit;
    font-weight: 400;
}

.dg-form--cf7 input[type="text"],
.dg-form--cf7 input[type="email"],
.dg-form--cf7 select {
    min-height: 44px;
    padding: 0 12px;
}

.dg-form--cf7 textarea {
    min-height: 150px;
    padding: 12px;
    resize: vertical;
}

.dg-form--cf7 input:focus,
.dg-form--cf7 select:focus,
.dg-form--cf7 textarea:focus {
    outline: 2px solid rgba(19, 140, 138, 0.18);
    border-color: var(--dg-teal);
}

.dg-form--cf7 .wpcf7-acceptance label {
    display: grid;
    grid-template-columns: 18px 1fr;
    align-items: start;
    gap: 10px;
    color: var(--dg-muted);
    font-size: 14px;
    font-weight: 400;
    line-height: 1.55;
}

.dg-form--cf7 .wpcf7-acceptance input {
    margin-top: 4px;
}

.dg-form--cf7 a {
    color: var(--dg-blue);
    font-weight: 760;
    text-decoration: underline;
    text-underline-offset: 3px;
}

.dg-form--cf7 input[type="submit"] {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    margin-top: 8px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 6px;
    background: var(--dg-green);
    color: white;
    font: inherit;
    font-weight: 760;
    cursor: pointer;
    box-shadow: 0 12px 24px rgba(47, 158, 117, 0.22);
}

.dg-form--cf7 .wpcf7-not-valid-tip {
    margin-top: 5px;
    color: #b42318;
    font-size: 13px;
    font-weight: 650;
}

.dg-form--cf7 .wpcf7-response-output {
    margin: 18px 0 0;
    padding: 14px 16px;
    border-radius: 6px;
    color: var(--dg-text);
}

.dg-model-results {
    min-width: 0;
}

.dg-model-results__bar {
    padding: 12px 16px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
}

.dg-model-results__bar p {
    margin: 0;
    color: var(--dg-muted);
}

.dg-model-results__bar strong {
    color: var(--dg-navy);
    font-size: 20px;
}

.dg-model-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 14px;
}

.dg-model-card {
    min-width: 0;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
    overflow: hidden;
    transition: transform 180ms ease, box-shadow 180ms ease, border-color 180ms ease;
}

.dg-model-card:hover,
.dg-model-card:focus-within {
    transform: translateY(-2px);
    border-color: var(--dg-teal);
    box-shadow: var(--dg-shadow);
}

.dg-model-card__link {
    display: grid;
    min-height: 100%;
    color: inherit;
}

.dg-model-card__body {
    display: flex;
    flex-direction: column;
    gap: 10px;
    padding: 16px;
}

.dg-model-card__meta,
.dg-model-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.dg-model-card__meta span,
.dg-model-card__tags span {
    padding: 6px 8px;
    border-radius: 6px;
    background: var(--dg-mint);
    color: var(--dg-teal);
    font-size: 11px;
    font-weight: 800;
}

.dg-model-card h3 {
    margin: 0;
    color: var(--dg-navy);
    font-size: 18px;
    line-height: 1.18;
}

.dg-model-card p {
    display: -webkit-box;
    min-height: 62px;
    margin: 0;
    overflow: hidden;
    color: var(--dg-muted);
    font-size: 14px;
    line-height: 1.45;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

.dg-model-card dl {
    display: grid;
    gap: 8px;
    margin: auto 0 0;
    padding-top: 10px;
    border-top: 1px solid var(--dg-border);
}

.dg-model-card dl div {
    min-width: 0;
}

.dg-model-card dt {
    color: var(--dg-muted);
    font-size: 10px;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.dg-model-card dd {
    margin: 2px 0 0;
    color: var(--dg-navy);
    font-size: 13px;
    font-weight: 750;
    line-height: 1.28;
}

.dg-model-empty {
    display: none;
    padding: 28px;
    border: 1px dashed var(--dg-border-strong);
    border-radius: var(--dg-radius);
    color: var(--dg-muted);
    background: white;
}

.dg-model-empty.is-visible {
    display: block;
}

.dg-model-detail-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 360px;
    gap: 32px;
    align-items: start;
}

.dg-model-detail-main,
.dg-model-resource-card {
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
}

.dg-model-detail-main {
    padding: 34px;
}

.dg-model-detail-main h2 {
    margin: 0 0 22px;
    color: var(--dg-navy);
    font-size: clamp(32px, 3vw, 48px);
    line-height: 1.08;
}

.dg-model-detail-main p {
    color: var(--dg-muted);
}

.dg-model-detail-block {
    margin-top: 34px;
    padding-top: 28px;
    border-top: 1px solid var(--dg-border);
}

.dg-detail-list {
    display: grid;
    gap: 18px;
    margin: 0;
}

.dg-detail-list--compact {
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.dg-detail-list div {
    min-width: 0;
}

.dg-detail-list dt {
    color: var(--dg-navy);
    font-weight: 850;
}

.dg-detail-list dd {
    margin: 4px 0 0;
    color: var(--dg-muted);
}

.dg-model-detail-aside {
    display: grid;
    gap: 18px;
    position: sticky;
    top: 98px;
}

.dg-model-resource-card {
    padding: 24px;
}

.dg-resource-links {
    display: grid;
    gap: 10px;
}

.dg-resource-links a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    min-height: 48px;
    padding: 0 14px;
    border: 1px solid var(--dg-border);
    border-radius: 6px;
    color: var(--dg-navy);
    font-weight: 800;
}

.dg-resource-links a::after {
    content: ">";
    color: var(--dg-teal);
}

.dg-steps {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.dg-step {
    padding: 28px;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background: white;
    box-shadow: var(--dg-shadow-soft);
}

.dg-step span {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    margin-bottom: 26px;
    border-radius: 999px;
    background: var(--dg-navy);
    color: white;
    font-weight: 850;
}

.dg-project-strip {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.dg-project-logo {
    min-height: 118px;
    display: grid;
    place-items: center;
    border: 1px solid var(--dg-border);
    border-radius: var(--dg-radius);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.92), rgba(255, 255, 255, 0.72)),
        white;
    color: var(--dg-navy);
    font-size: clamp(22px, 2.4vw, 30px);
    font-weight: 850;
    box-shadow: var(--dg-shadow-soft);
}

.dg-cta-panel {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 34px;
    align-items: center;
    padding: 46px;
    border-radius: var(--dg-radius);
    background:
        radial-gradient(circle at right center, rgba(47, 158, 117, 0.26), transparent 34%),
        linear-gradient(135deg, var(--dg-navy), #0c4255);
    color: white;
    box-shadow: var(--dg-shadow);
}

.dg-cta-panel h2 {
    max-width: 760px;
    color: white;
    font-size: clamp(32px, 3.4vw, 48px);
}

.dg-cta-panel .dg-section__eyebrow {
    color: #93e2c7;
}

.dg-cta-panel p {
    max-width: 740px;
    color: #d7e7ed;
}

.dg-cta-panel__actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
    min-width: 210px;
}

.dg-cta-panel .dg-button--outline {
    color: white;
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.34);
}

.dg-footer {
    padding: 64px 0 28px;
    color: #dbe5ea;
    background: var(--dg-navy);
}

.dg-footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 36px;
}

.dg-footer h3,
.dg-footer h4 {
    margin-top: 0;
    color: white;
}

.dg-footer ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.dg-footer li {
    margin-bottom: 10px;
}

.dg-footer a {
    color: #dbe5ea;
}

.dg-footer a:hover,
.dg-footer a:focus-visible {
    color: white;
}

.dg-footer__bottom {
    display: flex;
    justify-content: space-between;
    gap: 24px;
    margin-top: 44px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    color: #a9bac5;
    font-size: 14px;
}

body.dg-reveal-ready .dg-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

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

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .dg-button,
    .dg-menu a,
    .dg-platform-links a,
    body.dg-reveal-ready .dg-reveal {
        transition: none;
    }

    body.dg-reveal-ready .dg-reveal {
        opacity: 1;
        transform: none;
    }
}

@media (max-width: 1080px) {
    .dg-nav {
        gap: 14px;
    }

    .dg-menu {
        gap: 14px;
    }

    .dg-hero__grid,
    .dg-platform-layout,
    .dg-transition__grid,
    .dg-page-hero__grid,
    .dg-audience-layout,
    .dg-value-layout,
    .dg-platform-architecture,
    .dg-join-layout,
    .dg-models-layout,
    .dg-model-detail-layout {
        grid-template-columns: 1fr;
    }

    .dg-media--hero {
        min-height: 420px;
    }
}

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

    .dg-nav {
        display: none;
        position: absolute;
        left: 20px;
        right: 20px;
        top: 82px;
        padding: 22px;
        align-items: flex-start;
        flex-direction: column;
        border: 1px solid var(--dg-border);
        border-radius: var(--dg-radius);
        background: white;
        box-shadow: var(--dg-shadow);
    }

    .dg-nav.is-open {
        display: flex;
    }

    .dg-menu {
        flex-direction: column;
        align-items: flex-start;
    }

    .dg-proof__grid,
    .dg-objectives,
    .dg-capability-grid,
    .dg-principle-grid,
    .dg-steps,
    .dg-platform-module-grid,
    .dg-model-guide-grid,
    .dg-model-use-grid,
    .dg-model-grid,
    .dg-detail-list--compact,
    .dg-project-strip,
    .dg-cta-panel,
    .dg-footer__grid {
        grid-template-columns: 1fr;
    }

    .dg-proof {
        margin-top: 0;
    }

    .dg-proof__grid div {
        min-height: auto;
        border-right: 0;
        border-bottom: 1px solid var(--dg-border);
    }

    .dg-proof__grid div:last-child {
        border-bottom: 0;
    }

    .dg-cta-panel__actions {
        align-items: flex-start;
    }

    .dg-roadmap-phase-list .dg-model-guide-card {
        grid-template-columns: 1fr;
        padding: 26px;
    }

    .dg-roadmap-phase-list .dg-model-guide-card span {
        grid-row: auto;
        width: 48px;
        height: 48px;
        font-size: 15px;
    }

    .dg-footer__bottom {
        flex-direction: column;
    }
}

@media (max-width: 640px) {
    .dg-container {
        width: min(100% - 28px, 1180px);
    }

    .dg-header__inner {
        min-height: 68px;
    }

    .dg-logo__mark {
        width: 40px;
        height: 40px;
    }

    .dg-logo__text {
        max-width: 180px;
        font-size: 14px;
    }

    .dg-hero {
        padding: 76px 0 64px;
    }

    .dg-section {
        padding: 70px 0;
    }

    .dg-hero h1 {
        font-size: 42px;
    }

    .dg-page-hero {
        padding: 74px 0 62px;
    }

    .dg-page-hero h1 {
        font-size: 40px;
    }

    .dg-section h2,
    .dg-section-intro h2,
    .dg-transition h2,
    .dg-audience-layout h2,
    .dg-value-layout h2 {
        font-size: 32px;
    }

    .dg-media--hero {
        min-height: 300px;
    }

    .dg-hero__actions,
    .dg-cta-panel__actions {
        align-items: stretch;
        width: 100%;
    }

    .dg-button {
        width: 100%;
    }

    .dg-cta-panel {
        padding: 30px;
    }

    .dg-audience-item {
        grid-template-columns: 1fr;
    }

    .dg-form {
        padding: 22px;
    }

    .dg-form__grid {
        grid-template-columns: 1fr;
    }

    .dg-model-filters,
    .dg-model-detail-aside {
        position: static;
    }

    .dg-model-results__bar,
    .dg-model-filters__header {
        align-items: flex-start;
        flex-direction: column;
    }

    .dg-field--compact {
        width: 100%;
    }
}
