﻿@font-face {
    font-family: "Cairo";
    src: url("/static/fonts/Cairo-Variable.ttf") format("truetype");
    font-weight: 200 800;
    font-style: normal;
    font-display: swap;
}

:root {
    --cw-forest: #06271f;
    --cw-deep: #031913;
    --cw-green: #155743;
    /* Brand unification, 2026-07-24: was #f2b44c (gold) -- the platform now
       has ONE accent color across all surfaces (RABuild, admin, Exposure
       Engine, marketing/Community) instead of three competing "brand"
       colors. Variable name kept as --cw-gold so all ~20 existing usages
       below don't need touching individually; only the two background-fill
       rules that paired a dark icon/text color against this variable
       (.cw-btn--gold, .cw-product__icon) needed their paired text color
       flipped to stay legible -- see those rules below. */
    --cw-gold: #17352B;
    --cw-paper: #f5f5ed;
    --cw-white: #ffffff;
    --cw-ink: #132821;
    --cw-muted: #60736b;
    --cw-line: rgba(19, 40, 33, .14);
    --cw-shadow: 0 24px 70px rgba(3, 25, 19, .12);
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    font-family: "Cairo", "Segoe UI", Arial, sans-serif;
    font-weight: 350;
    letter-spacing: 0;
    color: var(--cw-ink);
    background: var(--cw-paper);
    overflow-x: hidden;
}
body, body.cx-page { background: var(--cw-paper); }
body :where(p, li, dd, input, select, textarea) { font-weight: 350; }
body :where(h1, h2, h3, h4, strong, b) { font-weight: 650; }
a { color: inherit; text-decoration: none; }
img { max-width: 100%; }
button, input, select, textarea { font: inherit; }

.cw-shell {
    width: min(1280px, calc(100% - 48px));
    margin-inline: auto;
}

