:root {
    --navy: var(--header-bg);
    --teal: var(--primary-blue);
    --teal-light: #e6faf9;
    --teal-mid: #9de8e5;
    --text: #1a1a2e;
    --text-mid: #4a5568;
    --text-light: #6b7280;
    --border: #e5e7eb;
    --bg: var(--white);
    --bg-soft: var(--color-gray-light);
    --red: #dc2626;
    --orange: #d97706;
    --green: #059669;
    --font: 'Inter', sans-serif;
    --px: 48px;
}

body {
    font-family: var(--font);
    color: var(--text);
    background: var(--bg);
    font-size: 16px;
    line-height: 1.75;
    -webkit-font-smoothing: antialiased;
}

/* PAGE */
.page {
    width: 100%;
    padding: 0 var(--px);
}

/* ARTICLE HEADER */
.art-hdr {
    padding: 44px 0 28px;
}

.art-meta {
    font-size: 13.5px;
    color: var(--text-light);
    margin-bottom: 14px;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

.cat {
    background: #e8f4fd;
    color: #1a5f8a;
    font-weight: 600;
    font-size: 12px;
    padding: 3px 10px;
    border-radius: 4px;
    letter-spacing: .3px;
}

.sep {
    color: #d1d5db;
}

.art-hdr h1 {
    font-size: clamp(26px, 3.2vw, 40px);
    font-weight: 700;
    color: var(--navy);
    line-height: 1.2;
    letter-spacing: -.4px;
    margin-bottom: 14px;
}

.byline {
    font-size: 14px;
    color: var(--text-light);
}

/* HERO IMG */
.hero-img {
    width: 100%;
    aspect-ratio: 1600/500;
    background: linear-gradient(135deg, var(--navy) 0%, #0f3460 50%, #0d4a6e 100%);
    border-radius: 10px;
    margin-bottom: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
}

.hero-img::before {
    content: '';
    position: absolute;
    inset: 0;
    background: repeating-linear-gradient(45deg, rgba(0, 194, 184, .03) 0, rgba(0, 194, 184, .03) 1px, transparent 1px, transparent 40px);
}

.hero-inner {
    position: relative;
    text-align: center;
    padding: 0 40px;
}

.hero-inner h2 {
    font-size: clamp(18px, 2.6vw, 30px);
    color: #fff;
    font-weight: 700;
    line-height: 1.35;
    max-width: 760px;
    margin: 0 auto 12px;
}

.hero-inner p {
    color: rgba(255, 255, 255, .52);
    font-size: 15px;
}

.hteal {
    color: var(--teal);
}

/* BODY */
.art-body {
    padding-bottom: 80px;
}

.art-body p {
    font-size: 15.5px;
    color: var(--text-mid);
    margin-bottom: 20px;
    line-height: 1.8;
}

.art-body p strong {
    color: var(--text);
    font-weight: 600;
}

.art-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--navy);
    letter-spacing: -.3px;
    margin: 52px 0 16px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--border);
}

.art-body h3 {
    font-size: 17px;
    font-weight: 700;
    color: var(--navy);
    margin: 30px 0 10px;
}

.art-lead {
    font-size: 16.5px;
    line-height: 1.8;
    color: var(--text-mid);
    margin-bottom: 24px;
}

.art-lead strong {
    color: var(--text);
    font-weight: 700;
}

/* BULLETS */
.blist {
    list-style: none;
    margin: 10px 0 22px;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.blist li {
    display: flex;
    gap: 12px;
    align-items: flex-start;
    font-size: 15px;
    color: var(--text-mid);
    line-height: 1.7;
}

.blist li::before {
    content: '';
    width: 7px;
    height: 7px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
    margin-top: 9px;
}

.blist li strong {
    color: var(--text);
    font-weight: 600;
}

/* CALLOUT */
.callout {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-left: 4px solid var(--teal);
    border-radius: 0 8px 8px 0;
    padding: 16px 20px;
    margin: 20px 0 24px;
}

.callout p {
    margin: 0;
    font-size: 15px;
    color: var(--text-mid);
}

.alert-box {
    background: #fffbeb;
    border-left-color: var(--orange);
}

.alert-box p {
    color: #92400e;
}

/* ATTENDEES */
.attendees {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 20px 0;
}

.att-ttl {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .6px;
    color: var(--text-light);
    margin-bottom: 12px;
}

.attendees ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.attendees li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--text-mid);
}

.attendees li::before {
    content: '';
    width: 6px;
    height: 6px;
    background: var(--teal);
    border-radius: 50%;
    flex-shrink: 0;
}

