@font-face {
    font-family: 'Poppins';
    src: url("/static/fonts/Poppins-Regular.093ee89be9ed.ttf") format('truetype');
    font-weight: 400;
    font-style: normal;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

@font-face {
    font-family: 'Poppins';
    src: url("/static/fonts/Poppins-Bold.08c20a487911.ttf") format('truetype');
    font-weight: 700;
    font-style: normal;
}

:root {
    --bg-page: #f5f7fa;
    --bg-surface: #ffffff;
    --bg-surface-muted: #eef2f7;
    --bg-dark: #0f172a;
    --bg-dark-soft: #111c34;
    --text-strong: #0f172a;
    --text-body: #334155;
    --text-muted: #64748b;
    --border-subtle: #d9e2ec;
    --brand-accent: #2563eb;
    --brand-accent-hover: #1d4ed8;
    --shadow-soft: 0 12px 30px rgba(15, 23, 42, 0.08);
    --shadow-lift: 0 18px 38px rgba(15, 23, 42, 0.12);
    --radius-card: 16px;
    --radius-pill: 999px;
}

#home-link {
    display: none;
}

.banner {
    width: 100%;
    height: 250px;
    background-size: cover;
    background-position: center;
    text-align: center;
    position: relative;
    z-index: 9999;
    background-color: transparent;
    border-top: 10px solid black;
    border-bottom: 5px solid black;
}

.banner::after {
    content: "";
    display: block;
    width: 100%;
    height: 1px;
    background-color: white;
    position: absolute;
    top: 0;
    left: 0;
}

body {
    font-family: 'Poppins', sans-serif;
    background-color: var(--bg-page);
    color: var(--text-body);
    margin: 0;
    padding: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    overflow-x: hidden;
}

main {
    flex: 1 0 auto;
}

:focus-visible {
    outline: 3px solid #0056b3;
    outline-offset: 2px;
}

h2 {
    font-size: 2em;
    color: var(--text-strong);
    margin-bottom: 20px;
    letter-spacing: -0.03em;
}

.content-page h1 {
    color: var(--text-strong);
    margin-bottom: 20px;
}

p {
    font-size: 1em;
    line-height: 1.6;
    margin-bottom: 20px;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
    margin: 0 auto;
}

form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

form input,
form select,
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
}

form button {
    padding: 10px 20px;
    background-color: var(--brand-accent);
    color: #fff;
    border: 1px solid var(--brand-accent);
    border-radius: 10px;
    cursor: pointer;
}

form button:hover {
    background-color: var(--brand-accent-hover);
    border: 1px solid var(--brand-accent-hover);
}

form details {
    margin-bottom: 20px;
}

form summary {
    margin-bottom: 12px;
    cursor: pointer;
    font-weight: 700;
}

.form-alert {
    border-radius: 8px;
    padding: 12px 16px;
    margin: 0 0 20px;
}

.form-alert-success {
    background: #eaf6ee;
    border: 1px solid #9fd0ad;
    color: #184f2a;
}

.form-alert-error {
    background: #fdeeee;
    border: 1px solid #e3a5a5;
    color: #7d1d1d;
}

.field-error {
    color: #a12626;
    margin: -14px 0 16px;
    font-size: 0.95em;
}

header {
    background-color: rgba(251, 251, 250, 0.94);
    backdrop-filter: blur(10px);
    color: var(--text-strong);
    padding: 12px 20px;
    z-index: 10000;
    border-bottom: 1px solid rgba(15, 23, 42, 0.08);
    box-shadow: 0 8px 24px rgba(15, 23, 42, 0.04);
}

header .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: nowrap;
    width: min(100%, 1200px);
    margin: 0 auto;
}

.logo {
    font-size: 1.5em;
    font-family: 'Poppins', sans-serif;
    font-weight: 700;
}

.logo .darke {
    color: #0A2540;
}

.logo .logix {
    color: #00A8A8;
}

