:root {
    --coral: #ff5757;
    --red: #9e2828;
    --ink: #1c1c1c;
    --graphite: #454545;
    --paper: #f2f0ea;
    --white: #ffffff;
    --line: rgba(28, 28, 28, .18);
    --line-dark: rgba(255, 255, 255, .16);
    --muted: #6c6964;
    --mono: "Space Mono", ui-monospace, monospace;
    --sans: "Poppins", Arial, sans-serif;
    --display: "Anton", Impact, sans-serif;
    --shell: min(1380px, calc(100vw - 64px));
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: var(--sans);
    font-size: 16px;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}
img, video { max-width: 100%; }
a { color: inherit; text-underline-offset: 4px; }
a:hover { color: var(--coral); }
button, input, textarea, select { font: inherit; }
::selection { color: var(--ink); background: var(--coral); }

.shell { width: var(--shell); margin-inline: auto; }
.skip-link {
    position: fixed; top: 8px; left: 8px; z-index: 9999; padding: 10px 16px;
    color: var(--ink); background: var(--white); transform: translateY(-150%);
}
.skip-link:focus { transform: none; }

.site-header {
    position: sticky; top: 0; z-index: 1000;
    background: rgba(28, 28, 28, .97); border-bottom: 1px solid var(--line-dark);
}
.site-header .navbar { min-height: 82px; padding: 0; }
.brand { display: flex; align-items: center; width: 240px; height: 62px; overflow: hidden; }
.brand img { width: 230px; height: 52px; object-fit: contain; object-position: left center; }
.site-header .nav-link, .nav-button {
    color: #ddd !important; font-family: var(--mono); font-size: .76rem; letter-spacing: .06em;
    text-transform: uppercase; padding: 29px 15px !important; text-decoration: none;
}
.site-header .nav-link:hover, .site-header .nav-link:focus { color: var(--coral) !important; }
.nav-button { border: 0; background: transparent; }
.nav-cta {
    display: inline-block; margin-left: 12px; padding: 11px 16px; color: var(--ink);
    background: var(--coral); font-family: var(--mono); font-size: .72rem; font-weight: 700;
    letter-spacing: .05em; text-decoration: none; text-transform: uppercase;
}
.nav-cta:hover { color: var(--white); background: var(--red); }
.dropdown-menu {
    padding: 8px; border: 1px solid var(--line-dark); border-radius: 0; background: var(--ink);
}
.dropdown-header { padding: 8px 16px; color: var(--coral); border-bottom: 1px solid var(--line-dark); font-family: var(--mono); font-size: .62rem; letter-spacing: .06em; text-transform: uppercase; }
.dropdown-item { color: #ddd; font-family: var(--mono); font-size: .76rem; text-transform: uppercase; }
.dropdown-item:hover, .dropdown-item:focus { color: var(--ink); background: var(--coral); }
.navbar-toggler { width: 44px; padding: 8px; border: 1px solid var(--line-dark); border-radius: 0; }
.navbar-toggler span { display: block; height: 1px; margin: 5px 0; background: var(--coral); }

.section { padding: 112px 0; }
.section-dark, .section-ink { color: var(--white); background: var(--ink); }
.section-light { background: var(--paper); }
.hero { position: relative; overflow: hidden; padding: 104px 0 80px; }
.hero::before {
    content: ""; position: absolute; inset: 0; pointer-events: none; opacity: .15;
    background-image: linear-gradient(rgba(255,255,255,.16) 1px, transparent 1px), linear-gradient(90deg, rgba(255,255,255,.16) 1px, transparent 1px);
    background-size: 64px 64px;
    mask-image: linear-gradient(to right, black, transparent 70%);
}
.hero-grid { position: relative; display: grid; grid-template-columns: minmax(0, .85fr) minmax(520px, 1.15fr); gap: 76px; align-items: center; }
.eyebrow {
    display: flex; align-items: center; gap: 14px; margin-bottom: 28px;
    font-family: var(--mono); font-size: .72rem; letter-spacing: .1em; text-transform: uppercase;
}
.eyebrow span { color: var(--coral); }
.section-light .eyebrow span { color: #a62831; }
.hero h1, .section-heading h2, .evidence-copy h2, .closing-cta h2 {
    margin: 0; font-family: var(--display); font-weight: 400; letter-spacing: .015em;
    line-height: .98; text-transform: uppercase;
}
.hero h1 { max-width: 760px; font-size: clamp(4rem, 6.5vw, 7.6rem); }
.hero h1 em { color: var(--coral); font-style: normal; }
.hero-lede { max-width: 650px; margin: 32px 0 0; color: #ccc; font-size: clamp(1.05rem, 1.4vw, 1.32rem); }
.button-row { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 36px; }
.button, .allBtn, .cyber-button {
    display: inline-flex; align-items: center; justify-content: center; gap: 22px;
    min-height: 51px; padding: 13px 20px; border: 1px solid transparent; border-radius: 0;
    font-family: var(--mono); font-size: .75rem; font-weight: 700; letter-spacing: .04em;
    text-decoration: none; text-transform: uppercase; transition: background .18s ease, color .18s ease, border-color .18s ease;
}
.button-primary, .allBtn, .cyber-button { color: var(--ink); background: var(--coral); }
.button-primary:hover, .allBtn:hover, .cyber-button:hover { color: var(--white); background: var(--red); }
.button-quiet { color: var(--white); border-color: var(--line-dark); }
.button-quiet:hover { color: var(--coral); border-color: var(--coral); }
.button-light { color: var(--ink); background: var(--white); }
.button-light:hover { color: var(--white); background: var(--ink); }
.hero-facts { display: grid; grid-template-columns: repeat(3, 1fr); margin: 48px 0 0; border-top: 1px solid var(--line-dark); }
.hero-facts div { padding: 18px 16px 0 0; }
.hero-facts dt { color: var(--coral); font-family: var(--mono); font-size: .68rem; }
.hero-facts dd { margin: 4px 0 0; color: #aaa; font-size: .76rem; line-height: 1.4; }
.operation-window { position: relative; border: 1px solid rgba(255,87,87,.6); background: #111; box-shadow: 28px 28px 0 rgba(158,40,40,.28); }
.window-bar, .window-rail {
    display: flex; align-items: center; justify-content: space-between; min-height: 44px; padding: 0 16px;
    font-family: var(--mono); font-size: .64rem; letter-spacing: .06em;
}
.window-bar { border-bottom: 1px solid var(--line-dark); }
.window-rail { gap: 15px; border-top: 1px solid var(--line-dark); color: #999; }
.window-rail b { margin-left: 5px; color: var(--white); }
.operation-window video { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; }
.live-state { color: var(--coral); }
.live-state i, .system-state i { display: inline-block; width: 6px; height: 6px; margin-right: 7px; background: var(--coral); border-radius: 50%; }

.signal-strip { color: var(--white); background: var(--red); }
.signal-grid { display: grid; grid-template-columns: repeat(3, 1fr); }
.signal-grid span { padding: 20px 24px; border-right: 1px solid rgba(255,255,255,.2); font-size: .78rem; }
.signal-grid span:first-child { border-left: 1px solid rgba(255,255,255,.2); }
.signal-grid b { display: block; font-family: var(--mono); font-size: .7rem; letter-spacing: .07em; text-transform: uppercase; }

.split-heading { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.section-heading h2, .evidence-copy h2, .closing-cta h2 { font-size: clamp(3rem, 5vw, 5.5rem); }
.section-heading > p { max-width: 560px; margin: 0 0 8px; color: var(--muted); }
.section-ink .section-heading > p { color: #aaa; }
.workflow-grid { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 72px 0 0; border-top: 1px solid var(--line); list-style: none; }
.workflow-grid li { min-height: 270px; padding: 26px 28px 28px 0; border-right: 1px solid var(--line); }
.workflow-grid li + li { padding-left: 28px; }
.workflow-grid > li > span, .indexed-list span { color: var(--red); font-family: var(--mono); font-size: .72rem; }
.workflow-grid h3 { margin: 58px 0 10px; font-family: var(--mono); font-size: 1rem; text-transform: uppercase; }
.workflow-grid p { margin: 0; color: var(--muted); font-size: .9rem; }

.product-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 1px; margin-top: 72px; background: var(--line-dark); border: 1px solid var(--line-dark); }
.product-card { display: flex; min-height: 480px; padding: 34px; flex-direction: column; background: var(--ink); }
.product-card { grid-column: span 2; }
.product-card:nth-last-child(-n + 2) { grid-column: span 3; }
.product-card:hover { background: #232323; }
.product-code { color: var(--coral); font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; }
.product-card img { width: 100%; height: 190px; margin: 38px 0 22px; object-fit: contain; }
.product-card p { color: #aaa; font-size: .9rem; }
.product-card a { margin-top: auto; padding-top: 24px; border-top: 1px solid var(--line-dark); font-family: var(--mono); font-size: .73rem; text-decoration: none; text-transform: uppercase; }
.product-card a span { float: right; color: var(--coral); }

.component-hero { padding: 92px 0 84px; color: var(--white); background: var(--ink); border-bottom: 1px solid var(--line-dark); }
.component-hero-grid { display: grid; grid-template-columns: minmax(0, .88fr) minmax(480px, 1.12fr); gap: 74px; align-items: center; }
.component-wordmark { display: block; width: min(360px, 80%); height: 210px; margin: 22px 0 8px; object-fit: contain; object-position: left center; }
.component-hero h1 { max-width: 700px; margin: 0; font-size: clamp(3.2rem, 5.2vw, 6.2rem); line-height: .98; }
.component-hero-copy > p { max-width: 660px; margin: 28px 0 0; color: #b9b9b9; font-size: 1rem; }
.component-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.component-actions .button-quiet { background: transparent; }
.component-facts { display: grid; grid-template-columns: repeat(3, 1fr); padding: 0; margin: 42px 0 0; border-top: 1px solid var(--line-dark); list-style: none; }
.component-facts li { padding: 17px 14px 0 0; color: #aaa; font-family: var(--mono); font-size: .66rem; line-height: 1.45; text-transform: uppercase; }
.component-facts li + li { padding-left: 14px; border-left: 1px solid var(--line-dark); }
.component-facts span { display: block; margin-bottom: 5px; color: var(--coral); }
.component-hero-visual { margin: 0; padding: 12px; background: #111; border: 1px solid #4a4a4a; box-shadow: 16px 16px 0 rgba(158, 40, 40, .22); }
.component-hero-visual img { display: block; width: 100%; aspect-ratio: 16 / 10; object-fit: cover; object-position: top left; }
.component-hero-visual figcaption { display: flex; justify-content: space-between; padding: 11px 2px 0; color: #8e8e8e; font-family: var(--mono); font-size: .61rem; letter-spacing: .04em; }

.component-capabilities { background: var(--paper); }
.component-capability-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1px; margin-top: 70px; background: var(--line); border: 1px solid var(--line); }
.component-capability-grid article { min-height: 255px; padding: 32px; background: var(--white); }
.component-capability-grid article > span { color: var(--red); font-family: var(--mono); font-size: .66rem; letter-spacing: .05em; }
.component-capability-grid h3 { margin: 66px 0 12px; font-family: var(--mono); font-size: 1rem; text-transform: uppercase; }
.component-capability-grid p { margin: 0; color: var(--muted); font-size: .88rem; }

.component-gallery-section .section-heading > p { color: #aaa; }
.component-gallery { display: grid; grid-template-columns: minmax(0, 1.45fr) minmax(300px, .55fr); grid-template-rows: repeat(2, minmax(0, 1fr)); gap: 18px; margin-top: 64px; }
.component-gallery figure { position: relative; min-width: 0; margin: 0; padding: 10px; background: #111; border: 1px solid #454545; }
.component-gallery-primary { grid-row: 1 / span 2; }
.component-gallery img { display: block; width: 100%; height: 100%; min-height: 230px; object-fit: cover; object-position: top left; }
.component-gallery-primary img { min-height: 540px; }
.component-gallery figcaption { position: absolute; right: 10px; bottom: 10px; padding: 7px 10px; color: var(--white); background: rgba(20, 20, 20, .9); font-family: var(--mono); font-size: .62rem; text-transform: uppercase; }

.component-flow-section { background: var(--white); }
.component-flow { display: grid; grid-template-columns: repeat(4, 1fr); padding: 0; margin: 58px 0 0; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); list-style: none; }
.component-flow li { min-height: 250px; padding: 24px 26px 30px 0; }
.component-flow li + li { padding-left: 26px; border-left: 1px solid var(--line); }
.component-flow span { color: var(--red); font-family: var(--mono); font-size: .7rem; }
.component-flow h3 { margin: 64px 0 10px; font-family: var(--mono); font-size: .95rem; text-transform: uppercase; }
.component-flow p { margin: 0; color: var(--muted); font-size: .86rem; }
.component-cta { color: var(--white); background: var(--coral); }
.component-cta p { margin-bottom: 28px; }

.evidence-grid { display: grid; grid-template-columns: 1.18fr .82fr; gap: 90px; align-items: center; }
.evidence-visual { position: relative; padding: 14px; border: 1px solid var(--line); background: var(--white); }
.evidence-visual img { display: block; width: 100%; min-height: 480px; object-fit: cover; object-position: left top; filter: saturate(.7) contrast(1.05); }
.evidence-stamp { position: absolute; right: -18px; bottom: 34px; padding: 10px 15px; color: var(--white); background: var(--red); font-family: var(--mono); font-size: .68rem; }
.evidence-copy > p { max-width: 580px; margin: 30px 0; color: var(--muted); }
.indexed-list { padding: 0; margin: 34px 0; border-top: 1px solid var(--line); list-style: none; }
.indexed-list li { display: grid; grid-template-columns: 48px 1fr; padding: 13px 0; border-bottom: 1px solid var(--line); font-family: var(--mono); font-size: .76rem; text-transform: uppercase; }
.text-link { color: var(--red); font-family: var(--mono); font-size: .74rem; font-weight: 700; text-decoration: none; text-transform: uppercase; }

.closing-cta { color: var(--ink); background: var(--coral); }
.closing-grid { display: grid; grid-template-columns: 1.2fr .8fr; gap: 80px; align-items: end; }
.closing-cta .eyebrow span { color: var(--ink); }
.closing-grid p { max-width: 460px; margin: 0 0 24px; }

/* Contact */
.contact-hero {
    position: relative;
    overflow: hidden;
    padding: 96px 0 82px;
    color: var(--white);
    background: var(--ink);
    border-bottom: 8px solid var(--coral);
}
.contact-hero::after {
    content: "";
    position: absolute;
    right: -120px;
    bottom: -220px;
    width: 620px;
    height: 440px;
    opacity: .2;
    border: 1px solid var(--coral);
    transform: rotate(-12deg);
    box-shadow: -42px -42px 0 transparent, -42px -42px 0 1px var(--coral), -84px -84px 0 transparent, -84px -84px 0 1px var(--coral);
}
.contact-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.25fr .75fr;
    gap: 100px;
    align-items: end;
}
.contact-hero h1 {
    max-width: 900px;
    margin: 0;
    font-family: var(--display);
    font-size: clamp(4rem, 7vw, 7.25rem);
    font-weight: 400;
    letter-spacing: .01em;
    line-height: .96;
    text-transform: uppercase;
}
.contact-hero-note {
    padding: 24px 0 4px 28px;
    border-left: 1px solid var(--line-dark);
}
.contact-note-label,
.contact-brief-header > span,
.contact-panel-heading > span {
    color: var(--coral);
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .09em;
    text-transform: uppercase;
}
.contact-hero-note p {
    max-width: 480px;
    margin: 14px 0 26px;
    color: #c8c8c8;
    font-size: .95rem;
}
.contact-status {
    font-family: var(--mono);
    font-size: .68rem;
    letter-spacing: .05em;
    text-transform: uppercase;
}
.contact-status i {
    display: inline-block;
    width: 7px;
    height: 7px;
    margin-right: 8px;
    border-radius: 50%;
    background: #25ac87;
}
.contact-page { padding: 100px 0 120px; background: var(--paper); }
.contact-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.45fr) minmax(330px, .55fr);
    gap: 28px;
    align-items: start;
}
.contact-form-panel {
    padding: clamp(28px, 5vw, 66px);
    border: 1px solid var(--line);
    background: var(--white);
}
.contact-panel-heading { max-width: 680px; margin-bottom: 48px; }
.contact-panel-heading h2,
.contact-brief-header h2 {
    margin: 10px 0 14px;
    font-family: var(--display);
    font-weight: 400;
    line-height: 1.05;
    text-transform: uppercase;
}
.contact-panel-heading h2 { font-size: clamp(2.5rem, 4vw, 4.2rem); }
.contact-panel-heading p { margin: 0; color: var(--muted); }
.contact-fields-row { display: grid; grid-template-columns: 1fr 1fr; gap: 22px; }
.contact-field { margin-bottom: 24px; }
.contact-field label {
    display: block;
    margin-bottom: 8px;
    color: var(--ink);
    font-family: var(--mono);
    font-size: .7rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
}
.contact-field input,
.contact-field textarea {
    display: block;
    width: 100%;
    border: 1px solid #aaa;
    border-radius: 0;
    color: var(--ink);
    background: #faf9f6;
}
.contact-field input { min-height: 54px; padding: 0 16px; }
.contact-field textarea { min-height: 210px; padding: 15px 16px; resize: vertical; }
.contact-field input::placeholder,
.contact-field textarea::placeholder { color: #7d7973; opacity: 1; }
.contact-field input:focus,
.contact-field textarea:focus {
    outline: 0;
    border-color: var(--coral);
    box-shadow: 0 0 0 3px rgba(255, 87, 87, .17);
}
.contact-captcha { margin: 4px 0 26px; }
.contact-submit-row {
    display: flex;
    gap: 24px;
    align-items: center;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}
.contact-submit-row p { max-width: 310px; margin: 0; color: var(--muted); font-size: .75rem; }
.contact-alert {
    margin-bottom: 28px;
    padding: 15px 18px;
    border: 1px solid;
    font-size: .84rem;
}
.contact-alert > span { display: block; margin-bottom: 3px; font-family: var(--mono); font-size: .65rem; font-weight: 700; letter-spacing: .06em; }
.contact-alert-success { border-color: #25ac87; background: rgba(37, 172, 135, .08); }
.contact-alert-error { border-color: var(--coral); background: rgba(255, 87, 87, .07); }
.contact-alert-error:empty { display: none; }
.contact-brief {
    position: sticky;
    top: 110px;
    padding: 42px 36px;
    color: var(--white);
    background: var(--ink);
    border-top: 6px solid var(--coral);
}
.contact-brief-header h2 { max-width: 320px; font-size: 2.6rem; }
.contact-route-list { margin-top: 34px; border-top: 1px solid var(--line-dark); }
.contact-route-list > div { padding: 22px 0; border-bottom: 1px solid var(--line-dark); }
.contact-route-list span { color: var(--coral); font-family: var(--mono); font-size: .66rem; }
.contact-route-list h3 { margin: 8px 0 6px; font-family: var(--mono); font-size: .78rem; letter-spacing: .04em; text-transform: uppercase; }
.contact-route-list p { margin: 0; color: #aaa; font-size: .78rem; line-height: 1.6; }
.contact-meta { margin: 34px 0 0; }
.contact-meta div { display: flex; justify-content: space-between; gap: 16px; padding: 8px 0; }
.contact-meta dt { color: #999; font-family: var(--mono); font-size: .63rem; font-weight: 400; text-transform: uppercase; }
.contact-meta dd { margin: 0; font-family: var(--mono); font-size: .63rem; text-align: right; }

/* Existing MVC page compatibility */
#hero_section { padding: 90px 0; color: var(--white); background: var(--ink); }
#hero_section h1, #hero_section h2, #hero_section .display-4 { font-family: var(--display); font-size: clamp(3rem, 5vw, 5.5rem); font-weight: 400; line-height: 1; text-transform: uppercase; }
#hero_section h4 { color: var(--coral); font-family: var(--mono); font-size: .74rem; text-transform: uppercase; }
#hero_section video, #hero_section img { border: 1px solid var(--line-dark); }
#aboutUs_section, #F_Features, #downloadP, #contactUs, .contact-section { padding: 90px 0; }
.bg-light-blck, .bg-dark { color: var(--white) !important; background: var(--ink) !important; }
.news-card-media { position: relative; height: 200px; overflow: hidden; background: #141414; }
.news-card-media img { display: block; width: 100%; height: 100%; object-fit: cover; }
.news-card-media::after {
    position: absolute;
    inset: 0;
    content: "";
    pointer-events: none;
    background: linear-gradient(180deg, transparent 68%, rgba(20, 20, 20, .28));
}
.news-article-page { padding-top: 24px; padding-bottom: 48px; }
.news-article { color: var(--ink); }
.news-article-header { border-bottom: 1px solid var(--line); }
.news-article-title {
    max-width: 920px;
    color: var(--ink);
    font-family: var(--display);
    font-size: clamp(2.5rem, 5vw, 4.8rem);
    font-weight: 400 !important;
    line-height: 1.04;
    letter-spacing: -.025em;
}
.news-article-figure { margin-inline: 0; }
.news-article-figure > img {
    display: block;
    border-color: var(--coral) !important;
    border-radius: 0 !important;
    box-shadow: 10px 10px 0 rgba(158, 40, 40, .12);
}
.news-article-caption,
.news-article-id { color: #666; font-family: var(--mono); letter-spacing: .025em; }
.news-article-prose {
    color: #343434;
    font-size: 1.05rem;
    line-height: 1.85;
}
.news-article-prose :where(p, ul, ol, li, blockquote) { color: inherit !important; }
.news-article-prose p { margin-bottom: 1.25em; }
.news-article-prose :where(h2, h3, h4) {
    margin-top: 1.7em;
    margin-bottom: .65em;
    color: var(--ink) !important;
    line-height: 1.2;
}
.news-article-prose a { color: var(--red) !important; font-weight: 600; }
.news-article-prose blockquote {
    padding: 18px 24px;
    border-left: 3px solid var(--coral);
    background: rgba(255, 87, 87, .06);
}
.news-article-prose :where(code, pre) { font-family: var(--mono); }
.news-article-prose code { padding: 2px 5px; color: var(--red); background: #e8e5de; }
.news-article-prose pre { overflow-x: auto; padding: 20px; color: #efefef; background: var(--ink); }
.news-article-section-title { color: var(--ink); font-family: var(--display); font-weight: 400; }
.news-article-footer { color: var(--ink); }
.allSectionHeading h2, .F_title { font-family: var(--display); font-weight: 400; text-transform: uppercase; }
.allSectionHeading h4, .F_subtitle { color: var(--coral); font-family: var(--mono); }
.F_block { height: calc(100% - 24px); margin: 12px 0; padding: 30px; border: 1px solid var(--line); background: var(--white); }
.F_detail ul, #ABS_List_Container ul { padding-left: 20px; }
.F_detail li { margin-bottom: 10px; }
.text-info, .text-cyan { color: var(--coral) !important; }
.border-info { border-color: rgba(255,87,87,.55) !important; }
.bg-info { background-color: var(--coral) !important; }
.btn { border-radius: 0; font-family: var(--mono); font-size: .75rem; text-transform: uppercase; }
.btn-info, .btn-primary { color: var(--ink); border-color: var(--coral); background: var(--coral); }
.btn-outline-info { color: var(--coral); border-color: var(--coral); }
.btn-outline-info:hover { color: var(--white); border-color: var(--red); background: var(--red); }
.card { border-radius: 0; }
.card.bg-dark { background: #232323 !important; }
.pagination .page-link { border-radius: 0 !important; }

.account-page { min-height: calc(100vh - 82px); color: var(--ink); background: #f6f5f1; }
.account-header { padding: 58px 0; background: var(--white); border-bottom: 1px solid var(--line); }
.account-header-inner { display: flex; justify-content: space-between; gap: 48px; align-items: flex-end; }
.account-header h1 { margin: 12px 0 8px; font-family: var(--sans); font-size: clamp(2.2rem, 4vw, 3.8rem); font-weight: 600; line-height: 1.1; letter-spacing: -.035em; }
.account-header p { max-width: 660px; margin: 0; color: var(--muted); }
.account-header-actions { display: flex; flex: 0 0 auto; align-items: stretch; gap: 12px; }
.account-docs-link { display: inline-flex; min-width: 108px; padding: 14px 18px; color: var(--ink); background: var(--white); border: 1px solid var(--line); font-size: .78rem; font-weight: 700; letter-spacing: .04em; text-decoration: none; text-transform: uppercase; align-items: center; justify-content: center; gap: 10px; transition: color .2s ease, border-color .2s ease, background .2s ease; }
.account-docs-link:hover, .account-docs-link:focus-visible { color: var(--white); background: var(--ink); border-color: var(--ink); }
.account-identity { display: flex; min-width: 320px; padding: 14px 18px; background: #f8f7f3; border: 1px solid var(--line); box-shadow: inset 3px 0 0 var(--coral); align-items: center; gap: 14px; }
.account-avatar { display: grid; width: 44px; height: 44px; flex: 0 0 44px; color: var(--red); background: rgba(255, 87, 87, .1); border: 1px solid rgba(158, 40, 40, .22); border-radius: 50%; font-size: 1rem; font-weight: 700; place-items: center; }
.account-identity div { min-width: 0; }
.account-identity div > strong, .account-identity div > span { display: block; }
.account-identity strong { font-size: .92rem; }
.account-identity div > span { overflow: hidden; color: var(--muted); font-size: .78rem; text-overflow: ellipsis; white-space: nowrap; }
.account-content { padding-top: 48px; padding-bottom: 72px; }
.account-overview-grid { display: grid; grid-template-columns: minmax(0, .9fr) minmax(0, 1.1fr); gap: 24px; }
.account-panel { padding: 32px; background: var(--white); border: 1px solid var(--line); box-shadow: 0 12px 30px rgba(28, 28, 28, .045); }
.account-panel-heading { display: flex; justify-content: space-between; gap: 28px; align-items: flex-start; margin-bottom: 30px; }
.account-panel-heading h2 { margin: 2px 0 0; font-family: var(--sans); font-size: 1.42rem; font-weight: 600; letter-spacing: -.02em; }
.account-panel-heading > p { max-width: 380px; margin: 4px 0 0; color: var(--muted); font-size: .8rem; text-align: right; }
.account-kicker { display: block; color: var(--red); font-family: var(--mono); font-size: .63rem; font-weight: 700; letter-spacing: .08em; text-transform: uppercase; }
.account-status { display: inline-flex; align-items: center; gap: 7px; padding: 6px 10px; color: #555; background: #efeee9; border-radius: 999px; font-size: .7rem; font-weight: 600; white-space: nowrap; }
.account-status::before { width: 7px; height: 7px; content: ""; background: #777; border-radius: 50%; }
.account-status.is-active { color: #176a52; background: #e7f5ef; }
.account-status.is-active::before { background: #25ac87; }
.account-status.is-warning { color: #875b0a; background: #fff2d8; }
.account-status.is-warning::before { background: #d89518; }
.account-status.is-inactive { color: #8d2929; background: #fdeaea; }
.account-status.is-inactive::before { background: #c84141; }
.account-detail-list { margin: 0; }
.account-detail-list > div { display: grid; grid-template-columns: 132px minmax(0, 1fr); gap: 20px; padding: 14px 0; border-bottom: 1px solid rgba(28, 28, 28, .1); }
.account-detail-list > div:last-child { border-bottom: 0; }
.account-detail-list dt { color: var(--muted); font-size: .75rem; font-weight: 500; }
.account-detail-list dd { overflow-wrap: anywhere; margin: 0; font-size: .86rem; font-weight: 500; text-align: right; }
.account-license-panel { border-top: 3px solid var(--coral); }
.license-name { margin: 4px 0 26px; font-size: clamp(1.35rem, 2.3vw, 2rem); font-weight: 600; letter-spacing: -.025em; }
.license-metrics { display: grid; grid-template-columns: repeat(2, 1fr); margin-bottom: 28px; border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.license-metrics > div { padding: 17px 0; }
.license-metrics > div + div { padding-left: 24px; border-left: 1px solid var(--line); }
.license-metrics span, .license-metrics strong { display: block; }
.license-metrics span { margin-bottom: 4px; color: var(--muted); font-size: .7rem; }
.license-metrics strong { font-size: .9rem; }
.account-license-download { width: 100%; }
.account-license-empty { padding: 18px 0 4px; }
.account-license-empty h3, .account-history-empty h3 { margin-bottom: 6px; font-size: 1.05rem; }
.account-license-empty p, .account-history-empty p { color: var(--muted); font-size: .85rem; }
.account-downloads-panel, .account-history-panel { margin-top: 24px; }
.account-download-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.account-download-card { display: grid; min-height: 180px; padding: 24px; color: var(--ink); background: #f6f5f1; border: 1px solid transparent; text-decoration: none; transition: border-color .18s ease, background .18s ease, transform .18s ease; }
.account-download-card:hover { color: var(--ink); background: var(--white); border-color: var(--coral); transform: translateY(-2px); }
.download-platform { color: var(--red); font-family: var(--mono); font-size: .63rem; font-weight: 700; letter-spacing: .07em; text-transform: uppercase; }
.account-download-card strong { align-self: end; font-size: 1.05rem; }
.download-format { color: var(--muted); font-size: .75rem; }
.download-action { display: flex; justify-content: space-between; margin-top: 16px; padding-top: 12px; border-top: 1px solid var(--line); font-family: var(--mono); font-size: .68rem; font-weight: 700; text-transform: uppercase; }
.download-action b { color: var(--coral); }
.account-table-wrap { overflow-x: auto; }
.account-table { width: 100%; border-collapse: collapse; }
.account-table th { padding: 11px 14px; color: var(--muted); background: #f4f3ef; font-family: var(--mono); font-size: .62rem; font-weight: 700; letter-spacing: .05em; text-align: left; text-transform: uppercase; }
.account-table td { padding: 17px 14px; border-bottom: 1px solid rgba(28, 28, 28, .1); font-size: .82rem; }
.account-table tbody tr:last-child td { border-bottom: 0; }
.account-table .amount-column { text-align: right; }
.payment-status { display: inline-flex; padding: 4px 9px; color: #555; background: #efeee9; border-radius: 999px; font-size: .68rem; font-weight: 600; text-transform: capitalize; }
.payment-status.is-paid { color: #176a52; background: #e7f5ef; }
.account-record-count { color: var(--muted); font-size: .72rem; }
.account-history-empty, .account-empty-state { padding: 46px 20px; text-align: center; }
.account-actions { display: flex; justify-content: space-between; gap: 32px; align-items: center; margin-top: 32px; padding: 27px 0 0; border-top: 1px solid var(--line); }
.account-actions > div:first-child strong, .account-actions > div:first-child span { display: block; }
.account-actions > div:first-child strong { font-size: .86rem; }
.account-actions > div:first-child span { color: var(--muted); font-size: .75rem; }
.account-action-buttons { display: flex; align-items: center; gap: 10px; }
.account-action-buttons form { margin: 0; }
.account-support-button { color: var(--ink); background: var(--white); border-color: var(--line); }
.account-support-button:hover { color: var(--red); border-color: var(--coral); }
.account-signout-button { color: var(--white); background: var(--ink); border-color: var(--ink); }
.account-signout-button:hover { color: var(--white); background: var(--red); border-color: var(--red); }
.account-alert { display: flex; gap: 18px; margin-bottom: 20px; padding: 15px 18px; border: 1px solid; font-size: .78rem; }
.account-alert strong { flex: 0 0 auto; }
.account-alert-success { color: #176a52; background: #edf8f4; border-color: #8bcab6; }
.account-alert-error { color: #8d2929; background: #fff0f0; border-color: #e0a1a1; }
.account-loading { display: flex; max-width: 620px; margin: 60px auto; align-items: center; gap: 20px; }
.account-loading h2, .account-loading p { margin: 0; }
.account-loading p { color: var(--muted); font-size: .8rem; }
.account-spinner { width: 28px; height: 28px; flex: 0 0 28px; border: 2px solid #ddd; border-top-color: var(--coral); border-radius: 50%; animation: account-spin .8s linear infinite; }
.account-empty-icon { display: grid; width: 46px; height: 46px; margin: 0 auto 18px; color: var(--white); background: var(--coral); border-radius: 50%; font-weight: 700; place-items: center; }
@keyframes account-spin { to { transform: rotate(360deg); } }

.cyber-background { min-height: calc(100vh - 82px); padding: 80px 20px; background: var(--paper); }
.cyber-background > .d-flex { min-height: calc(100vh - 242px); height: auto !important; }
.cyber-card { border: 1px solid var(--line); border-top: 5px solid var(--coral); border-radius: 0; color: var(--ink); background: var(--white); box-shadow: 14px 14px 0 rgba(158,40,40,.12); }
.cyber-title h1, .cyber-title h2 { margin: 0 0 8px; font-family: var(--display); font-weight: 400; letter-spacing: .02em; text-transform: uppercase; }
.cyber-subtitle, .cyber-footer-text { color: var(--muted); font-family: var(--mono); font-size: .72rem; }
.cyber-form-field { margin-top: 22px; }
.form-label, .cyber-form-field label { color: var(--ink); font-family: var(--mono); font-size: .7rem; font-weight: 700; text-transform: uppercase; }
.form-control, .form-select {
    min-height: 48px; border: 1px solid #bbb; border-radius: 0; color: var(--ink); background: var(--white);
}
.form-control:focus, .form-select:focus { border-color: var(--coral); box-shadow: 0 0 0 3px rgba(255,87,87,.18); }
.cyber-button { width: 100%; margin-top: 24px; border: 0; }
.cyber-link { color: var(--red); font-family: var(--mono); font-size: .72rem; }
.text-danger { color: var(--red) !important; font-size: .78rem; }

.site-footer { padding-top: 70px; color: #aaa; background: #141414; border-top: 1px solid var(--line-dark); }
.footer-grid { display: grid; grid-template-columns: 2fr repeat(3, 1fr); gap: 60px; }
.footer-logo { width: 240px; height: 70px; object-fit: contain; object-position: left center; }
.footer-grid p { max-width: 430px; font-size: .84rem; }
.footer-grid > div { display: flex; flex-direction: column; align-items: flex-start; }
.footer-grid a { margin: 5px 0; font-size: .8rem; text-decoration: none; }
.footer-label { margin-bottom: 14px; color: var(--coral); font-family: var(--mono); font-size: .68rem; letter-spacing: .08em; text-transform: uppercase; }
.footer-bottom { display: flex; justify-content: space-between; margin-top: 58px; padding: 20px 0; border-top: 1px solid var(--line-dark); font-family: var(--mono); font-size: .65rem; }
.system-state i { background: #25ac87; }

:focus-visible { outline: 3px solid var(--coral); outline-offset: 3px; }
@media (prefers-reduced-motion: reduce) { html { scroll-behavior: auto; } *, *::before, *::after { transition: none !important; animation: none !important; } }

@media (max-width: 1100px) {
    :root { --shell: min(100% - 40px, 960px); }
    .hero-grid, .evidence-grid { grid-template-columns: 1fr; }
    .component-hero-grid { grid-template-columns: 1fr; }
    .component-hero-visual { max-width: 880px; }
    .component-capability-grid { grid-template-columns: repeat(2, 1fr); }
    .hero-grid { gap: 54px; }
    .operation-window { max-width: 820px; }
    .split-heading, .closing-grid { gap: 40px; }
    .product-grid { grid-template-columns: repeat(2, 1fr); }
    .product-card, .product-card:nth-last-child(-n + 2) { grid-column: span 1; min-height: 430px; padding: 24px; }
    .product-card:last-child { grid-column: 1 / -1; }
    .contact-hero-grid { gap: 50px; }
    .contact-layout { grid-template-columns: minmax(0, 1.25fr) minmax(300px, .75fr); }
}

@media (max-width: 991px) {
    .site-header .navbar { min-height: 72px; }
    .brand { height: 55px; }
    .site-header .navbar-collapse { padding: 12px 0 22px; border-top: 1px solid var(--line-dark); }
    .site-header .nav-link, .nav-button { padding: 10px 0 !important; }
    .nav-cta { margin: 8px 0 0; }
    .dropdown-menu { border: 0; }
    .workflow-grid { grid-template-columns: repeat(2, 1fr); }
    .component-gallery { grid-template-columns: 1fr; grid-template-rows: auto; }
    .component-gallery-primary { grid-row: auto; }
    .component-gallery img, .component-gallery-primary img { min-height: 0; aspect-ratio: 16 / 10; }
    .component-flow { grid-template-columns: repeat(2, 1fr); }
    .component-flow li:nth-child(3) { border-left: 0; border-top: 1px solid var(--line); }
    .component-flow li:nth-child(4) { border-top: 1px solid var(--line); }
    .product-grid { grid-template-columns: 1fr; }
    .product-card, .product-card:nth-last-child(-n + 2), .product-card:last-child { grid-column: span 1; min-height: 390px; }
    .product-card img { width: 380px; align-self: center; }
    .footer-grid { grid-template-columns: 2fr 1fr 1fr; }
    .footer-grid > div:last-child { grid-column: 2; }
    .contact-hero-grid, .contact-layout { grid-template-columns: 1fr; }
    .contact-hero-note { max-width: 620px; }
    .contact-brief { position: static; }
    .account-header-inner { align-items: flex-start; flex-direction: column; }
    .account-header-actions { width: 100%; }
    .account-identity { width: 100%; min-width: 0; padding: 14px 18px; border: 1px solid var(--line); }
    .account-overview-grid { grid-template-columns: 1fr; }
}

@media (max-width: 700px) {
    :root { --shell: calc(100% - 28px); }
    .section { padding: 76px 0; }
    .hero { padding: 72px 0 58px; }
    .hero h1 { font-size: clamp(3.4rem, 17vw, 5.2rem); }
    .hero-grid { grid-template-columns: minmax(0, 1fr); }
    .hero-facts, .signal-grid, .split-heading, .workflow-grid, .evidence-grid, .closing-grid, .footer-grid { grid-template-columns: 1fr; }
    .signal-grid span, .signal-grid span:first-child { border-right: 0; border-left: 0; border-bottom: 1px solid rgba(255,255,255,.2); }
    .split-heading { gap: 28px; }
    .workflow-grid li, .workflow-grid li + li { min-height: auto; padding: 24px 0; border-right: 0; border-bottom: 1px solid var(--line); }
    .workflow-grid h3 { margin-top: 30px; }
    .operation-window { box-shadow: 10px 10px 0 rgba(158,40,40,.28); }
    .window-rail { flex-wrap: wrap; padding-block: 10px; }
    .evidence-visual img { min-height: 280px; }
    .footer-grid { gap: 28px; }
    .footer-grid > div:last-child { grid-column: auto; }
    .footer-bottom { gap: 16px; flex-direction: column; }
    .contact-hero { padding: 70px 0 58px; }
    .contact-hero h1 { font-size: clamp(3.5rem, 18vw, 5rem); }
    .contact-hero-note { padding-left: 18px; }
    .contact-page { padding: 54px 0 76px; }
    .contact-fields-row { grid-template-columns: 1fr; gap: 0; }
    .contact-submit-row { align-items: stretch; flex-direction: column; }
    .contact-submit-row .button { width: 100%; }
    .contact-brief { padding: 34px 26px; }
    .component-hero { padding: 70px 0 62px; }
    .component-hero-grid { gap: 46px; }
    .component-wordmark { width: min(320px, 90%); height: 180px; }
    .component-hero h1 { font-size: clamp(3rem, 15vw, 4.4rem); }
    .component-actions { align-items: stretch; flex-direction: column; }
    .component-actions .button { width: 100%; }
    .component-facts { grid-template-columns: 1fr; }
    .component-facts li, .component-facts li + li { padding: 13px 0; border-left: 0; border-bottom: 1px solid var(--line-dark); }
    .component-capability-grid { grid-template-columns: 1fr; margin-top: 46px; }
    .component-capability-grid article { min-height: 220px; padding: 26px; }
    .component-capability-grid h3 { margin-top: 48px; }
    .component-gallery { margin-top: 44px; }
    .component-flow { grid-template-columns: 1fr; }
    .component-flow li, .component-flow li + li { min-height: 210px; padding: 22px 0; border-left: 0; border-top: 1px solid var(--line); }
    .component-flow li:first-child { border-top: 0; }
    .component-flow h3 { margin-top: 44px; }
    .account-header { padding: 44px 0; }
    .account-header-actions { align-items: stretch; flex-direction: column; }
    .account-docs-link { min-height: 52px; }
    .account-content { padding-top: 28px; padding-bottom: 52px; }
    .account-panel { padding: 24px 20px; }
    .account-panel-heading { gap: 16px; margin-bottom: 24px; }
    .account-panel-heading > p { display: none; }
    .account-download-grid, .license-metrics { grid-template-columns: 1fr; }
    .license-metrics > div + div { padding-left: 0; border-top: 1px solid var(--line); border-left: 0; }
    .account-detail-list > div { grid-template-columns: 1fr; gap: 3px; }
    .account-detail-list dd { text-align: left; }
    .account-table thead { display: none; }
    .account-table, .account-table tbody, .account-table tr, .account-table td { display: block; width: 100%; }
    .account-table tr { padding: 12px 0; border-bottom: 1px solid var(--line); }
    .account-table tbody tr:last-child { border-bottom: 0; }
    .account-table td { display: flex; justify-content: space-between; gap: 18px; padding: 7px 0; border: 0; text-align: right; }
    .account-table td::before { color: var(--muted); content: attr(data-label); font-size: .7rem; text-align: left; }
    .account-table .amount-column { text-align: right; }
    .account-actions { align-items: stretch; flex-direction: column; }
    .account-action-buttons { align-items: stretch; flex-direction: column; }
    .account-action-buttons .button, .account-action-buttons form, .account-action-buttons button { width: 100%; }
    .news-article-page > .container { padding-inline: 0; }
    .news-article-title { font-size: clamp(2.4rem, 12vw, 3.6rem); }
    .news-article-prose { font-size: 1rem; line-height: 1.75; }
    .news-article-footer .d-flex { align-items: flex-start !important; flex-direction: column; gap: 20px; }
}
