:root {
    --corp-bg: #f6f8fb;
    --corp-ink: #0f172a;
    --corp-muted: #5b6472;
    --corp-line: #dbe3ee;
    --corp-panel: #ffffff;
    --corp-teal: #01a982;
    --corp-blue: #2563eb;
    --corp-navy: #101827;
}

[data-theme="dark"] {
    --corp-bg: #080f1d;
    --corp-ink: #eef5ff;
    --corp-muted: #a9b7ca;
    --corp-line: #263345;
    --corp-panel: #111b2a;
    --corp-navy: #060b14;
}

.corp-page {
    color: var(--corp-ink);
}

[data-theme="dark"] .corp-page {
    color: var(--corp-ink) !important;
}

.corp-hero {
    display: grid;
    grid-template-columns: minmax(0, 1.2fr) minmax(320px, .8fr);
    gap: 28px;
    min-height: 520px;
    align-items: stretch;
    padding: 48px;
    border: 1px solid rgba(15, 23, 42, .08);
    border-radius: 8px;
    background:
        linear-gradient(135deg, rgba(16, 24, 39, .94), rgba(16, 24, 39, .78)),
        url('/images/dyndatbold.png') center right 8% / 360px auto no-repeat,
        #101827;
    overflow: hidden;
}

.corp-hero-copy {
    display: flex;
    flex-direction: column;
    justify-content: center;
    max-width: 780px;
}

.corp-kicker {
    display: inline-flex;
    width: fit-content;
    color: var(--corp-teal);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
}

.corp-hero h1 {
    margin: 16px 0 18px;
    color: #fff;
    font-size: clamp(2.35rem, 5vw, 4.7rem);
    line-height: .98;
    max-width: 900px;
}

.corp-hero p {
    margin: 0;
    max-width: 680px;
    color: rgba(255, 255, 255, .76);
    font-size: 18px;
    line-height: 1.65;
}

.corp-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
}

.corp-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 46px;
    padding: 10px 18px;
    border-radius: 6px;
    font-weight: 800;
    text-decoration: none !important;
}

.corp-btn-primary {
    background: #e9fbf7;
    color: #075f50 !important;
    border: 1px solid rgba(1, 169, 130, .28);
}

.corp-btn-secondary {
    background: var(--corp-panel);
    color: var(--corp-ink) !important;
    border: 1px solid var(--corp-line);
}

.corp-signal {
    display: flex;
    align-items: end;
    justify-content: stretch;
}

.corp-signal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, .18);
    background: rgba(255, 255, 255, .18);
}

.corp-signal-grid span {
    min-height: 140px;
    display: flex;
    align-items: end;
    padding: 20px;
    color: #fff;
    font-weight: 900;
    background: rgba(255, 255, 255, .08);
    backdrop-filter: blur(10px);
}

.corp-section {
    margin-top: 34px;
}

.corp-section-head {
    display: flex;
    align-items: end;
    justify-content: space-between;
    gap: 24px;
    margin-bottom: 18px;
}

.corp-section-head h2,
.corp-strip h2 {
    margin: 8px 0 0;
    font-size: clamp(1.7rem, 3vw, 2.4rem);
    line-height: 1.1;
}

.corp-section-head p {
    max-width: 430px;
    margin: 0;
    color: var(--corp-muted);
    line-height: 1.55;
}

.corp-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 16px;
}

.corp-card {
    display: grid;
    grid-template-rows: auto 1fr;
    min-height: 220px;
    padding: 22px;
    border: 1px solid var(--corp-line);
    border-radius: 8px;
    background: var(--corp-panel);
    color: var(--corp-ink) !important;
    text-decoration: none !important;
    box-shadow: 0 12px 28px rgba(15, 23, 42, .05);
    transition: transform .16s ease, border-color .16s ease, box-shadow .16s ease;
}

.corp-card:hover {
    transform: translateY(-2px);
    border-color: rgba(1, 169, 130, .45);
    box-shadow: 0 18px 34px rgba(15, 23, 42, .09);
}

.corp-card-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    margin-bottom: 20px;
    border-radius: 8px;
    background: #e9fbf7;
    color: var(--corp-teal);
    font-size: 18px;
}

.corp-card-media {
    display: block;
    height: 118px;
    margin: -6px -6px 18px;
    border-radius: 6px;
    overflow: hidden;
    background: #e8edf5;
}

.corp-card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.corp-card-body {
    display: block;
}

.corp-card strong,
.corp-card span {
    display: block;
}

.corp-card strong {
    margin-bottom: 10px;
    font-size: 20px;
}

.corp-card span:last-child {
    color: var(--corp-muted);
    line-height: 1.55;
}

.corp-strip {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    margin-top: 34px;
    padding: 28px;
    border-radius: 8px;
    background: #e9fbf7;
    border: 1px solid rgba(1, 169, 130, .18);
}

[data-theme="dark"] .corp-btn-primary {
    background: #14b8a6 !important;
    color: #06231f !important;
    border-color: #2dd4bf !important;
}

[data-theme="dark"] .corp-btn-secondary {
    background: #1e293b !important;
    color: #f8fafc !important;
    border-color: rgba(148, 163, 184, .28) !important;
}

[data-theme="dark"] .corp-hero {
    background:
        linear-gradient(135deg, rgba(2, 6, 23, .96), rgba(15, 23, 42, .88)),
        url('/images/dyndatbold.png') center right 8% / 360px auto no-repeat,
        #020617 !important;
    border-color: rgba(148, 163, 184, .18) !important;
}

[data-theme="dark"] .corp-section-head h2,
[data-theme="dark"] .corp-strip h2,
[data-theme="dark"] .corp-card strong {
    color: #f8fafc !important;
}

[data-theme="dark"] .corp-section-head p,
[data-theme="dark"] .corp-card span:last-child {
    color: #cbd5e1 !important;
}

[data-theme="dark"] .corp-card {
    background: #111827 !important;
    border-color: rgba(148, 163, 184, .18) !important;
    color: #f8fafc !important;
    box-shadow: 0 18px 38px rgba(0, 0, 0, .26) !important;
}

[data-theme="dark"] .corp-card:hover {
    border-color: rgba(45, 212, 191, .55) !important;
    box-shadow: 0 22px 42px rgba(0, 0, 0, .34) !important;
}

[data-theme="dark"] .corp-card-icon {
    background: rgba(20, 184, 166, .14) !important;
    color: #5eead4 !important;
}

[data-theme="dark"] .corp-card-media {
    background: #0f172a !important;
}

[data-theme="dark"] .corp-strip {
    background: #0f1f2b !important;
    border-color: rgba(20, 184, 166, .24) !important;
    color: #f8fafc !important;
}

.corp-strip h2 {
    max-width: 740px;
}

@media (max-width: 992px) {
    .corp-hero,
    .corp-grid {
        grid-template-columns: 1fr;
    }

    .corp-hero {
        min-height: auto;
        padding: 34px;
    }

    .corp-section-head,
    .corp-strip {
        align-items: flex-start;
        flex-direction: column;
    }
}

@media (max-width: 576px) {
    .corp-hero {
        padding: 26px 20px;
    }

    .corp-signal-grid span {
        min-height: 96px;
        padding: 14px;
    }
}