.logo .tm {
    font-size: 0.6em;
    vertical-align: super;
    color: black;
}

.brand-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    white-space: nowrap;
    font-family: 'Poppins', sans-serif;
    font-size: inherit;
    font-style: normal;
    font-weight: 700;
    line-height: inherit;
}

.brand-wordmark .darke,
.brand-wordmark .logix {
    font-size: inherit;
    line-height: inherit;
}

.brand-wordmark .darke {
    color: #0A2540;
}

.brand-wordmark .logix {
    color: #00A8A8;
}

section .logo {
    font-size: 1em;
}

.menu-toggle {
    display: none;
    background: none;
    border: none;
    font-size: 1.5em;
    cursor: pointer;
}

.nav-links {
    display: flex;
    flex-direction: row;
    gap: 20px;
    align-items: center;
    margin-left: auto;
    white-space: nowrap;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-body);
    font-weight: 500;
    font-size: 0.95em;
}

.nav-links a:hover,
.nav-links a:focus {
    color: var(--text-strong);
}

.nav-links .nav-cta {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 9px 14px;
    border-radius: 10px;
    box-shadow: 0 8px 18px rgba(15, 23, 42, 0.12);
}

.nav-links .nav-cta:hover,
.nav-links .nav-cta:focus {
    color: #fff;
    background-color: var(--bg-dark-soft);
}

.skip-link {
    position: absolute;
    left: -9999px;
    top: 0;
    background: #0056b3;
    color: #fff;
    padding: 8px 12px;
    z-index: 10001;
}

.skip-link:focus {
    left: 10px;
    top: 10px;
}

.logo-link {
    display: inline-flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
    min-height: 60px;
}

.logo-link:hover {
    text-decoration: none;
    color: inherit;
}

.logo-wordmark {
    display: inline-flex;
    align-items: baseline;
    gap: 0;
    font-family: 'Poppins', sans-serif;
    font-size: 2.35rem;
    font-weight: 700;
    letter-spacing: -0.055em;
    line-height: 0.92;
    text-transform: lowercase;
    white-space: nowrap;
}

.logo-dex {
    color: #0A2540;
}

.logo-gate {
    color: #00A8A8;
}

/* Light "dex" on dark surfaces (hero, page banners, footer, etc.) */
.hero .brand-wordmark .darke,
.hero .logo-dex,
.page-hero .brand-wordmark .darke,
.page-hero .logo-dex,
.surface-dark .brand-wordmark .darke,
.surface-dark .logo-dex,
.surface-dark .brand-wordmark .darke,
footer .brand-wordmark .darke,
footer .logo-dex,
.one-line-governance-card .brand-wordmark .darke,
.hero-code-panel .brand-wordmark .darke,
.brand-wordmark--on-dark .darke,
.brand-wordmark--on-dark.logo-dex,
.logo-wordmark.brand-wordmark--on-dark .logo-dex {
    color: #ffffff;
}

/* Keep teal "gate" readable on dark (slightly brighter) */
.hero .brand-wordmark .logix,
.page-hero .brand-wordmark .logix,
.surface-dark .brand-wordmark .logix,
.surface-dark .logo-gate,
.brand-wordmark--on-dark .logix,
footer .brand-wordmark .logix {
    color: #2dd4bf;
}

.logo-wordmark-fallback {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
    color: var(--text-strong);
    font-family: 'Poppins', sans-serif;
    font-size: 1.42rem;
    font-weight: 700;
    letter-spacing: -0.045em;
    line-height: 1;
    text-transform: lowercase;
}

@media (max-width: 1200px) {
    .menu-toggle {
        display: block;
    }

    .nav-links {
        display: none;
        flex-direction: column;
        width: 100%;
    }

    .nav-links.show {
        display: flex;
    }

    .nav-links a {
        margin: 10px 0;
        text-align: left;
        padding: 10px;
        color: #0056b3;
    }
}