/* Global navigation */
.cyn-global-nav {
    position: sticky;
    top: 0;
    z-index: 1000;
    color: var(--cw-ink);
    background: rgba(255, 255, 255, .96);
    border-bottom: 1px solid var(--cw-line);
    box-shadow: 0 6px 24px rgba(3, 25, 19, .06);
    backdrop-filter: blur(18px);
}
.cyn-global-nav::before {
    content: "CYBER ASSURANCE FOR CRITICAL OPERATIONS";
    display: flex;
    align-items: center;
    justify-content: flex-end;
    min-height: 29px;
    padding: 0 max(24px, calc((100vw - 1280px) / 2));
    color: rgba(255,255,255,.72);
    background: var(--cw-deep);
    font-size: 10px;
    font-weight: 550;
    letter-spacing: .12em;
}
.cyn-global-nav__inner {
    width: min(1320px, calc(100% - 42px));
    min-height: 82px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 250px minmax(0, 1fr) auto;
    align-items: center;
    gap: 22px;
}
.cyn-global-nav__brand {
    align-self: stretch;
    display: flex;
    align-items: center;
    width: 230px;
    padding: 14px 24px;
    background: #fff;
    border-left: 5px solid var(--cw-forest);
    position: relative;
}
.cyn-global-nav__brand::after {
    content: "";
    position: absolute;
    right: -18px;
    top: 0;
    width: 19px;
    height: 100%;
    background: #fff;
    clip-path: polygon(0 0, 100% 50%, 0 100%);
}
.cyn-global-nav__brand img {
    display: block;
    width: 184px;
    height: 50px;
    object-fit: contain;
    filter: none;
}
.cyn-global-nav__menu {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3px;
}
.cyn-global-nav__link {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0 13px;
    border: 0;
    color: #294139;
    background: transparent;
    font-size: 14px;
    font-weight: 450;
    cursor: pointer;
    white-space: nowrap;
    position: relative;
}
.cyn-global-nav__link::after {
    content: "";
    position: absolute;
    left: 13px;
    right: 13px;
    bottom: 2px;
    height: 2px;
    background: var(--cw-gold);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform .2s ease;
}
.cyn-global-nav__link:hover,
.cyn-global-nav__link.is-active { color: var(--cw-deep); }
.cyn-global-nav__link:hover::after,
.cyn-global-nav__link.is-active::after { transform: scaleX(1); }
.cyn-global-nav__trigger i { font-size: 10px; transition: transform .18s ease; }
.cyn-global-nav__dropdown.is-open .cyn-global-nav__trigger i { transform: rotate(180deg); }
.cyn-global-nav__dropdown { position: relative; }
.cyn-global-nav__panel {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    width: 360px;
    display: none;
    padding: 10px;
    background: var(--cw-white);
    border: 1px solid var(--cw-line);
    box-shadow: 0 24px 60px rgba(3, 25, 19, .16);
}
.cyn-global-nav__dropdown.is-open .cyn-global-nav__panel { display: grid; }
.cyn-global-nav__panel a {
    display: grid;
    gap: 2px;
    padding: 12px 14px;
    border-left: 2px solid transparent;
    transition: background .16s ease, border-color .16s ease, transform .16s ease;
}
.cyn-global-nav__panel a:hover {
    background: #f2f5ef;
    border-color: var(--cw-gold);
    transform: translateX(3px);
}
.cyn-global-nav__panel strong { color: var(--cw-deep); font-size: 14px; }
.cyn-global-nav__panel span { color: var(--cw-muted); font-size: 11px; line-height: 1.5; }
.cyn-global-nav__actions { display: flex; align-items: center; gap: 9px; }
.cyn-global-nav__button {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 0 18px;
    border: 1px solid var(--cw-forest);
    font-size: 13px;
    font-weight: 550;
    transition: transform .18s ease, background .18s ease, color .18s ease;
}
.cyn-global-nav__button:hover { transform: translateY(-2px); }
.cyn-global-nav__button--dark,
.cyn-global-nav__button--dark:visited { background: var(--cw-forest); color: #fff !important; }
.cyn-global-nav__button--light { background: transparent; color: var(--cw-forest); border-color: rgba(6,39,31,.32); }
.cyn-global-nav__button--light:hover { background: #eef3ec; }
.cyn-global-nav__mobile { display: none; }
.cyn-global-nav__mobile-panel { display: none; }

/* Homepage */
.cw-home { background: #fff; }
.cw-hero {
    min-height: min(760px, calc(100vh - 111px));
    display: grid;
    align-items: start;
    color: #fff;
    background:
        linear-gradient(90deg, rgba(3,25,19,.98) 0%, rgba(3,25,19,.88) 39%, rgba(3,25,19,.30) 70%, rgba(3,25,19,.10) 100%),
        url("/static/cynapse-command-hero-v2.png") center / cover no-repeat;
    position: relative;
    overflow: hidden;
}
.cw-hero::after {
    content: "";
    position: absolute;
    inset: auto 0 0;
    height: 5px;
    background: linear-gradient(90deg, var(--cw-gold) 0 22%, #4f934d 22% 63%, rgba(255,255,255,.2) 63%);
}
.cw-hero__content { position: relative; z-index: 1; max-width: 720px; padding: 68px 0 64px; }
.cw-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--cw-gold);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .15em;
    text-transform: uppercase;
}
.cw-eyebrow::before { content: ""; width: 34px; height: 2px; background: currentColor; }
.cw-hero h1 {
    max-width: 760px;
    margin: 20px 0;
    color: #fff;
    font-size: clamp(44px, 6vw, 82px);
    line-height: 1.02;
    letter-spacing: 0;
    font-weight: 650;
}
.cw-hero p {
    max-width: 640px;
    margin: 0;
    color: rgba(255,255,255,.82);
    font-size: clamp(14px, 1.05vw, 17px);
    line-height: 1.65;
}
.cw-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 32px; }
.cw-btn {
    min-height: 50px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 0 22px;
    border: 1px solid transparent;
    font-size: 14px;
    font-weight: 600;
    transition: transform .2s ease, box-shadow .2s ease, background .2s ease;
}
.cw-btn:hover { transform: translateY(-2px); box-shadow: 0 14px 30px rgba(0,0,0,.18); }
.cw-btn--gold { color: var(--cw-paper); background: var(--cw-gold); }
.cw-btn--outline { color: #fff; border-color: rgba(255,255,255,.46); background: rgba(255,255,255,.05); }
.cw-btn--dark { color: #fff; background: var(--cw-forest); }
.cw-hero__proof {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    margin-top: 42px;
    color: rgba(255,255,255,.68);
    font-size: 12px;
}
.cw-hero__proof span { display: inline-flex; align-items: center; gap: 8px; }
.cw-hero__proof i { color: var(--cw-gold); }
.cw-trust {
    background: var(--cw-paper);
    border-bottom: 1px solid var(--cw-line);
}
.cw-trust__inner {
    min-height: 84px;
    display: grid;
    grid-template-columns: 180px repeat(7, 1fr);
    align-items: center;
    gap: 18px;
}
.cw-trust__label {
    color: var(--cw-muted);
    font-size: 11px;
    line-height: 1.5;
    letter-spacing: .1em;
    text-transform: uppercase;
}
.cw-standard {
    display: grid;
    gap: 2px;
    padding-left: 16px;
    border-left: 1px solid var(--cw-line);
}
.cw-standard strong { color: var(--cw-deep); font-size: 13px; }
.cw-standard span { color: var(--cw-muted); font-size: 10px; }
.cw-band { padding: 96px 0; }
.cw-band--dark { color: #fff; background: var(--cw-deep); }
.cw-band--paper { background: var(--cw-paper); }
.cw-head {
    display: grid;
    grid-template-columns: minmax(0, .85fr) minmax(320px, .55fr);
    gap: 80px;
    align-items: end;
    margin-bottom: 44px;
}
.cw-head h2 {
    margin: 12px 0 0;
    font-size: clamp(34px, 4.2vw, 58px);
    line-height: 1.08;
    color: var(--cw-deep);
}
.cw-band--dark .cw-head h2 { color: #fff; }
.cw-head p { margin: 0; color: var(--cw-muted); font-size: 16px; line-height: 1.8; }
.cw-band--dark .cw-head p { color: rgba(255,255,255,.65); }
.cw-platform-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    border: 1px solid rgba(255,255,255,.14);
}
.cw-product {
    min-height: 420px;
    display: flex;
    flex-direction: column;
    padding: 34px;
    border-right: 1px solid rgba(255,255,255,.14);
    background: linear-gradient(180deg, rgba(255,255,255,.045), rgba(255,255,255,.015));
    position: relative;
    overflow: hidden;
    transition: background .24s ease;
}
.cw-product:last-child { border-right: 0; }
.cw-product:hover { background: rgba(255,255,255,.09); }
.cw-product::before {
    content: attr(data-number);
    position: absolute;
    right: 24px;
    top: 8px;
    color: rgba(255,255,255,.05);
    font-size: 108px;
    line-height: 1;
    font-weight: 700;
}
.cw-product__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    color: var(--cw-paper);
    background: var(--cw-gold);
    font-size: 20px;
}
.cw-product h3 { margin: 28px 0 10px; color: #fff; font-size: 25px; }
.cw-product p { margin: 0; color: rgba(255,255,255,.64); line-height: 1.75; }
.cw-product ul { display: grid; gap: 10px; margin: 25px 0 30px; padding: 0; list-style: none; }
.cw-product li { color: rgba(255,255,255,.82); font-size: 13px; }
.cw-product li::before { content: "â€”"; margin-right: 9px; color: var(--cw-gold); }
.cw-product a { margin-top: auto; color: var(--cw-gold); font-size: 13px; font-weight: 600; }
.cw-outcomes { display: grid; grid-template-columns: repeat(4, 1fr); border-top: 1px solid var(--cw-line); border-left: 1px solid var(--cw-line); }
.cw-outcome { min-height: 235px; padding: 30px; border-right: 1px solid var(--cw-line); border-bottom: 1px solid var(--cw-line); background: #fff; }
.cw-outcome i { color: var(--cw-green); font-size: 23px; }
.cw-outcome h3 { margin: 32px 0 10px; color: var(--cw-deep); font-size: 19px; }
.cw-outcome p { margin: 0; color: var(--cw-muted); line-height: 1.7; font-size: 13px; }
.cw-industry-grid { display: grid; grid-template-columns: 1.45fr 1fr 1fr; grid-auto-rows: 255px; gap: 12px; }
.cw-industry {
    min-height: 255px;
    display: flex;
    align-items: end;
    padding: 28px;
    color: #fff;
    background: linear-gradient(145deg, #0c3b30, #031913);
    position: relative;
    overflow: hidden;
}
.cw-industry:first-child { grid-row: span 2; }
.cw-industry::before {
    content: "";
    position: absolute;
    inset: 0;
    opacity: .3;
    background-size: 68%;
    background-position: 112% 50%;
    background-repeat: no-repeat;
    transition: transform .35s ease, opacity .35s ease;
}
.cw-industry:hover::before { transform: scale(1.06); opacity: .5; }
.cw-industry--transport::before { background-image: url("/static/visual_transportation.svg"); }
.cw-industry--airport::before { background-image: url("/static/visual_airports.svg"); }
.cw-industry--industrial::before { background-image: url("/static/visual_industrial.svg"); }
.cw-industry--utilities::before { background-image: url("/static/visual_energy_water.svg"); }
.cw-industry--public::before { background-image: url("/static/visual_public_defense.svg"); }
.cw-industry div { position: relative; z-index: 1; max-width: 330px; }
.cw-industry small { color: var(--cw-gold); font-size: 10px; text-transform: uppercase; letter-spacing: .12em; }
.cw-industry h3 { margin: 8px 0 5px; font-size: 22px; }
.cw-industry p { margin: 0; color: rgba(255,255,255,.66); font-size: 12px; line-height: 1.6; }
.cw-cta {
    padding: 76px 0;
    color: #fff;
    background: var(--cw-forest);
}
.cw-cta__inner { display: grid; grid-template-columns: 1fr auto; align-items: center; gap: 40px; }
.cw-cta h2 { margin: 0; font-size: clamp(30px, 4vw, 50px); line-height: 1.1; }
.cw-cta p { margin: 12px 0 0; color: rgba(255,255,255,.68); }

/* Internal public pages */
body:not(.cw-home) :where(.hero, .hero-shell, .pricing-hero, .cx-hero) {
    color: #fff;
    background:
        linear-gradient(100deg, rgba(3,25,19,.98), rgba(6,39,31,.86) 58%, rgba(6,39,31,.54)),
        url("/static/cynapse-command-hero-v2.png") center / cover no-repeat;
}
body:not(.cw-home) :where(.hero, .hero-shell, .pricing-hero, .cx-hero) :where(h1, h2, h3, .cx-title) { color: #fff !important; }
body:not(.cw-home) :where(.hero, .hero-shell, .pricing-hero, .cx-hero) :where(p, .intro, .cx-text) { color: rgba(255,255,255,.78) !important; }
body:not(.cw-home) :where(.hero, .hero-shell, .pricing-hero, .cx-hero) :where(.kicker, .eyebrow, .cx-eyebrow) { color: var(--cw-gold) !important; }
body:not(.cw-home) :where(.main, main) { background: var(--cw-paper); }
body:not(.cw-home) :where(.section, .cx-section, .plans-section, .comparison-section, .commercial-section, .faq-section) {
    border-radius: 0 !important;
}
body:not(.cw-home) :where(.capability-card, .card-shell, .cx-card, .cx-program, .cx-feed-card, .plan-card) {
    border-radius: 3px !important;
    border-color: var(--cw-line) !important;
    box-shadow: none !important;
    background: #fff !important;
}
body:not(.cw-home) :where(.capability-card, .card-shell, .cx-card, .cx-program, .cx-feed-card, .plan-card) {
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
body:not(.cw-home) :where(.capability-card, .card-shell, .cx-card, .cx-program, .cx-feed-card, .plan-card):hover {
    transform: translateY(-4px);
    border-color: rgba(21,87,67,.35) !important;
    box-shadow: var(--cw-shadow) !important;
}
body:not(.cw-home) :where(.capability-card, .card-shell, .cx-card, .cx-program, .cx-feed-card, .plan-card) :where(h2,h3,h4) {
    color: var(--cw-deep) !important;
}
body:not(.cw-home) :where(.capability-card, .card-shell, .cx-card, .cx-program, .cx-feed-card, .plan-card) :where(p,li,span) {
    color: var(--cw-muted);
}
body:not(.cw-home) :where(.cx-btn--dark, .button--dark, .cy-btn--dark) { color: #fff !important; background: var(--cw-forest) !important; }
body:not(.cw-home) :where(.cx-btn--light, .button--outline, .cy-btn--line) { color: var(--cw-forest) !important; background: #fff !important; }
.story-image img,
.visual-card img {
    width: 100%;
    display: block;
    border-radius: 3px !important;
    box-shadow: 0 28px 70px rgba(0,0,0,.28);
}

/* Footer */
.cw-footer { color: rgba(255,255,255,.7); background: var(--cw-deep); }
.cw-footer__main {
    display: grid;
    grid-template-columns: 1.2fr repeat(3, .7fr);
    gap: 58px;
    padding: 64px 0 48px;
}
.cw-footer__brand img { width: 210px; filter: brightness(0) invert(1); }
.cw-footer__brand p { max-width: 390px; margin: 20px 0 0; line-height: 1.8; font-size: 13px; }
.cw-footer h3 { margin: 0 0 18px; color: #fff; font-size: 13px; text-transform: uppercase; letter-spacing: .08em; }
.cw-footer nav { display: grid; gap: 11px; }
.cw-footer nav a { font-size: 12px; transition: color .16s ease, transform .16s ease; }
.cw-footer nav a:hover { color: var(--cw-gold); transform: translateX(3px); }
.cw-footer__bottom {
    min-height: 66px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    border-top: 1px solid rgba(255,255,255,.12);
    font-size: 11px;
}

[data-cw-reveal] {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .65s ease, transform .65s ease;
}
[data-cw-reveal].is-visible { opacity: 1; transform: none; }
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after { scroll-behavior: auto !important; animation: none !important; transition: none !important; }
    [data-cw-reveal] { opacity: 1; transform: none; }
}

@media (max-width: 1120px) {
    .cyn-global-nav__inner { grid-template-columns: 220px 1fr auto; }
    .cyn-global-nav__brand { width: 204px; }
    .cyn-global-nav__brand img { width: 160px; }
    .cyn-global-nav__menu { display: none; }
    .cyn-global-nav__button--light { display: none; }
    .cyn-global-nav__mobile {
        width: 44px;
        height: 44px;
        display: inline-grid;
        place-items: center;
        border: 1px solid var(--cw-line);
        color: var(--cw-deep);
        background: #fff;
    }
    .cyn-global-nav__mobile-panel.is-open {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 1px;
        padding: 16px max(24px, calc((100vw - 1000px) / 2));
        background: var(--cw-deep);
    }
    .cyn-global-nav__mobile-panel a { padding: 11px; color: rgba(255,255,255,.84); font-size: 12px; }
    .cw-platform-grid { grid-template-columns: 1fr; }
    .cw-product { min-height: 330px; border-right: 0; border-bottom: 1px solid rgba(255,255,255,.14); }
    .cw-outcomes { grid-template-columns: repeat(2, 1fr); }
    .cw-trust__inner { grid-template-columns: repeat(3, 1fr); padding-block: 20px; }
    .cw-trust__label { grid-column: 1 / -1; }
    .cw-industry-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 760px) {
    .cw-shell { width: min(100% - 30px, 1280px); }
    .cyn-global-nav::before { min-height: 24px; justify-content: center; font-size: 8px; }
    .cyn-global-nav__inner { width: calc(100% - 24px); min-height: 68px; grid-template-columns: 156px 1fr; }
    .cyn-global-nav__brand { width: 148px; padding: 8px 14px; }
    .cyn-global-nav__brand::after { right: -12px; width: 13px; }
    .cyn-global-nav__brand img { width: 122px; height: 40px; }
    .cyn-global-nav__actions { justify-self: end; }
    .cyn-global-nav__button--dark { display: none; }
    .cyn-global-nav__mobile-panel.is-open { grid-template-columns: 1fr 1fr; max-height: calc(100vh - 92px); overflow: auto; }
    .cw-hero { min-height: 680px; background-position: 62% center; }
    .cw-hero::before { content: ""; position: absolute; inset: 0; background: rgba(3,25,19,.42); }
    .cw-hero__content { padding: 72px 0 88px; }
    .cw-hero h1 { font-size: clamp(40px, 13vw, 58px); }
    .cw-hero p { font-size: 16px; }
    .cw-actions { display: grid; }
    .cw-btn { width: 100%; }
    .cw-hero__proof { display: grid; gap: 10px; }
    .cw-trust__inner { grid-template-columns: 1fr 1fr; }
    .cw-head { grid-template-columns: 1fr; gap: 20px; }
    .cw-band { padding: 68px 0; }
    .cw-outcomes { grid-template-columns: 1fr; }
    .cw-industry-grid { grid-template-columns: 1fr; grid-auto-rows: 240px; }
    .cw-industry:first-child { grid-row: auto; }
    .cw-cta__inner { grid-template-columns: 1fr; }
    .cw-footer__main { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
    .cw-footer__brand { grid-column: 1 / -1; }
    .cw-footer__bottom { align-items: flex-start; flex-direction: column; justify-content: center; padding-block: 18px; }
}

.footer { display: none !important; }
.cw-page-hero { min-height:560px; display:grid; align-items:center; color:#fff; background:linear-gradient(90deg,rgba(3,25,19,.98),rgba(3,25,19,.78) 53%,rgba(3,25,19,.22)),url("/static/cynapse-command-hero-v2.png") center/cover no-repeat; }
.cw-page-hero__grid { display:grid; grid-template-columns:minmax(0,.9fr) minmax(360px,.65fr); gap:70px; align-items:center; padding:84px 0; }
.cw-page-hero h1 { max-width:780px; margin:18px 0; color:#fff; font-size:clamp(42px,5.5vw,72px); line-height:1.04; }
.cw-page-hero p { max-width:700px; margin:0; color:rgba(255,255,255,.76); font-size:17px; line-height:1.8; }
.cw-page-visual { padding:12px; border:1px solid rgba(255,255,255,.2); background:rgba(255,255,255,.07); box-shadow:0 30px 80px rgba(0,0,0,.34); backdrop-filter:blur(12px); }
.cw-page-visual img { width:100%; display:block; }
.cw-story-grid { display:grid; grid-template-columns:minmax(0,.8fr) minmax(0,1.2fr); gap:0; border:1px solid var(--cw-line); background:#fff; }
.cw-story-copy { padding:clamp(32px,5vw,68px); }
.cw-story-copy h2 { margin:14px 0 20px; color:var(--cw-deep); font-size:clamp(32px,4vw,52px); line-height:1.1; }
.cw-story-copy p { color:var(--cw-muted); line-height:1.85; }
.cw-story-media { min-height:560px; background:#e8ede5; }
.cw-story-media img { width:100%; height:100%; display:block; object-fit:cover; }
.cw-answer-grid { display:grid; grid-template-columns:repeat(3,1fr); border:1px solid var(--cw-line); background:#fff; }
.cw-answer { min-height:260px; padding:34px; border-right:1px solid var(--cw-line); }
.cw-answer:last-child { border-right:0; }
.cw-answer span { color:var(--cw-gold); font-size:38px; line-height:1; font-weight:650; }
.cw-answer h3 { margin:48px 0 10px; color:var(--cw-deep); font-size:20px; }
.cw-answer p { margin:0; color:var(--cw-muted); font-size:13px; line-height:1.75; }
.cw-principles { display:grid; grid-template-columns:.9fr 1.1fr; gap:70px; align-items:start; }
.cw-principles__list { border-top:1px solid var(--cw-line); }
.cw-principle { display:grid; grid-template-columns:46px 1fr; gap:18px; padding:24px 0; border-bottom:1px solid var(--cw-line); }
.cw-principle i { color:var(--cw-green); font-size:21px; }
.cw-principle h3 { margin:0; color:var(--cw-deep); font-size:18px; }
.cw-principle p { margin:7px 0 0; color:var(--cw-muted); line-height:1.7; font-size:13px; }
@media (max-width:760px) {
  .cw-page-hero__grid,.cw-story-grid,.cw-principles { grid-template-columns:1fr; }
  .cw-page-hero__grid { gap:32px; padding:62px 0; }
  .cw-page-visual { display:none; }
  .cw-story-media { min-height:360px; order:-1; }
  .cw-answer-grid { grid-template-columns:1fr; }
  .cw-answer { min-height:auto; border-right:0; border-bottom:1px solid var(--cw-line); }
  .cw-answer:last-child { border-bottom:0; }
}

/* Dark hero component contrast */
.cyn-global-nav.is-mobile-open .cyn-global-nav__mobile-panel { display:grid; }
body:not(.cw-home) .cx-hero-panel,
body:not(.cw-home) .pricing-summary,
body:not(.cw-home) .visual-card { color:#fff !important; background:rgba(3,25,19,.78) !important; border-color:rgba(255,255,255,.18) !important; }
body:not(.cw-home) .cx-hero-panel :where(.cx-panel-title,p),
body:not(.cw-home) .pricing-summary :where(p,span,strong),
body:not(.cw-home) .visual-card :where(p,span,strong) { color:rgba(255,255,255,.78) !important; }
body:not(.cw-home) .cx-hero-panel .cx-metric { background:rgba(255,255,255,.96) !important; }
body:not(.cw-home) .cx-hero-panel .cx-metric span { color:var(--cw-muted) !important; }
body:not(.cw-home) .cx-hero-panel .cx-metric strong { color:var(--cw-deep) !important; }
@media (max-width:1120px) {
  .cyn-global-nav.is-mobile-open .cyn-global-nav__mobile-panel { grid-template-columns:repeat(3,1fr); gap:1px; padding:16px max(24px,calc((100vw - 1000px)/2)); background:var(--cw-deep); }
}
@media (max-width:760px) {
  .cyn-global-nav.is-mobile-open .cyn-global-nav__mobile-panel { grid-template-columns:1fr 1fr; max-height:calc(100vh - 92px); overflow:auto; }
}

/* Unified public content system */
.cw-resource-hero { min-height:520px; display:grid; align-items:center; color:#fff; background:linear-gradient(90deg,rgba(3,25,19,.98),rgba(3,25,19,.82) 55%,rgba(3,25,19,.25)),url("/static/cynapse-command-hero-v2.png") center/cover no-repeat; }
.cw-resource-hero__grid { display:grid; grid-template-columns:minmax(0,1fr) 390px; gap:68px; align-items:center; padding:80px 0; }
.cw-resource-hero h1 { max-width:820px; margin:18px 0; color:#fff; font-size:clamp(40px,5vw,68px); line-height:1.05; }
.cw-resource-hero p { max-width:720px; margin:0; color:rgba(255,255,255,.76); font-size:17px; line-height:1.8; }
.cw-metric-panel { display:grid; grid-template-columns:1fr 1fr; border:1px solid rgba(255,255,255,.2); background:rgba(3,25,19,.72); backdrop-filter:blur(14px); }
.cw-metric { min-height:128px; display:flex; flex-direction:column; justify-content:flex-end; padding:22px; border-right:1px solid rgba(255,255,255,.13); border-bottom:1px solid rgba(255,255,255,.13); }
.cw-metric:nth-child(2n) { border-right:0; }
.cw-metric:nth-last-child(-n+2) { border-bottom:0; }
.cw-metric span { color:rgba(255,255,255,.55); font-size:10px; text-transform:uppercase; letter-spacing:.1em; }
.cw-metric strong { margin-top:6px; color:#fff; font-size:24px; }
.cw-section { padding:88px 0; }
.cw-section--paper { background:var(--cw-paper); }
.cw-section--white { background:#fff; }
.cw-section--dark { color:#fff; background:var(--cw-deep); }
.cw-section-head { display:grid; grid-template-columns:minmax(0,.85fr) minmax(300px,.55fr); align-items:end; gap:70px; margin-bottom:40px; }
.cw-section-head h2 { margin:12px 0 0; color:var(--cw-deep); font-size:clamp(32px,4vw,52px); line-height:1.1; }
.cw-section-head p { margin:0; color:var(--cw-muted); line-height:1.8; }
.cw-section--dark .cw-section-head h2 { color:#fff; }
.cw-section--dark .cw-section-head p { color:rgba(255,255,255,.65); }
.cw-feature-grid { display:grid; grid-template-columns:repeat(4,1fr); border-top:1px solid var(--cw-line); border-left:1px solid var(--cw-line); }
.cw-feature { min-height:250px; padding:30px; border-right:1px solid var(--cw-line); border-bottom:1px solid var(--cw-line); background:#fff; transition:transform .2s ease,box-shadow .2s ease; }
.cw-feature:hover { transform:translateY(-4px); box-shadow:var(--cw-shadow); }
.cw-feature i { color:var(--cw-green); font-size:24px; }
.cw-feature h3 { margin:36px 0 10px; color:var(--cw-deep); font-size:19px; }
.cw-feature p { margin:0; color:var(--cw-muted); font-size:13px; line-height:1.75; }
.cw-record-list { display:grid; border-top:1px solid var(--cw-line); }
.cw-record { display:grid; grid-template-columns:64px minmax(0,1fr) auto; gap:24px; align-items:start; padding:28px 0; border-bottom:1px solid var(--cw-line); }
.cw-record__icon { width:54px; height:54px; display:grid; place-items:center; color:#fff; background:var(--cw-forest); font-size:20px; }
.cw-record h3 { margin:8px 0 8px; color:var(--cw-deep); font-size:22px; }
.cw-record p { margin:0; color:var(--cw-muted); line-height:1.75; }
.cw-tags { display:flex; flex-wrap:wrap; gap:7px; margin-top:14px; }
.cw-tag { display:inline-flex; align-items:center; gap:6px; min-height:27px; padding:0 9px; color:var(--cw-green); background:#eaf2e8; font-size:10px; font-weight:550; }
.cw-record__actions { display:flex; gap:8px; padding-top:8px; }
.cw-btn--line { min-height:44px; color:var(--cw-forest); border-color:rgba(6,39,31,.3); background:#fff; }
.cw-empty { padding:28px; border:1px dashed rgba(6,39,31,.25); color:var(--cw-muted); background:#fff; }
.cw-alert { margin:24px auto 0; padding:16px 20px; border-left:4px solid var(--cw-green); color:var(--cw-deep); background:#edf5eb; }
.cw-alert--bad { border-color:#a13c31; background:#fff0ee; }

/* Professional community feed */
.cw-community-layout { display:grid; grid-template-columns:230px minmax(0,1fr) 280px; gap:22px; align-items:start; }
.cw-community-side { position:sticky; top:132px; border:1px solid var(--cw-line); background:#fff; }
.cw-community-side__head { padding:24px; color:#fff; background:var(--cw-forest); }
.cw-community-side__head strong { display:block; font-size:18px; }
.cw-community-side__head span { display:block; margin-top:5px; color:rgba(255,255,255,.6); font-size:11px; }
.cw-community-nav { display:grid; padding:10px; }
.cw-community-nav a { display:flex; align-items:center; gap:10px; min-height:42px; padding:0 12px; color:#344c43; font-size:12px; border-left:2px solid transparent; }
.cw-community-nav a:hover { color:var(--cw-deep); background:#f1f5ef; border-color:var(--cw-gold); }
.cw-composer { padding:20px; border:1px solid var(--cw-line); background:#fff; }
.cw-composer__row { display:grid; grid-template-columns:42px 1fr; gap:12px; align-items:center; }
.cw-avatar { width:42px; height:42px; display:grid; place-items:center; color:#fff; background:var(--cw-green); font-weight:650; }
.cw-composer__input { min-height:44px; display:flex; align-items:center; padding:0 15px; color:var(--cw-muted); border:1px solid var(--cw-line); background:var(--cw-paper); font-size:12px; }
.cw-feed { display:grid; gap:14px; margin-top:18px; }
.cw-post { border:1px solid var(--cw-line); background:#fff; }
.cw-post__head { display:grid; grid-template-columns:42px 1fr; gap:12px; padding:20px 22px 10px; }
.cw-post__author { color:var(--cw-deep); font-size:13px; font-weight:650; }
.cw-post__meta { color:var(--cw-muted); font-size:10px; }
.cw-post__body { padding:6px 22px 20px; }
.cw-post__body h3 { margin:12px 0 8px; color:var(--cw-deep); font-size:20px; }
.cw-post__body p { margin:0; color:#53675f; line-height:1.75; }
.cw-post__actions { display:flex; align-items:center; justify-content:space-between; gap:12px; padding:11px 22px; border-top:1px solid var(--cw-line); }
.cw-filter { padding:20px; }
.cw-filter h3 { margin:8px 0 18px; color:var(--cw-deep); }
.cw-filter form { display:grid; gap:12px; }
.cw-field label { display:block; margin-bottom:5px; color:var(--cw-muted); font-size:10px; text-transform:uppercase; }
.cw-input { width:100%; min-height:42px; padding:0 11px; color:var(--cw-deep); border:1px solid var(--cw-line); background:#fff; }

/* Public capability and industry pages */
.cw-public-hero-visual { min-height:340px; display:grid; place-items:center; padding:35px; border:1px solid rgba(255,255,255,.2); background:rgba(3,25,19,.72); }
.cw-public-hero-visual img { width:min(100%,320px); max-height:280px; object-fit:contain; }
.cw-capability-grid { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--cw-line); border-left:1px solid var(--cw-line); }
.cw-capability { min-height:275px; padding:30px; border-right:1px solid var(--cw-line); border-bottom:1px solid var(--cw-line); background:#fff; }
.cw-capability i { color:var(--cw-green); font-size:24px; }
.cw-capability small { display:block; margin-top:30px; color:var(--cw-gold); font-size:10px; text-transform:uppercase; letter-spacing:.1em; }
.cw-capability h3 { margin:8px 0 10px; color:var(--cw-deep); font-size:20px; }
.cw-capability p { margin:0; color:var(--cw-muted); line-height:1.75; font-size:13px; }
.cw-industry-value { display:grid; grid-template-columns:1fr 1fr; border:1px solid var(--cw-line); background:#fff; }
.cw-industry-value__visual { min-height:460px; display:grid; place-items:center; padding:50px; background:var(--cw-forest); }
.cw-industry-value__visual img { max-height:360px; filter:brightness(0) invert(1); opacity:.9; }
.cw-industry-value__copy { padding:clamp(34px,5vw,70px); }
.cw-industry-value__copy h2 { margin:12px 0 24px; color:var(--cw-deep); font-size:clamp(30px,4vw,48px); line-height:1.1; }
.cw-value-row { display:grid; grid-template-columns:38px 1fr; gap:14px; padding:18px 0; border-top:1px solid var(--cw-line); }
.cw-value-row i { color:var(--cw-green); font-size:18px; }
.cw-value-row h3 { margin:0; color:var(--cw-deep); font-size:16px; }
.cw-value-row p { margin:5px 0 0; color:var(--cw-muted); font-size:12px; line-height:1.7; }
.cw-form-panel { margin-top:50px; padding:clamp(28px,5vw,58px); border:1px solid var(--cw-line); background:#fff; }
.cw-form-grid { display:grid; grid-template-columns:1fr 1fr; gap:14px; margin-top:28px; }
.cw-form-grid .span-2 { grid-column:1/-1; }
.cw-form-grid :where(input,select,textarea) { width:100%; min-height:48px; padding:12px 14px; color:var(--cw-deep); border:1px solid var(--cw-line); background:#f9faf6; }

/* Pricing alignment */
.pricing-hero { min-height:520px !important; padding:0 !important; }
.pricing-hero__inner { width:min(1280px,calc(100% - 48px)) !important; min-height:520px; display:grid !important; grid-template-columns:minmax(0,1fr) 390px !important; align-items:center; gap:68px !important; padding:70px 0 !important; }
.pricing-hero h1 { font-size:clamp(40px,5vw,68px) !important; line-height:1.05 !important; }
.billing-control { border-radius:0 !important; background:rgba(3,25,19,.78) !important; border:1px solid rgba(255,255,255,.2) !important; }
.launch-strip,.plans-section,.comparison-section,.commercial-section,.faq-section,.final-cta { width:min(1280px,calc(100% - 48px)) !important; margin-inline:auto !important; }
.plan-card,.offer-panel,.addons-panel,.faq-grid details { border-radius:0 !important; }
.pricing-footer { display:none !important; }

@media(max-width:1050px){
 .cw-resource-hero__grid,.cw-public-hero__grid,.pricing-hero__inner { grid-template-columns:1fr !important; }
 .cw-metric-panel { max-width:620px; }
 .cw-feature-grid { grid-template-columns:repeat(2,1fr); }
 .cw-community-layout { grid-template-columns:1fr; }
 .cw-community-side { position:static; }
 .cw-community-layout>aside:last-child { display:none; }
 .cw-capability-grid { grid-template-columns:repeat(2,1fr); }
}
@media(max-width:760px){
 .cw-resource-hero__grid { grid-template-columns:1fr; gap:30px; padding:58px 0; }
 .cw-section,.cw-band { padding:62px 0; }
 .cw-section-head { grid-template-columns:1fr; gap:18px; }
 .cw-feature-grid,.cw-capability-grid,.cw-industry-value { grid-template-columns:1fr; }
 .cw-record { grid-template-columns:50px 1fr; }
 .cw-record__actions { grid-column:2; }
 .cw-form-grid { grid-template-columns:1fr; }
 .cw-form-grid .span-2 { grid-column:auto; }
 .cw-industry-value__visual { min-height:300px; }
 .pricing-hero__inner,.launch-strip,.plans-section,.comparison-section,.commercial-section,.faq-section,.final-cta { width:min(100% - 30px,1280px) !important; }
}





/* About narrative and RABUILD industry value */
.cw-about-photo { position:relative; min-height:420px; overflow:hidden; background:var(--cw-deep); }
.cw-about-photo img { width:100%; height:100%; min-height:420px; display:block; object-fit:cover; }
.cw-about-photo::after { content:""; position:absolute; inset:0; background:linear-gradient(90deg,rgba(3,25,19,.48),transparent 55%); pointer-events:none; }
.cw-story-steps { display:grid; grid-template-columns:repeat(3,1fr); border-top:1px solid var(--cw-line); border-left:1px solid var(--cw-line); }
.cw-story-step { min-height:280px; padding:34px; border-right:1px solid var(--cw-line); border-bottom:1px solid var(--cw-line); background:#fff; position:relative; overflow:hidden; }
.cw-story-step::after { content:attr(data-step); position:absolute; right:18px; top:0; color:rgba(6,39,31,.05); font-size:96px; line-height:1; font-weight:700; }
.cw-story-step small { color:var(--cw-gold); font-size:10px; text-transform:uppercase; letter-spacing:.12em; }
.cw-story-step h3 { max-width:270px; margin:50px 0 11px; color:var(--cw-deep); font-size:21px; }
.cw-story-step p { margin:0; color:var(--cw-muted); font-size:13px; line-height:1.75; }
.cw-story-quote { display:grid; grid-template-columns:minmax(0,.82fr) minmax(360px,1.18fr); align-items:stretch; background:var(--cw-deep); }
.cw-story-quote__copy { display:flex; flex-direction:column; justify-content:center; padding:clamp(36px,6vw,82px); color:#fff; }
.cw-story-quote__copy blockquote { margin:18px 0 0; color:#fff; font-size:clamp(28px,4vw,50px); line-height:1.2; font-weight:600; }
.cw-story-quote__copy p { color:rgba(255,255,255,.66); line-height:1.8; }
.cw-story-quote img { width:100%; height:100%; min-height:520px; object-fit:cover; }
.cw-rabuild-industry { display:grid; grid-template-columns:minmax(360px,.9fr) minmax(0,1.1fr); border:1px solid var(--cw-line); background:#fff; }
.cw-rabuild-industry__media { min-height:580px; position:relative; overflow:hidden; }
.cw-rabuild-industry__media img { width:100%; height:100%; min-height:580px; object-fit:cover; }
.cw-rabuild-industry__media::after { content:"RABUILD"; position:absolute; left:28px; bottom:24px; color:#fff; font-size:12px; font-weight:650; letter-spacing:.18em; }
.cw-rabuild-industry__copy { padding:clamp(36px,5vw,72px); }
.cw-rabuild-industry__copy h2 { margin:14px 0 18px; color:var(--cw-deep); font-size:clamp(32px,4vw,50px); line-height:1.1; }
.cw-rabuild-industry__copy>p { color:var(--cw-muted); line-height:1.8; }
.cw-rabuild-point { display:grid; grid-template-columns:36px 1fr; gap:14px; padding:17px 0; border-top:1px solid var(--cw-line); }
.cw-rabuild-point:first-of-type { margin-top:26px; }
.cw-rabuild-point i { color:var(--cw-green); font-size:17px; }
.cw-rabuild-point h3 { margin:0; color:var(--cw-deep); font-size:15px; }
.cw-rabuild-point p { margin:5px 0 0; color:var(--cw-muted); font-size:12px; line-height:1.65; }
@media(max-width:900px){ .cw-story-steps{grid-template-columns:1fr 1fr}.cw-story-quote,.cw-rabuild-industry{grid-template-columns:1fr}.cw-rabuild-industry__media{min-height:380px}.cw-rabuild-industry__media img{min-height:380px}.cw-story-quote img{min-height:380px} }
@media(max-width:600px){ .cw-story-steps{grid-template-columns:1fr}.cw-story-step{min-height:auto}.cw-story-step h3{margin-top:36px} }

/* CYNAPSE OT and industry panoramic heroes */
.cw-about-hero,
.cw-industry-hero {
    position: relative;
    min-height: clamp(610px, 74vh, 820px);
    display: flex;
    align-items: center;
    isolation: isolate;
    overflow: hidden;
    background-color: var(--cw-deep);
    background-image: var(--cw-about-bg, var(--cw-industry-bg));
    background-size: cover;
    background-position: center;
}
/* CSP migration: former inline style="--cw-about-bg: url(...)" / "--cw-industry-bg: url(...)"
   attributes, converted to fixed classes (each page uses a fixed, deployment-static image). */
.cw-about-hero--ot-world { --cw-about-bg: url('/static/cynapse-about-ot-world-v3.png'); }
.cw-industry-hero--transport { --cw-industry-bg: url('/static/cynapse-industry-transport-v2.png'); }
.cw-industry-hero--ot-world { --cw-industry-bg: url('/static/cynapse-about-ot-world-v3.png'); }
.cw-head--flush { display: block; margin: 0; }
.cw-mt-20 { margin-top: 20px; }
.cw-mb-0 { margin-bottom: 0; }
.cw-mt-0 { margin-top: 0; }
.cw-fw-cta-full { margin-top: 12px; width: 100%; justify-content: center; }
.cw-community-notice { margin: 10px; }
.cw-post-thread-link { color: #155743; font-size: 12px; }
.cw-academy-progress-track { height: 6px; background: #e5ece2; margin-top: 18px; }
.cw-academy-progress-fill { display: block; height: 100%; background: #155743; }
.cw-lesson-action-row--top { margin-top: 18px; }
.cw-lesson-action-row--mid { margin-top: 12px; }
.cw-signin-btn { min-height: 40px; }
.cw-profile-btn { min-height: 38px; font-size: 12px; }
.cw-post-actions-row { display: flex; flex-wrap: wrap; gap: 8px; }
.cw-post-delete-btn { min-height: 38px; font-size: 12px; color: #a13c31; border-color: #a13c31; }

.cw-about-hero::before,
.cw-industry-hero::before {
    content: "";
    position: absolute;
    inset: 0;
    z-index: -1;
    background: linear-gradient(90deg, rgba(2, 24, 18, .94) 0%, rgba(2, 24, 18, .79) 34%, rgba(2, 24, 18, .24) 66%, rgba(2, 24, 18, .08) 100%);
}
.cw-about-hero::after,
.cw-industry-hero::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--cw-gold), rgba(23, 53, 43, 0));
}
.cw-about-hero__content,
.cw-industry-hero__content {
    width: 100%;
    padding-top: 90px;
    padding-bottom: 90px;
}
.cw-about-hero__content > *,
.cw-industry-hero__content > * { max-width: 690px; }
.cw-about-hero h1,
.cw-industry-hero h1 {
    margin: 18px 0 22px;
    color: #fff;
    font-size: clamp(44px, 5.7vw, 78px);
    line-height: 1.02;
    font-weight: 600;
}
.cw-about-hero p,
.cw-industry-hero p {
    color: rgba(255,255,255,.78);
    font-size: 17px;
    line-height: 1.8;
}
.cw-about-hero .cw-eyebrow,
.cw-industry-hero .cw-eyebrow { color: #f4b84d; }
.cw-btn--on-dark { color: #fff !important; border-color: rgba(255,255,255,.5) !important; }
.cw-btn--on-dark:hover { color: var(--cw-deep) !important; background: #fff !important; border-color: #fff !important; }
.cw-cynapse-industry {
    position: relative;
    overflow: hidden;
    border: 1px solid var(--cw-line);
    background: #fff;
}
.cw-cynapse-industry::before {
    content: "CYNAPSE";
    position: absolute;
    right: -20px;
    top: -26px;
    color: rgba(4, 49, 38, .035);
    font-size: clamp(90px, 13vw, 190px);
    line-height: 1;
    font-weight: 700;
    pointer-events: none;
}
.cw-cynapse-industry__copy {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    column-gap: 42px;
    padding: clamp(38px, 6vw, 82px);
}
.cw-cynapse-industry__copy > .cw-eyebrow,
.cw-cynapse-industry__copy > h2,
.cw-cynapse-industry__copy > p { grid-column: 1 / -1; }
.cw-cynapse-industry__copy h2 {
    max-width: 880px;
    margin: 14px 0 18px;
    color: var(--cw-deep);
    font-size: clamp(34px, 4.5vw, 58px);
    line-height: 1.08;
    font-weight: 600;
}
.cw-cynapse-industry__copy > p {
    max-width: 900px;
    margin: 0 0 30px;
    color: var(--cw-muted);
    font-size: 15px;
    line-height: 1.8;
}
.cw-cynapse-point {
    display: grid;
    grid-template-columns: 40px 1fr;
    gap: 14px;
    padding: 22px 0;
    border-top: 1px solid var(--cw-line);
}
.cw-cynapse-point i { color: var(--cw-gold); font-size: 18px; padding-top: 2px; }
.cw-cynapse-point h3 { margin: 0; color: var(--cw-deep); font-size: 16px; font-weight: 600; }
.cw-cynapse-point p { margin: 7px 0 0; color: var(--cw-muted); font-size: 13px; line-height: 1.7; }
@media (max-width: 900px) {
    .cw-about-hero,
    .cw-industry-hero { min-height: 650px; background-position: 58% center; }
    .cw-about-hero::before,
    .cw-industry-hero::before { background: linear-gradient(90deg, rgba(2,24,18,.95), rgba(2,24,18,.72) 70%, rgba(2,24,18,.36)); }
    .cw-cynapse-industry__copy { grid-template-columns: 1fr; }
    .cw-cynapse-industry__copy > * { grid-column: 1 !important; }
}
@media (max-width: 600px) {
    .cw-about-hero,
    .cw-industry-hero { min-height: 620px; align-items: flex-end; }
    .cw-about-hero__content,
    .cw-industry-hero__content { padding-top: 76px; padding-bottom: 58px; }
    .cw-about-hero h1,
    .cw-industry-hero h1 { font-size: 42px; }
    .cw-about-hero p,
    .cw-industry-hero p { font-size: 15px; }
    .cw-cynapse-industry__copy { padding: 34px 24px; }
}

/* No-italic override (2026-07-24): see cynapse_ui_governance.css for full
   rationale. Forced off here too in case this page loads without the
   shared governance stylesheet. */
html, body, *, *::before, *::after { font-style: normal !important; }

