:root {
    --ink: #071624;
    --ink-soft: #24394a;
    --muted: #5f6f7c;
    --line: #d9e1e5;
    --surface: #ffffff;
    --surface-soft: #f3f6f7;
    --surface-blue: #eaf4f7;
    --teal: #009da7;
    --teal-dark: #006d7a;
    --blue: #0078d4;
    --green: #008f63;
    --amber: #d89a16;
    --danger: #c43d4d;
    --navy: #071624;
    --navy-soft: #0c2434;
    --max-width: 1240px;
    --header-height: 76px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
    margin: 0;
    color: var(--ink);
    background: var(--surface);
    font-family: Inter, "Segoe UI", Arial, sans-serif;
    font-size: 16px;
    line-height: 1.5;
    letter-spacing: 0;
}

body.menu-open { overflow: hidden; }

button,
input,
textarea,
select { font: inherit; letter-spacing: 0; }

button,
a { -webkit-tap-highlight-color: transparent; }

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

img { max-width: 100%; }

.skip-link {
    position: fixed;
    left: 16px;
    top: -80px;
    z-index: 200;
    padding: 10px 14px;
    color: #fff;
    background: var(--navy);
}

.skip-link:focus { top: 12px; }

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    height: var(--header-height);
    padding: 0 32px;
    display: grid;
    grid-template-columns: 230px 1fr auto;
    align-items: center;
    gap: 28px;
    background: rgba(255, 255, 255, 0.97);
    border-bottom: 1px solid rgba(7, 22, 36, 0.1);
    backdrop-filter: blur(16px);
}

.site-header.is-scrolled { box-shadow: 0 6px 22px rgba(7, 22, 36, 0.08); }

.site-brand {
    width: min(var(--site-logo-width, 216px), 230px);
    height: min(var(--site-logo-height, 58px), calc(var(--header-height) - 12px));
    display: inline-flex;
    align-items: center;
    overflow: hidden;
}

.site-logo-frame {
    overflow: hidden;
    background: transparent;
}

.site-logo-frame[data-logo-background="white"] { background: #fff; }

.site-logo-frame img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    transform: scale(var(--site-logo-zoom, 1));
    transform-origin: center;
}

.site-logo-frame[data-logo-fit="cover"] img { object-fit: cover; }
.site-logo-frame[data-logo-position="left"] img { object-position: left center; transform-origin: left center; }
.site-logo-frame[data-logo-position="right"] img { object-position: right center; transform-origin: right center; }
.site-logo-frame[data-logo-background="blend"] img { mix-blend-mode: multiply; }

.footer-brand {
    width: min(var(--site-logo-width, 216px), 230px);
    height: var(--site-logo-height, 58px);
    display: inline-flex;
    align-items: center;
}

.site-nav {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 28px;
}

.site-nav a,
.text-action {
    position: relative;
    font-size: 14px;
    font-weight: 650;
    color: var(--ink-soft);
}

.site-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -9px;
    height: 2px;
    background: var(--teal);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 180ms ease;
}

.site-nav a:hover::after,
.site-nav a:focus-visible::after { transform: scaleX(1); }

.mobile-nav-action { display: none; }

.header-actions {
    display: flex;
    align-items: center;
    gap: 18px;
}

.menu-toggle {
    display: none;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    font-size: 22px;
}

.button {
    min-height: 48px;
    padding: 0 20px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    border: 1px solid transparent;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 750;
    transition: background 160ms ease, border-color 160ms ease, color 160ms ease, transform 160ms ease;
}

.button:hover { transform: translateY(-1px); }

.button:focus-visible,
.site-nav a:focus-visible,
.text-action:focus-visible,
input:focus-visible,
textarea:focus-visible,
select:focus-visible,
.plan-option:focus-visible,
.intelligence-tab:focus-visible {
    outline: 3px solid rgba(0, 120, 212, 0.34);
    outline-offset: 2px;
}