.hero {
    margin-top: 0;
    background:
        radial-gradient(circle at top left, rgba(37, 99, 235, 0.12), transparent 35%),
        linear-gradient(135deg, #020617 0%, #0f172a 45%, #14213d 100%);
    text-align: center;
    padding: 0;
    color: #fff;
    position: relative;
    min-height: 0;
    overflow: visible;
}

.hero-overlay {
    position: relative;
    top: 0;
    left: 0;
    width: 100%;
    min-height: inherit;
    background: transparent;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-direction: column;
    padding: 0;
    box-sizing: border-box;
}

.hero-overlay .content {
    width: min(100%, 1180px);
    padding: 20px 20px 24px;
    text-align: center;
}

.hero-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
    gap: 40px;
    align-items: center;
}

.hero-copy {
    text-align: left;
}

.hero h1,
.hero p,
.cta-button {
    z-index: 1;
}

.hero h1 {
    font-size: 3.15em;
    color: #fff;
    text-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    margin: 0 0 20px;
    letter-spacing: -0.04em;
}

.hero p {
    font-size: 1.2em;
    color: #e2e8f0;
    text-shadow: 0 6px 18px rgba(0, 0, 0, 0.2);
    margin: 0 0 18px;
}

.cta-button {
    background-color: var(--brand-accent);
    color: #fff;
    border: 1px solid transparent;
    padding: 11px 20px;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    font-size: 16px;
    font-weight: bold;
    box-shadow: 0 12px 26px rgba(37, 99, 235, 0.22);
    transition: transform 0.18s ease, box-shadow 0.18s ease, background-color 0.18s ease, border-color 0.18s ease, color 0.18s ease;
}

.cta-button:hover,
.cta-button:focus-visible {
    background-color: var(--brand-accent-hover);
    color: #fff;
    border: 1px solid transparent;
    transform: translateY(-1px);
    box-shadow: 0 18px 34px rgba(37, 99, 235, 0.26);
    outline: none;
}

/* Light surfaces (cards, content pages): secondary must stay readable */
.cta-button.secondary-cta,
a.cta-button.secondary-cta {
    background-color: #ffffff;
    color: #1d4ed8;
    border: 1px solid #93c5fd;
    box-shadow: none;
}

.cta-button.secondary-cta:hover,
.cta-button.secondary-cta:focus-visible,
a.cta-button.secondary-cta:hover,
a.cta-button.secondary-cta:focus-visible {
    background-color: #eff6ff;
    color: #1e40af;
    border-color: #60a5fa;
    box-shadow: 0 8px 18px rgba(37, 99, 235, 0.12);
    transform: translateY(-1px);
}

/* Dark surfaces (hero, dark page heroes): secondary as glass outline on dark */
.hero .cta-button.secondary-cta,
.hero-overlay .cta-button.secondary-cta,
.page-hero .cta-button.secondary-cta,
[style*="background: linear-gradient"] .cta-button.secondary-cta {
    background-color: rgba(255, 255, 255, 0.1);
    color: #f8fafc;
    border: 1px solid rgba(226, 232, 240, 0.55);
    box-shadow: none;
}

.hero .cta-button.secondary-cta:hover,
.hero .cta-button.secondary-cta:focus-visible,
.hero-overlay .cta-button.secondary-cta:hover,
.hero-overlay .cta-button.secondary-cta:focus-visible,
.page-hero .cta-button.secondary-cta:hover,
.page-hero .cta-button.secondary-cta:focus-visible {
    background-color: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border-color: rgba(255, 255, 255, 0.7);
    box-shadow: 0 10px 22px rgba(15, 23, 42, 0.28);
}

.hero-cta-group {
    display: flex;
    justify-content: flex-start;
    gap: 12px;
    flex-wrap: wrap;
    margin-bottom: 16px;
}