/* DEPLOY GRID */
.deploy-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 18px 0 26px;
}

.deploy-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 18px;
}

.deploy-card strong {
    display: block;
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 5px;
}

.deploy-card span {
    font-size: 13px;
    color: var(--text-light);
    line-height: 1.55;
}

/* SOV GRID */
.sov-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 18px 0 22px;
}

.sov-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 16px 18px;
}

.sov-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.sov-card p {
    font-size: 13px;
    color: var(--text-light);
    margin: 0;
    line-height: 1.6;
}

/* DIVIDER */
.divider {
    border: none;
    border-top: 1px solid var(--border);
    margin: 48px 0;
}

/* SCENARIO LABELS */
.sc-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 10px;
}

.sc-dot {
    width: 24px;
    height: 24px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 12px;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.sc-txt {
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .5px;
}

.sc-r .sc-dot {
    background: var(--red);
}

.sc-r .sc-txt {
    color: var(--red);
}

.sc-o .sc-dot {
    background: var(--orange);
}

.sc-o .sc-txt {
    color: var(--orange);
}

.sc-g .sc-dot {
    background: var(--green);
}

.sc-g .sc-txt {
    color: var(--green);
}

/* RISK CARDS */
.risk-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 14px;
    margin: 14px 0 32px;
}

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

.risk-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-top: 3px solid;
    border-radius: 8px;
    padding: 18px;
    transition: box-shadow .18s;
}

.risk-card:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, .07);
}

.risk-card.r {
    border-top-color: var(--red);
}

.risk-card.o {
    border-top-color: var(--orange);
}

.risk-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 8px;
}

.risk-card p {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

.risk-card p strong {
    color: var(--text);
}

.full-w {
    grid-column: 1/-1;
}

/* SCENARIO C */
.sc-c-box {
    background: linear-gradient(135deg, var(--navy) 0%, #0f3460 100%);
    border-radius: 10px;
    padding: 32px 38px;
    margin-bottom: 36px;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.sc-c-box::after {
    content: '';
    position: absolute;
    right: -60px;
    bottom: -60px;
    width: 200px;
    height: 200px;
    border-radius: 50%;
    background: rgba(0, 194, 184, .07);
}

.sc-c-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    margin: 8px 0 11px;
}

.sc-c-box p {
    color: rgba(255, 255, 255, .72);
    font-size: 15.5px;
    margin: 0;
    line-height: 1.75;
    position: relative;
}

.sc-c-box .tl {
    color: var(--teal);
    font-weight: 600;
}

/* STEPS GRID */
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
    margin: 18px 0 30px;
}

.step-card {
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 20px;
}

.step-num {
    width: 32px;
    height: 32px;
    background: var(--navy);
    color: #fff;
    border-radius: 7px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    margin-bottom: 12px;
}

.step-card h4 {
    font-size: 14px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 7px;
}

.step-card p {
    font-size: 13.5px;
    color: var(--text-mid);
    line-height: 1.65;
    margin: 0;
}

/* TABLE */
.ttable {
    width: 100%;
    border-collapse: collapse;
    margin: 18px 0 24px;
    font-size: 14px;
}

.table-responsive {
    /* width: 100%; */
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    margin: 20px 0;
    scrollbar-width: thin;
    scrollbar-color: var(--teal) var(--bg-soft);
}

.ttable thead th {
    background: var(--navy);
    color: #fff;
    padding: 12px 16px;
    text-align: left;
    font-size: 13px;
    font-weight: 600;
}

.ttable thead th:first-child {
    border-radius: 7px 0 0 0;
}

.ttable thead th:last-child {
    border-radius: 0 7px 0 0;
}

.ttable tbody td {
    padding: 12px 16px;
    border-bottom: 1px solid var(--border);
    color: var(--text-mid);
    vertical-align: top;
    line-height: 1.6;
}

.ttable tbody tr:last-child td {
    border-bottom: none;
}

.ttable tbody tr:nth-child(even) td {
    background: var(--bg-soft);
}

.badge {
    display: inline-block;
    padding: 3px 9px;
    border-radius: 4px;
    font-size: 11.5px;
    font-weight: 600;
}

.bw {
    background: #fffbeb;
    color: #92400e;
}

.bg {
    background: #d1fae5;
    color: #065f46;
}

/* PLATFORM */
.plat-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin: 18px 0;
}

.plat-card {
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 22px 24px;
    background: #fff;
}