.button-primary { color: #fff; background: var(--teal-dark); }
.button-primary:hover { background: #005661; }
.button-compact { min-height: 42px; padding: 0 16px; font-size: 14px; }
.button-wide { width: 100%; }

.button-ghost-light {
    color: #fff;
    border-color: rgba(255, 255, 255, 0.55);
    background: rgba(7, 22, 36, 0.24);
}

.button-ghost-light:hover { background: rgba(255, 255, 255, 0.12); }

.section-shell {
    width: min(var(--max-width), calc(100% - 64px));
    margin: 0 auto;
}

.hero {
    position: relative;
    min-height: calc(100svh - var(--header-height) - 36px);
    max-height: 860px;
    display: flex;
    align-items: center;
    overflow: hidden;
    color: #fff;
    background-color: #07111b;
    background-image: var(--hero-image, url("assets/site/proresolver-noc-hero.webp"));
    background-repeat: no-repeat;
    background-size: cover;
    background-position: center;
}

.hero-shade {
    position: absolute;
    inset: 0;
    background: rgba(2, 10, 18, 0.54);
}

.hero-content {
    position: relative;
    z-index: 2;
    width: min(720px, calc(100% - 64px));
    margin-left: max(32px, calc((100% - var(--max-width)) / 2));
    padding: 64px 0 92px;
}

.eyebrow {
    margin: 0 0 16px;
    color: var(--teal-dark);
    font-size: 13px;
    font-weight: 800;
    line-height: 1.3;
    letter-spacing: 0;
    text-transform: uppercase;
}

.eyebrow.light { color: #62e6dc; }

.hero h1 {
    margin: 0;
    font-size: 72px;
    line-height: 1;
    font-weight: 850;
    letter-spacing: 0;
}

.hero-statement {
    max-width: 680px;
    margin: 24px 0 14px;
    font-size: 30px;
    line-height: 1.16;
    font-weight: 680;
}

.hero-description {
    max-width: 620px;
    margin: 0;
    color: #dce7ed;
    font-size: 18px;
    line-height: 1.65;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px;
}

.hero-operational-note {
    position: absolute;
    right: max(32px, calc((100% - var(--max-width)) / 2));
    bottom: 28px;
    z-index: 2;
    min-width: 340px;
    padding: 16px 18px;
    display: grid;
    grid-template-columns: 12px auto;
    column-gap: 12px;
    color: #fff;
    background: rgba(7, 22, 36, 0.86);
    border-left: 3px solid #29d8c3;
    backdrop-filter: blur(12px);
}

.hero-operational-note .live-signal { grid-row: 1 / span 2; align-self: center; }
.hero-operational-note strong { font-size: 14px; }
.hero-operational-note > span:last-child { color: #b7c8d1; font-size: 12px; }

.live-signal {
    width: 10px;
    height: 10px;
    display: inline-block;
    border-radius: 50%;
    background: #25d695;
    box-shadow: 0 0 0 5px rgba(37, 214, 149, 0.14);
}

.ecosystem-band {
    min-height: 106px;
    padding: 24px max(32px, calc((100% - var(--max-width)) / 2));
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 36px;
    border-bottom: 1px solid var(--line);
    background: #fff;
}

.ecosystem-band > p {
    margin: 0;
    color: var(--muted);
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
}

.ecosystem-list {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 16px 28px;
}

.ecosystem-list span {
    color: var(--ink-soft);
    font-size: 14px;
    font-weight: 700;
}

.outcomes {
    padding-top: 112px;
    padding-bottom: 112px;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 96px;
    align-items: end;
}

.section-intro { max-width: 780px; }

.section-intro h2,
.offerings-header h2,
.noc-copy h2,
.contact-copy h2 {
    margin: 0;
    font-size: 48px;
    line-height: 1.08;
    font-weight: 800;
    letter-spacing: 0;
}

.section-intro > p:last-child,
.offerings-header > p:last-child,
.noc-copy > p,
.contact-copy > p {
    margin: 24px 0 0;
    color: var(--muted);
    font-size: 18px;
    line-height: 1.65;
}

.outcome-metrics {
    border-top: 1px solid var(--line);
}

.outcome-metric {
    min-height: 112px;
    padding: 24px 0;
    display: grid;
    grid-template-columns: 160px 1fr;
    align-items: center;
    gap: 24px;
    border-bottom: 1px solid var(--line);
}

.outcome-metric strong {
    color: var(--teal-dark);
    font-size: 30px;
    line-height: 1;
}

.outcome-metric span { color: var(--ink-soft); font-weight: 650; }

.offerings {
    padding: 112px 0 0;
    background: var(--surface-soft);
}

.offerings-header { padding-bottom: 64px; }
.offerings-header > p:last-child { max-width: 720px; }

.offering-rows { border-top: 1px solid #cfdadd; }

.offering-row {
    min-height: 270px;
    padding: 52px max(32px, calc((100% - var(--max-width)) / 2));
    display: grid;
    grid-template-columns: 90px minmax(240px, 0.7fr) minmax(320px, 1fr) 190px;
    gap: 40px;
    align-items: center;
    border-bottom: 1px solid #cfdadd;
    background: var(--surface-soft);
    transition: background 180ms ease;
}

.offering-row:hover { background: #fff; }

.offering-number { color: var(--teal-dark); font-size: 15px; font-weight: 850; }
.offering-row h3 { margin: 0; font-size: 30px; line-height: 1.15; }
.offering-row .summary { margin: 12px 0 0; color: var(--ink-soft); font-size: 17px; font-weight: 650; }
.offering-row .detail { margin: 0; color: var(--muted); line-height: 1.7; }
.offering-link { color: var(--teal-dark); font-weight: 800; text-align: right; }

.noc-section {
    padding: 124px 0;
    color: #fff;
    background: var(--navy);
}

.noc-layout {
    display: grid;
    grid-template-columns: 0.92fr 1.08fr;
    gap: 100px;
    align-items: start;
}

.noc-copy { position: sticky; top: 118px; }
.noc-copy > p { color: #b9c8d2; }

.noc-badge {
    margin-top: 36px;
    padding: 18px 0;
    display: flex;
    align-items: center;
    gap: 14px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
    color: #62e6dc;
    font-weight: 800;
}

.noc-steps { counter-reset: noc-step; }

.noc-step {
    min-height: 174px;
    padding: 32px 0;
    display: grid;
    grid-template-columns: 74px 1fr;
    gap: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.16);
}

.noc-step:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.16); }
.noc-step > span { color: #62e6dc; font-weight: 850; }
.noc-step h3 { margin: 0 0 10px; font-size: 24px; }
.noc-step p { margin: 0; color: #aebfc9; line-height: 1.65; }

.intelligence { padding-top: 120px; padding-bottom: 120px; }

.intelligence-workbench {
    margin-top: 54px;
    display: grid;
    grid-template-columns: 220px minmax(0, 1fr) 280px;
    min-height: 420px;
    border: 1px solid var(--line);
    background: #fff;
}

.intelligence-tabs {
    padding: 14px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    border-right: 1px solid var(--line);
    background: var(--surface-soft);
}

.intelligence-tab {
    min-height: 52px;
    padding: 0 14px;
    border: 0;
    border-left: 3px solid transparent;
    background: transparent;
    color: var(--ink-soft);
    cursor: pointer;
    text-align: left;
    font-weight: 750;
}

.intelligence-tab[aria-selected="true"] {
    color: var(--teal-dark);
    border-left-color: var(--teal);
    background: #fff;
}

.intelligence-panel {
    padding: 56px;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.intelligence-panel span { color: var(--teal-dark); font-size: 13px; font-weight: 800; text-transform: uppercase; }
.intelligence-panel h3 { max-width: 590px; margin: 14px 0 18px; font-size: 34px; line-height: 1.15; }
.intelligence-panel p { max-width: 620px; margin: 0; color: var(--muted); font-size: 17px; line-height: 1.75; }

.signal-board {
    padding: 26px;
    display: grid;
    align-content: center;
    gap: 0;
    color: #fff;
    background: var(--navy-soft);
}

.signal-board > div {
    min-height: 78px;
    padding: 15px 0;
    display: grid;
    grid-template-columns: 38px 1fr;
    border-bottom: 1px solid rgba(255, 255, 255, 0.13);
}

.signal-board > div:last-child { border-bottom: 0; }
.signal-board span { grid-row: 1 / span 2; color: #62e6dc; font-size: 12px; font-weight: 800; }
.signal-board strong { font-size: 14px; }
.signal-board small { color: #9fb2bd; }

.platform-section {
    padding: 116px 0;
    background: var(--surface-blue);
}

.platform-groups {
    margin-top: 52px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    border-top: 1px solid #bcd2d9;
    border-bottom: 1px solid #bcd2d9;
}

.platform-group {
    padding: 36px;
    border-right: 1px solid #bcd2d9;
}

.platform-group:first-child { padding-left: 0; }
.platform-group:last-child { padding-right: 0; border-right: 0; }
.platform-group h3 { margin: 0 0 24px; font-size: 22px; }
.platform-group ul { margin: 0; padding: 0; list-style: none; }
.platform-group li { position: relative; padding: 13px 0 13px 22px; border-top: 1px solid rgba(87, 119, 130, 0.2); color: var(--ink-soft); }
.platform-group li::before { content: "+"; position: absolute; left: 0; color: var(--teal-dark); font-weight: 800; }

.pricing-section { padding: 120px 0; background: #fff; }

.pricing-tool {
    margin-top: 54px;
    display: grid;
    grid-template-columns: minmax(0, 1fr) 390px;
    border: 1px solid var(--line);
    box-shadow: 0 18px 46px rgba(7, 22, 36, 0.09);
}

.pricing-controls { padding: 42px; }
.pricing-controls fieldset { margin: 0 0 30px; padding: 0; border: 0; }
.pricing-controls legend { margin-bottom: 14px; color: var(--ink-soft); font-weight: 800; }

.plan-selector {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.plan-option {
    min-height: 116px;
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: 6px;
    background: #fff;
    color: var(--ink);
    cursor: pointer;
    text-align: left;
}

.plan-option.selected { border-color: var(--teal-dark); box-shadow: inset 0 0 0 1px var(--teal-dark); background: #f1fbfa; }
.plan-option span { display: block; margin-bottom: 6px; color: var(--teal-dark); font-size: 12px; font-weight: 800; text-transform: uppercase; }
.plan-option strong { display: block; font-size: 18px; }
.plan-option small { display: block; margin-top: 8px; color: var(--muted); line-height: 1.4; }

.quantity-grid { margin-bottom: 30px; display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 12px; }
.quantity-grid label { color: var(--ink-soft); font-size: 14px; font-weight: 750; }
.quantity-grid input {
    width: 100%;
    height: 48px;
    margin-top: 8px;
    padding: 0 13px;
    border: 1px solid var(--line);
    border-radius: 4px;
    background: #fff;
    color: var(--ink);
}

.addon-list { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 12px; }
.addon-option {
    min-height: 88px;
    padding: 14px;
    display: grid;
    grid-template-columns: 20px 1fr;
    gap: 10px;
    border: 1px solid var(--line);
    border-radius: 4px;
    cursor: pointer;
}

.addon-option input { width: 18px; height: 18px; margin: 2px 0 0; accent-color: var(--teal-dark); }
.addon-option strong { display: block; font-size: 14px; }
.addon-option small { display: block; margin-top: 4px; color: var(--muted); line-height: 1.4; }

.pricing-summary {
    padding: 42px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    color: #fff;
    background: var(--navy);
}

.summary-label { color: #9fb2bd; font-size: 13px; font-weight: 800; text-transform: uppercase; }
.pricing-summary > strong { margin-top: 8px; font-size: 42px; line-height: 1.1; }
.pricing-summary > p { color: #afc0ca; line-height: 1.55; }
.annual-value { margin: 18px 0 24px; padding: 18px 0; border-top: 1px solid rgba(255,255,255,.15); border-bottom: 1px solid rgba(255,255,255,.15); }
.annual-value span { display: block; color: #9fb2bd; font-size: 12px; }
.annual-value strong { display: block; margin-top: 6px; font-size: 22px; }
.pricing-disclaimer { font-size: 12px; }

.contact-section { padding: 120px 0; color: #fff; background: #102f3d; }
.contact-layout { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 100px; align-items: start; }
.contact-copy > p { color: #bdd0d8; }

.lead-form { display: grid; gap: 18px; }
.field-row { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 16px; }
.lead-form label { display: grid; gap: 8px; color: #d9e6ea; font-size: 13px; font-weight: 700; }
.lead-form input,
.lead-form textarea {
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.28);
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.07);
    color: #fff;
}

.lead-form input { height: 48px; padding: 0 13px; }
.lead-form textarea { padding: 12px 13px; resize: vertical; }
.lead-form input::placeholder,
.lead-form textarea::placeholder { color: #9fb2bd; }
.lead-form .button { justify-self: start; }
.form-status { min-height: 24px; margin: 0; color: #8ff0d4; }
.form-status.error { color: #ffb3bd; }

.site-footer { color: var(--ink); background: #fff; }
.footer-main {
    width: min(var(--max-width), calc(100% - 64px));
    min-height: 190px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 220px 1fr auto;
    gap: 56px;
    align-items: center;
}

.footer-main p { color: var(--muted); }
.footer-links { display: flex; flex-wrap: wrap; justify-content: flex-end; gap: 18px 26px; font-size: 14px; font-weight: 700; }
.footer-links a:hover { color: var(--teal-dark); }
.footer-legal {
    min-height: 54px;
    padding: 0 max(32px, calc((100% - var(--max-width)) / 2));
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 12px;
}

.reveal { opacity: 0; transform: translateY(18px); transition: opacity 500ms ease, transform 500ms ease; }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (max-width: 1120px) {
    .site-header { grid-template-columns: 205px 1fr auto; gap: 16px; padding: 0 22px; }
    .site-nav { gap: 16px; }
    .site-nav a { font-size: 13px; }
    .header-actions .text-action { display: none; }
    .hero h1 { font-size: 62px; }
    .hero-statement { font-size: 27px; }
    .offering-row { grid-template-columns: 60px minmax(220px, .8fr) 1fr; }
    .offering-link { grid-column: 2 / -1; text-align: left; }
    .noc-layout { gap: 64px; }
    .intelligence-workbench { grid-template-columns: 190px 1fr; }
    .signal-board { grid-column: 1 / -1; grid-template-columns: repeat(4, 1fr); }
    .signal-board > div { border-right: 1px solid rgba(255,255,255,.13); border-bottom: 0; }
    .signal-board > div:last-child { border-right: 0; }
}

@media (max-width: 900px) {
    :root { --header-height: 68px; }
    .site-header { grid-template-columns: 1fr auto; height: var(--header-height); }
    .site-brand { width: min(var(--site-logo-width, 176px), 176px); height: min(var(--site-logo-height, 50px), 56px); }
    .menu-toggle { display: inline-grid; place-items: center; }
    .site-nav {
        position: fixed;
        inset: var(--header-height) 0 auto;
        padding: 26px 24px;
        display: none;
        align-items: stretch;
        flex-direction: column;
        gap: 0;
        background: #fff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 20px 36px rgba(7, 22, 36, .14);
    }
    .site-nav.is-open { display: flex; }
    .site-nav a { padding: 15px 0; border-bottom: 1px solid var(--line); font-size: 16px; }
    .site-nav a::after { display: none; }
    .site-nav .mobile-nav-action { display: block; }
    .site-nav .mobile-nav-primary { margin-top: 12px; padding: 13px 16px; color: #fff; background: var(--teal-dark); border: 0; border-radius: 6px; text-align: center; }
    .header-actions { display: none; }
    .hero { min-height: calc(100svh - var(--header-height) - 24px); background-position: 62% center; }
    .hero-content { width: min(660px, calc(100% - 48px)); margin-left: 24px; padding: 52px 0 108px; }
    .hero h1 { font-size: 54px; }
    .hero-statement { font-size: 25px; }
    .hero-description { font-size: 17px; }
    .hero-operational-note { left: 24px; right: 24px; bottom: 20px; min-width: 0; }
    .ecosystem-band { grid-template-columns: 1fr; gap: 14px; }
    .ecosystem-list { justify-content: flex-start; }
    .outcomes { grid-template-columns: 1fr; gap: 50px; padding-top: 88px; padding-bottom: 88px; }
    .section-intro h2, .offerings-header h2, .noc-copy h2, .contact-copy h2 { font-size: 40px; }
    .offering-row { grid-template-columns: 52px 1fr; min-height: 0; gap: 24px; }
    .offering-row .detail, .offering-link { grid-column: 2; }
    .noc-layout { grid-template-columns: 1fr; }
    .noc-copy { position: static; }
    .platform-groups { grid-template-columns: 1fr; }
    .platform-group, .platform-group:first-child, .platform-group:last-child { padding: 30px 0; border-right: 0; border-bottom: 1px solid #bcd2d9; }
    .platform-group:last-child { border-bottom: 0; }
    .pricing-tool { grid-template-columns: 1fr; }
    .contact-layout { grid-template-columns: 1fr; gap: 54px; }
    .footer-main { grid-template-columns: 1fr; gap: 18px; padding: 44px 0; }
    .footer-links { justify-content: flex-start; }
}

@media (max-width: 640px) {
    .section-shell, .footer-main { width: min(100% - 36px, var(--max-width)); }
    .site-header { padding: 0 18px; }
    .site-brand { width: min(var(--site-logo-width, 156px), 156px); }
    .hero { background-position: 67% center; }
    .hero-shade { background: rgba(2, 10, 18, 0.66); }
    .hero-content { width: calc(100% - 36px); margin-left: 18px; padding-top: 46px; }
    .hero h1 { font-size: 44px; }
    .hero-statement { font-size: 22px; }
    .hero-description { font-size: 15px; line-height: 1.55; }
    .hero-actions { align-items: stretch; flex-direction: column; }
    .hero-actions .button { width: 100%; }
    .hero-operational-note { left: 18px; right: 18px; }
    .ecosystem-band { padding-left: 18px; padding-right: 18px; }
    .ecosystem-list { gap: 12px 18px; }
    .section-intro h2, .offerings-header h2, .noc-copy h2, .contact-copy h2 { font-size: 32px; }
    .section-intro > p:last-child, .offerings-header > p:last-child, .noc-copy > p, .contact-copy > p { font-size: 16px; }
    .outcomes { padding-top: 72px; padding-bottom: 72px; }
    .outcome-metric { grid-template-columns: 112px 1fr; }
    .outcome-metric strong { font-size: 24px; }
    .offerings { padding-top: 76px; }
    .offerings-header { padding-bottom: 42px; }
    .offering-row { padding: 38px 18px; grid-template-columns: 38px 1fr; gap: 16px; }
    .offering-row h3 { font-size: 24px; }
    .noc-section, .intelligence, .platform-section, .pricing-section, .contact-section { padding-top: 80px; padding-bottom: 80px; }
    .noc-step { grid-template-columns: 52px 1fr; }
    .intelligence-workbench { grid-template-columns: 1fr; }
    .intelligence-tabs { flex-direction: row; overflow-x: auto; border-right: 0; border-bottom: 1px solid var(--line); }
    .intelligence-tab { min-width: 130px; border-left: 0; border-bottom: 3px solid transparent; }
    .intelligence-tab[aria-selected="true"] { border-left-color: transparent; border-bottom-color: var(--teal); }
    .intelligence-panel { padding: 32px 24px; }
    .intelligence-panel h3 { font-size: 27px; }
    .signal-board { grid-template-columns: repeat(2, 1fr); }
    .signal-board > div:nth-child(2) { border-right: 0; }
    .signal-board > div { border-bottom: 1px solid rgba(255,255,255,.13); }
    .plan-selector, .addon-list, .quantity-grid, .field-row { grid-template-columns: 1fr; }
    .pricing-controls, .pricing-summary { padding: 28px 22px; }
    .pricing-summary > strong { font-size: 36px; }
    .footer-legal { padding: 16px 18px; align-items: flex-start; flex-direction: column; }
}

@media (prefers-reduced-motion: reduce) {
    html { scroll-behavior: auto; }
    *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; animation-iteration-count: 1 !important; }
    .reveal { opacity: 1; transform: none; }
}