/* Legacy class alone (if used without pairing) — treat as light secondary */
.secondary-cta:not(.cta-button) {
    background-color: #ffffff;
    color: #1d4ed8;
    border: 1px solid #93c5fd;
    box-shadow: none;
}

.hero-tertiary-link {
    color: #bfdbfe;
    font-weight: 700;
    text-underline-offset: 3px;
}

.hero-tertiary-link:hover,
.hero-tertiary-link:focus {
    color: #eff6ff;
}

.hero-tertiary-wrap {
    margin: -4px 0 16px;
    text-align: left;
}

.hero-trust-list {
    list-style: none;
    padding: 0;
    margin: 10px 0 0;
}

.hero-trust-list li {
    margin: 6px 0;
    font-size: 0.95em;
    color: #dbe7f5;
}

.hero-copy > :first-child,
.hero-code-panel > :first-child {
    margin-top: 0;
}

.hero-copy > :last-child,
.hero-code-panel > :last-child {
    margin-bottom: 0;
}

.hero-code-panel {
    position: relative;
    z-index: 1;
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(2, 6, 23, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 18px;
    box-shadow: 0 24px 50px rgba(0, 0, 0, 0.35);
    padding: 18px 20px 20px;
    text-align: left;
}

.hero-code-header {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
}

.hero-code-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background-color: rgba(148, 163, 184, 0.75);
}

.hero-code-dot:first-child {
    background-color: #f87171;
}

.hero-code-dot:nth-child(2) {
    background-color: #fbbf24;
}

.hero-code-dot:nth-child(3) {
    background-color: #34d399;
}

.hero-code-block {
    margin: 0;
    font-family: "Consolas", "SFMono-Regular", Monaco, monospace;
    font-size: 0.98rem;
    line-height: 1.65;
    color: #e2e8f0;
    white-space: pre-wrap;
}

.hero-code-comment {
    color: #7dd3fc;
}

.hero-code-string {
    color: #fde68a;
}

.hero-code-denied {
    color: #f87171;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.hero-code-caption {
    margin: 18px 0 0;
    font-size: 0.98rem;
    color: #dbe7f5;
    text-shadow: none;
}

.page-hero {
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #14213d 100%);
    color: #fff;
    padding: 24px 20px 26px;
    margin: 0 calc(50% - 50vw) 0;
    box-shadow: inset 0 -1px 0 rgba(148, 163, 184, 0.18);
}

.page-hero-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.page-hero-eyebrow {
    margin: 0 auto 10px;
    max-width: 760px;
    text-align: center;
    font-size: 0.86rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #bfdbfe;
}

.page-hero .page-hero-title {
    margin: 0 auto;
    max-width: 860px;
    text-align: center;
    color: #fff;
    font-size: clamp(2rem, 3.4vw, 2.85rem);
    line-height: 1.08;
    letter-spacing: -0.04em;
    text-wrap: balance;
}

.page-hero-copy {
    max-width: 780px;
    margin: 18px auto 0;
    text-align: center;
}

.page-hero-copy p {
    margin: 0 0 14px;
    color: #dbe7f5;
    font-size: 1.06rem;
    line-height: 1.65;
}

.page-hero-copy p:last-child {
    margin-bottom: 0;
}

.page-hero-lead {
    color: #fff !important;
    font-size: 1.18rem !important;
    font-weight: 700;
    line-height: 1.5 !important;
}

.page-hero-actions {
    margin: 6px 0 16px;
    text-align: center;
}

.page-hero-meta {
    margin: 0;
    text-align: center;
}

.page-hero-meta .hero-tertiary-link {
    color: #bfdbfe;
}

.page-hero-meta .hero-tertiary-link:hover,
.page-hero-meta .hero-tertiary-link:focus {
    color: #eff6ff;
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    border: 0;
}

#about-us {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#about-us img {
    border-radius: 10px;
    margin-top: 20px;
}

#problem-framing {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#security-gap {
    background-color: #fff;
    padding: 48px 20px;
    display: flex;
    justify-content: center;
}