.plat-head {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.plat-badge {
    background: var(--navy);
    color: var(--teal);
    font-size: 11px;
    font-weight: 700;
    padding: 4px 10px;
    border-radius: 5px;
    letter-spacing: .5px;
}

.plat-card h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
}

.plat-card ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.plat-card li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: var(--text-mid);
    align-items: flex-start;
    line-height: 1.6;
}

.plat-card li::before {
    content: '✓';
    color: var(--teal);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

/* GRACE */
.grace-box {
    background: var(--teal-light);
    border: 1px solid var(--teal-mid);
    border-radius: 8px;
    padding: 20px 24px;
    margin: 18px 0 24px;
}

.grace-box h4 {
    font-size: 15px;
    font-weight: 700;
    color: #065f5a;
    margin-bottom: 11px;
}

.grace-box ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
}

.grace-box li {
    display: flex;
    gap: 10px;
    font-size: 14px;
    color: #0a6b65;
    line-height: 1.6;
}

.grace-box li::before {
    content: '→';
    font-weight: 700;
    flex-shrink: 0;
    color: #059669;
}

/* PRIORITY */
.priority-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin: 18px 0;
}

.pri-item {
    display: flex;
    gap: 18px;
    align-items: flex-start;
    background: var(--bg-soft);
    border: 1px solid var(--border);
    border-radius: 8px;
    padding: 18px 22px;
}

.pri-num {
    width: 36px;
    height: 36px;
    background: var(--navy);
    color: #fff;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 15px;
    flex-shrink: 0;
    margin-top: 2px;
}

.pri-item h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--navy);
    margin-bottom: 6px;
}

.pri-item p {
    font-size: 14.5px;
    color: var(--text-mid);
    margin: 0;
    line-height: 1.7;
}

/* CTA */
.cta {
    background: linear-gradient(135deg, var(--navy), #0f3460);
    border-radius: 12px;
    padding: 42px 48px;
    text-align: center;
    margin: 52px 0 24px;
}

.cta h2 {
    font-size: 26px;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px;
    border: none;
    padding: 0;
    letter-spacing: -.3px;
}

.cta p {
    color: rgba(255, 255, 255, .6);
    font-size: 15px;
    max-width: 520px;
    margin: 0 auto 26px;
    line-height: 1.7;
}

.btn-t {
    display: inline-block;
    background: var(--teal);
    color: var(--navy);
    font-weight: 700;
    font-size: 15px;
    padding: 13px 28px;
    border-radius: 7px;
    text-decoration: none;
}

.btn-g {
    display: inline-block;
    border: 1px solid rgba(255, 255, 255, .25);
    color: rgba(255, 255, 255, .75);
    font-size: 14px;
    padding: 12px 22px;
    border-radius: 7px;
    text-decoration: none;
    margin-left: 10px;
}

@media(max-width:1200px) {
    :root {
        --px: 32px;
    }
}

@media(max-width:1024px) {
    .deploy-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .art-hdr h1 {
        font-size: 32px;
    }
}

@media(max-width:768px) {
    :root {
        --px: 20px;
    }

    .art-hdr {
        padding: 30px 0 20px;
    }

    .art-hdr h1 {
        font-size: 28px;
    }

    .hero-img {
        aspect-ratio: auto;
        min-height: 320px;
        padding: 40px 20px;
    }

    .hero-inner {
        padding: 0;
    }

    .hero-inner h2 {
        font-size: 22px;
        line-height: 1.4;
    }

    .art-body h2 {
        font-size: 20px;
        margin: 40px 0 15px;
    }

    .art-body h3 {
        font-size: 16px;
    }

    .art-body p {
        font-size: 15px;
    }

    .steps-grid,
    .plat-grid,
    .sov-grid,
    .deploy-grid,
    .risk-grid,
    .risk-grid.two {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .sc-c-box {
        padding: 24px;
    }

    .sc-c-box h3 {
        font-size: 18px;
    }

    .cta {
        padding: 30px 20px;
    }

    .cta h2 {
        font-size: 22px;
    }

    .btn-g {
        margin-left: 0;
        margin-top: 10px;
        display: block;
    }
}

@media(max-width:480px) {
    .art-hdr h1 {
        font-size: 24px;
    }

    .hero-img {
        min-height: 380px;
    }

    .cat {
        font-size: 11px;
    }

    .pri-item {
        flex-direction: column;
        gap: 12px;
    }

    .pri-num {
        width: 32px;
        height: 32px;
        font-size: 14px;
    }
}