.security-gap-inner {
    width: min(100%, 980px);
    max-width: 980px;
    margin: 0 auto;
    text-align: center;
}

.security-gap-inner h2 {
    margin-top: 0;
}

.security-gap-inner > p {
    max-width: 880px;
    margin-left: auto;
    margin-right: auto;
}

.security-gap-lead {
    font-weight: 700;
    margin-top: 28px;
}

.security-gap-table-wrap {
    overflow-x: auto;
    margin: 24px 0;
    width: 100%;
}

.security-gap-table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.security-gap-table th,
.security-gap-table td {
    border: 1px solid #d7dde6;
    padding: 14px 16px;
    text-align: left;
}

.security-gap-table th {
    background: #eef3f9;
}

.problem-list {
    max-width: 900px;
    margin: 0 auto 20px;
    text-align: left;
}

.problem-outcome {
    font-weight: 700;
    margin-bottom: 0;
}

#services {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#services .service {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#services .service-item {
    background-color: #f9f9f9;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

@media (max-width: 1200px) {
    #services .service {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    #services .service {
        grid-template-columns: 1fr;
    }
}

#strategic-decision-engine {
    background-color: #f9f9f9;
    padding: 40px 20px;
}

#strategic-decision-engine .strategic-decision-engine-content {
    max-width: 1200px;
    margin: 0 auto;
    text-align: center;
}

#strategic-decision-engine .service {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

#strategic-decision-engine .service-item {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    text-align: center;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
}

.sde-outputs {
    max-width: 1100px;
    margin: 20px auto 0;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    text-align: left;
}

.sde-output-item {
    background-color: #fff;
    border-radius: 10px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    padding: 16px;
}

@media (max-width: 1200px) {
    #strategic-decision-engine .service {
        grid-template-columns: repeat(2, 1fr);
    }

    .sde-outputs {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    header {
        padding: 10px 16px;
    }

    .logo-link {
        min-height: 50px;
    }

    .logo-wordmark {
        font-size: 1.95rem;
    }

    .hero {
        height: auto;
        min-height: 0;
        padding: 0;
    }

    .hero-overlay {
        position: relative;
        min-height: inherit;
        padding: 0;
    }

    .hero-overlay .content {
        width: 100%;
        max-width: 100%;
        padding: 0;
    }

    .hero-layout {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .hero-copy {
        text-align: center;
    }

    .hero h1 {
        font-size: 2.2em;
    }

    .hero p {
        font-size: 1.05em;
    }

    .hero-trust-list li {
        font-size: 0.9em;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-tertiary-wrap {
        text-align: center;
    }

    .hero-code-panel {
        width: min(100%, 560px);
        margin: 0 auto;
    }

    .page-hero {
        padding: 20px 16px 22px;
    }

    .page-hero-title {
        font-size: 1.9rem;
    }

    .page-hero-copy {
        margin-top: 16px;
    }

    .page-hero-copy p {
        font-size: 1rem;
    }

    .page-hero-lead {
        font-size: 1.08rem !important;
    }

    .content-page {
        width: 100%;
        padding: 32px 16px;
    }
}

@media (max-width: 600px) {
    #strategic-decision-engine .service {
        grid-template-columns: 1fr;
    }
}

#commitment {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#commitment img {
    border-radius: 10px;
    margin-top: 20px;
}

#success-stories {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.success-stories-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    margin: 20px auto 0;
}

.success-story-item {
    background-color: var(--bg-surface);
    padding: 22px;
    border-radius: var(--radius-card);
    text-align: center;
    border: 1px solid var(--border-subtle);
    box-shadow: var(--shadow-soft);
    text-decoration: none;
    color: inherit;
    transition: transform 0.18s ease, box-shadow 0.18s ease, border-color 0.18s ease;
}

.success-story-item:hover {
    background-color: var(--bg-surface);
    border-color: #b8c7d9;
    box-shadow: var(--shadow-lift);
    transform: translateY(-2px);
}

.success-story-item h3 {
    margin-top: 0;
    color: var(--text-strong);
}

.success-story-item p {
    margin-bottom: 0;
    font-size: 1em;
    line-height: 1.6;
}

.pricing-grid {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
}

.pricing-grid .success-story-item {
    flex: 1 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    min-width: 240px;
}

#assurance {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.section-inner {
    width: min(100%, 1200px);
    margin: 0 auto;
}

.section-eyebrow {
    display: inline-flex;
    align-items: center;
    min-height: 30px;
    padding: 0 12px;
    margin: 0 0 14px;
    border-radius: var(--radius-pill);
    background: #e8f0fb;
    color: #1d4ed8;
    font-size: 0.82rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.section-intro {
    max-width: 760px;
    margin: 0 auto 14px;
    color: var(--text-body);
    font-size: 1.05rem;
}

.section-subnote {
    max-width: 760px;
    margin: 0 auto 20px;
    color: var(--text-muted);
    font-size: 0.95rem;
}

.cta-cluster {
    display: flex;
    justify-content: center;
    gap: 12px;
    flex-wrap: wrap;
}

.pill-row {
    display: flex;
    justify-content: center;
    gap: 10px;
    flex-wrap: wrap;
    margin: 16px 0 0;
}

.pill-row span {
    display: inline-flex;
    align-items: center;
    min-height: 36px;
    padding: 0 14px;
    border-radius: var(--radius-pill);
    background: #e2e8f0;
    color: var(--text-strong);
    font-weight: 600;
    font-size: 0.92rem;
}

.surface-accent {
    background: linear-gradient(180deg, #ffffff 0%, #f8fbff 100%);
    border: 1px solid #c9d8ea;
}

#pricing-teaser,
#roadmap,
#enterprise-cta {
    background-color: #f8fafc;
    padding: 40px 20px;
    text-align: center;
}

#audience-starting-points {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

#credibility-strip {
    background-color: #eef3f8;
    border-top: 1px solid #d8e2ec;
    border-bottom: 1px solid #d8e2ec;
    padding: 28px 20px;
    text-align: center;
}

#credibility-strip .credibility-strip-inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

#credibility-strip p {
    margin: 0;
    font-size: 0.95em;
}

#credibility-strip .credibility-line {
    font-weight: 600;
    color: var(--text-strong);
}

#credibility-strip .credibility-subline {
    margin-top: 10px;
    color: var(--text-muted);
}

#credibility-strip a {
    color: var(--text-strong);
    font-weight: 700;
    text-decoration: none;
}

#credibility-strip a:hover,
#credibility-strip a:focus {
    text-decoration: underline;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
    margin: 28px 0 36px;
}

.partner-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

.partner-card h3,
.partner-form-card h3 {
    margin-top: 0;
    margin-bottom: 12px;
    color: #111827;
}

.partner-card p:last-child,
.partner-form-card p:last-child {
    margin-bottom: 0;
}

.partner-list {
    margin: 14px 0 0;
    padding-left: 18px;
}

.partner-list li {
    margin-bottom: 8px;
}

.partner-form-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    border-radius: 14px;
    padding: 24px;
    box-shadow: var(--shadow-soft);
}

#audience-starting-points h2 {
    text-align: center;
}

#audience-starting-points .audience-pricing-grid {
    margin: 20px auto 0;
}

#audience-starting-points .success-story-item {
    flex: 0 1 calc(33.333% - 20px);
    max-width: calc(33.333% - 20px);
    min-width: 240px;
    text-align: center;
}

#audience-starting-points .success-story-item p {
    margin-top: 20px;
}

#enterprise-cta {
    background-color: #fff;
}

#category-definition {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.category-definition-inner {
    max-width: 900px;
    margin: 0 auto;
}

.category-definition-inner h2 {
    margin-top: 0;
}

.category-definition-inner p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

#security-review-ready {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.security-review-ready-inner {
    max-width: 900px;
    margin: 0 auto;
}

.security-review-ready-inner > p {
    max-width: 760px;
    margin-left: auto;
    margin-right: auto;
}

#category-architecture {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.category-architecture-inner {
    max-width: 760px;
    margin: 0 auto;
}

.architecture-flow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.architecture-node {
    width: min(100%, 340px);
    background: #fff;
    border: 1px solid #d7dde6;
    border-radius: 12px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    padding: 16px 20px;
    font-weight: 700;
    color: #111;
}

.architecture-arrow {
    font-size: 2rem;
    line-height: 1;
    color: #0056b3;
    font-weight: 700;
}

.category-architecture-caption {
    max-width: 680px;
    margin: 24px auto 0;
    font-weight: 700;
}

.decision-record-panel {
    max-width: 760px;
    margin: 32px auto 0;
    text-align: left;
}

.decision-record-panel h3 {
    margin: 0 0 20px;
    color: #111;
    text-align: left;
}

.decision-record-card {
    background: #f9fafb;
    border: 1px solid #d7dde6;
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    padding: 24px;
    text-align: left;
}

.decision-record-grid {
    margin: 0;
}

.decision-record-row {
    display: block;
    padding: 18px 0;
    border-top: 1px solid #d7dde6;
}

.decision-record-row:first-child {
    border-top: 0;
    padding-top: 0;
}

.decision-record-row:last-child {
    padding-bottom: 0;
}

.decision-record-row dt {
    font-weight: 700;
    color: #374151;
    margin: 0 0 8px;
}

.decision-record-row dd {
    margin: 0;
    color: #111;
}

.decision-record-denied {
    color: #b91c1c;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.decision-record-caption {
    margin: 24px 0 0;
    font-weight: 700;
    text-align: center;
}

.interactive-demo-panel {
    max-width: 760px;
    margin: 32px auto 0;
    text-align: left;
}

.interactive-demo-panel h3 {
    margin: 0 0 20px;
    color: #111;
    text-align: left;
}

.interactive-demo-card {
    padding: 0;
}

.interactive-demo-request-card,
.interactive-demo-step-card {
    background: #f9fafb;
    border: 1px solid #d7dde6;
    border-radius: 14px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
    padding: 24px;
}

.interactive-demo-label,
.interactive-demo-step-label {
    margin: 0 0 8px;
    font-weight: 700;
    color: #374151;
}

.interactive-demo-request,
.interactive-demo-step-value {
    margin: 0;
    color: #111;
}

.interactive-demo-run {
    margin-top: 20px;
}

.interactive-demo-status {
    margin-top: 24px;
}

.interactive-demo-toggle {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 18px 0;
    font-weight: 700;
    color: #111;
}

.interactive-demo-toggle input {
    width: 18px;
    height: 18px;
    margin: 0;
}

.interactive-demo-denied {
    color: #b91c1c;
    font-weight: 700;
    letter-spacing: 0.04em;
}

.interactive-demo-caption {
    margin: 20px 0 0;
    text-align: center;
}

#one-line-governance {
    background-color: #fff;
    padding: 40px 20px;
    text-align: center;
}

.one-line-governance-inner {
    max-width: 760px;
    margin: 0 auto;
}

.one-line-governance-card {
    background: linear-gradient(180deg, rgba(17, 24, 39, 0.96), rgba(2, 6, 23, 0.96));
    border: 1px solid rgba(148, 163, 184, 0.35);
    border-radius: 16px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.12);
    padding: 24px;
    text-align: left;
}

.one-line-governance-code {
    margin: 0;
    color: #e2e8f0;
    font-family: "Consolas", "SFMono-Regular", Monaco, monospace;
    font-size: 1rem;
    line-height: 1.7;
    white-space: pre-wrap;
}

.one-line-governance-caption {
    margin: 20px 0 0;
    text-align: center;
}

#how-it-works {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

.how-grid {
    max-width: 1100px;
    margin: 0 auto 20px;
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.how-step {
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    padding: 22px;
    text-align: left;
}

.how-step .how-step-number {
    display: inline-flex;
    width: 30px;
    height: 30px;
    border-radius: 15px;
    background-color: #0056b3;
    color: #fff;
    align-items: center;
    justify-content: center;
    margin-right: 8px;
    font-weight: 700;
}

.how-step h3 {
    margin: 14px 0 10px;
    color: var(--text-strong);
    font-size: 1.02rem;
}

.how-step p {
    margin: 0;
    color: var(--text-body);
}

.how-examples {
    width: min(100%, 900px);
    margin: 0 auto;
    background: #fff;
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    border: 1px solid var(--border-subtle);
    padding: 24px;
    text-align: left;
}

.autonomy-line {
    max-width: 900px;
    margin: 20px auto 0;
    font-weight: 700;
}

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

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

    .pricing-grid .success-story-item {
        max-width: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    }

    #audience-starting-points .success-story-item {
        max-width: calc(50% - 20px);
        flex-basis: calc(50% - 20px);
    }
}

@media (max-width: 600px) {
    .success-stories-grid {
        grid-template-columns: 1fr;
    }

    .how-grid {
        grid-template-columns: 1fr;
    }

    .pricing-grid .success-story-item {
        max-width: 100%;
        flex-basis: 100%;
    }

    #audience-starting-points .success-story-item {
        max-width: 100%;
        flex-basis: 100%;
    }
}

#success-story {
    padding: 20px;
    max-width: 800px;
    margin: 20px auto;
    background-color: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    text-align: left;
}

#contact-us {
    background-color: #f9f9f9;
    padding: 40px 20px;
    text-align: center;
}

#contact-us form {
    max-width: 600px;
    margin: 0 auto;
    text-align: left;
}

#contact-us p {
    margin-top: 20px;
}

#contact-us a {
    color: #0056b3;
    text-decoration: none;
}

#contact-us a:hover {
    text-decoration: underline;
}

.content-page {
    padding: 0 0 40px;
    max-width: 1200px;
    margin: 0 auto;
    width: 100%;
}

.content-page pre {
    background: #1f2630;
    color: #f4f7fb;
    border-radius: 8px;
    padding: 14px;
    overflow-x: auto;
    width: 100%;
    max-width: 100%;
    white-space: pre-wrap;
    word-break: break-word;
}

.content-page table {
    width: 100%;
    border-collapse: collapse;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.08);
}

.content-page th,
.content-page td {
    border: 1px solid #d7dde6;
    padding: 10px;
    text-align: left;
}

.content-page th {
    background: #eef3f9;
}

.page-cta-group {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
}

.resource-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 20px;
}

@media (max-width: 600px) {
    .resource-grid {
        grid-template-columns: 1fr;
    }

    .page-cta-group {
        flex-direction: column;
        align-items: stretch;
    }

    .page-cta-group .cta-button {
        width: 100%;
        text-align: center;
    }
}

footer {
    background-color: var(--bg-dark);
    color: #fff;
    padding: 28px 16px;
    text-align: center;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: auto;
}

.footer-content {
    width: min(100%, 1200px);
    margin: 0 auto;
    text-align: center;
}

.error-message {
    width: min(100%, 760px);
    margin: 0 auto;
}

footer a {
    color: #cbd5e1;
    text-decoration: none;
}

.evidence-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 20px;
    margin-top: 20px;
}

.evidence-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 22px;
    text-align: left;
}

.evidence-card h3 {
    margin-top: 0;
    color: var(--text-strong);
}

.contact-card {
    background: #fff;
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-card);
    box-shadow: var(--shadow-soft);
    padding: 28px;
}

footer a:hover {
    text-decoration: underline;
    color: #fff;
}





