:root {
    --ink: #102033;
    --muted: #5e6b7a;
    --quiet: #eef2f6;
    --line: #d9e1ea;
    --paper: #ffffff;
    --soft: #f7f9fb;
    --navy: #12345a;
    --blue: #1f6feb;
    --blue-soft: #e8f1ff;
    --green: #11845b;
    --green-soft: #e8f7f0;
    --gold: #b9802d;
    --gold-soft: #fff3df;
    --coral: #c94f3d;
    --shadow: 0 18px 50px rgba(16, 32, 51, 0.12);
    --radius: 8px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    background: var(--paper);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    font-size: 16px;
    line-height: 1.6;
    text-rendering: optimizeLegibility;
    -webkit-font-smoothing: antialiased;
}

body.menu-open {
    overflow: hidden;
}

img,
svg {
    display: block;
}

img {
    max-width: 100%;
}

a {
    color: inherit;
}

.skip-link {
    position: fixed;
    top: 12px;
    left: 12px;
    z-index: 200;
    transform: translateY(-160%);
    padding: 10px 14px;
    color: #ffffff;
    background: var(--ink);
    border-radius: var(--radius);
}

.skip-link:focus {
    transform: translateY(0);
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.96);
    border-bottom: 1px solid var(--line);
    backdrop-filter: blur(16px);
}

.nav {
    width: min(1180px, calc(100% - 40px));
    min-height: 72px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 156px;
    text-decoration: none;
}

.brand img {
    width: 154px;
    height: auto;
}

.nav-links {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 24px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--muted);
    font-size: 14px;
    font-weight: 650;
    text-decoration: none;
}

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

.nav-toggle {
    display: none;
    width: 42px;
    height: 42px;
    align-items: center;
    justify-content: center;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    color: var(--ink);
    cursor: pointer;
}

.nav-toggle svg {
    width: 22px;
    height: 22px;
}

.button,
button.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 44px;
    padding: 11px 18px;
    border: 1px solid transparent;
    border-radius: var(--radius);
    font: inherit;
    font-size: 15px;
    font-weight: 750;
    text-decoration: none;
    cursor: pointer;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease;
}

.button svg {
    width: 18px;
    height: 18px;
    flex: 0 0 18px;
}

.button.primary {
    color: #ffffff;
    background: var(--blue);
    box-shadow: 0 10px 26px rgba(31, 111, 235, 0.22);
}

.button.primary:hover,
.button.primary:focus {
    transform: translateY(-1px);
    background: #155fcf;
}

.button.secondary {
    color: var(--ink);
    background: #ffffff;
    border-color: var(--line);
}

.button.secondary:hover,
.button.secondary:focus {
    border-color: #b6c3d1;
    box-shadow: 0 10px 24px rgba(16, 32, 51, 0.08);
}

.button.inverse {
    color: var(--ink);
    background: #ffffff;
}

.button.full {
    width: 100%;
}

.hero {
    padding: 82px 0 40px;
    background: linear-gradient(180deg, #ffffff 0%, #f4f7fb 100%);
    border-bottom: 1px solid var(--line);
}

.hero-inner,
.section-inner,
.footer-inner {
    width: min(1180px, calc(100% - 40px));
    margin: 0 auto;
}

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

.eyebrow {
    margin: 0 0 12px;
    color: var(--blue);
    font-size: 14px;
    font-weight: 800;
    letter-spacing: 0;
    text-transform: uppercase;
}

h1,
h2,
h3,
h4,
p {
    margin-top: 0;
}

h1 {
    margin-bottom: 12px;
    color: var(--navy);
    font-size: 68px;
    line-height: 0.98;
    letter-spacing: 0;
}

h2 {
    margin-bottom: 16px;
    color: var(--navy);
    font-size: 38px;
    line-height: 1.16;
    letter-spacing: 0;
}

h3 {
    color: var(--navy);
    font-size: 22px;
    line-height: 1.25;
    letter-spacing: 0;
}

h4 {
    color: var(--navy);
    font-size: 17px;
    letter-spacing: 0;
}

.lead {
    color: var(--muted);
    font-size: 19px;
    line-height: 1.7;
}

.hero-subtitle {
    max-width: 840px;
    margin: 0 auto 18px;
    color: var(--ink);
    font-size: 30px;
    font-weight: 760;
    line-height: 1.22;
}

.hero-copy .lead {
    max-width: 760px;
    margin: 0 auto 28px;
}

.hero-actions,
.inline-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    flex-wrap: wrap;
}

.boardment-product {
    width: min(1040px, 100%);
    margin: 50px auto 0;
    border: 1px solid #c8d3df;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.portal-shell {
    background: #f7f9fc;
}

.portal-header {
    display: flex;
    min-height: 66px;
    align-items: center;
    gap: 14px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--line);
    background: #ffffff;
}

.portal-logo {
    display: flex;
    width: 38px;
    height: 38px;
    flex: 0 0 38px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: #ffffff;
    background: var(--navy);
    font-size: 18px;
    font-weight: 850;
}

.portal-header strong {
    display: block;
    color: var(--navy);
    line-height: 1.2;
}

.portal-header span {
    color: var(--muted);
    font-size: 13px;
}

.portal-badges {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-left: auto;
}

.portal-badges span {
    padding: 6px 9px;
    border-radius: var(--radius);
    color: var(--green);
    background: var(--green-soft);
    font-size: 12px;
    font-weight: 800;
}

.portal-body {
    display: grid;
    grid-template-columns: 170px minmax(0, 1fr);
    min-height: 500px;
}

.portal-nav {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 18px;
    background: #102033;
    color: rgba(255, 255, 255, 0.72);
}

.portal-nav span {
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 750;
}

.portal-nav .active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.portal-workspace {
    min-width: 0;
    padding: 24px;
}

.workspace-title {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 18px;
}

.workspace-title small,
.pack-cover small,
.signature-panel small,
.action-panel small,
.insight-card small {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.workspace-title h3 {
    margin-bottom: 6px;
}

.workspace-title p {
    margin: 0;
    color: var(--muted);
}

.workspace-title > span {
    flex: 0 0 auto;
    padding: 7px 10px;
    border-radius: var(--radius);
    color: var(--green);
    background: var(--green-soft);
    font-size: 12px;
    font-weight: 850;
}

.workspace-grid {
    display: grid;
    grid-template-columns: 1.35fr 0.75fr;
    gap: 14px;
}

.pack-panel {
    display: grid;
    grid-row: span 2;
    grid-template-columns: 0.82fr 1.18fr;
    min-width: 0;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    overflow: hidden;
}

.pack-cover {
    display: flex;
    min-height: 220px;
    flex-direction: column;
    justify-content: space-between;
    padding: 20px;
    color: #ffffff;
    background: var(--navy);
}

.pack-cover small,
.pack-cover span {
    color: rgba(255, 255, 255, 0.72);
}

.pack-cover strong {
    color: #ffffff;
    font-size: 28px;
    line-height: 1.1;
}

.pack-items {
    display: grid;
    gap: 10px;
    padding: 16px;
}

.pack-items div {
    display: grid;
    grid-template-columns: 28px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.pack-items strong {
    display: flex;
    width: 28px;
    height: 28px;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 13px;
}

.pack-items span {
    min-width: 0;
    color: var(--ink);
    font-weight: 750;
    overflow-wrap: anywhere;
}

.pack-items em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.signature-panel,
.action-panel {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.signature-panel strong,
.action-panel strong {
    display: block;
    color: var(--navy);
    font-size: 24px;
}

.signers {
    display: flex;
    gap: 8px;
    margin-top: 18px;
}

.signers span {
    width: 30px;
    height: 30px;
    border: 2px solid #ffffff;
    border-radius: 50%;
    background: var(--blue-soft);
    box-shadow: 0 0 0 1px var(--line);
}

.action-panel p {
    margin: 10px 0 0;
    color: var(--muted);
}

.workflow-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 14px;
}

.workflow-row div {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.workflow-row span {
    display: block;
    width: 10px;
    height: 10px;
    margin-bottom: 9px;
    border-radius: 50%;
    background: var(--green);
}

.workflow-row strong {
    display: block;
    color: var(--ink);
    line-height: 1.25;
}

.workflow-row em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.product-showcase {
    margin: 48px auto 0;
    border: 1px solid #c8d3df;
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: var(--shadow);
    overflow: hidden;
}

.mock-window {
    background: #ffffff;
}

.mock-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    min-height: 38px;
    padding: 0 14px;
    border-bottom: 1px solid var(--line);
    background: #f5f7fa;
}

.mock-topbar strong {
    margin-left: 8px;
    color: var(--muted);
    font-size: 13px;
}

.mock-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: #c5ced8;
}

.mock-dot:nth-child(1) {
    background: #d96d61;
}

.mock-dot:nth-child(2) {
    background: #d6a844;
}

.mock-dot:nth-child(3) {
    background: #52a875;
}

.mock-layout {
    display: grid;
    grid-template-columns: 190px 1fr;
    min-height: 470px;
    background: #f7f9fc;
}

.mock-sidebar {
    display: flex;
    flex-direction: column;
    gap: 8px;
    padding: 22px;
    border-right: 1px solid var(--line);
    background: #102033;
    color: rgba(255, 255, 255, 0.74);
}

.mock-sidebar span {
    padding: 10px 12px;
    border-radius: var(--radius);
    font-size: 13px;
    font-weight: 750;
}

.mock-sidebar .active {
    color: #ffffff;
    background: rgba(255, 255, 255, 0.12);
}

.mock-brand-mark {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    margin-bottom: 18px;
    border-radius: 50%;
    color: var(--navy) !important;
    background: #ffffff;
    font-size: 18px !important;
    font-weight: 850 !important;
}

.mock-main {
    padding: 28px;
}

.mock-heading {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 18px;
    margin-bottom: 20px;
}

.mock-heading small,
.visual-card small,
.card-label {
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.mock-heading h3,
.mock-card h4,
.visual-card h4 {
    margin-bottom: 0;
}

.status-pill {
    padding: 7px 10px;
    border-radius: var(--radius);
    color: var(--green);
    background: var(--green-soft);
    font-size: 12px;
    font-weight: 850;
}

.mock-kpis {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-bottom: 16px;
}

.mock-kpis div,
.mock-card {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.mock-kpis strong {
    display: block;
    color: var(--navy);
    font-size: 26px;
    line-height: 1;
}

.mock-kpis span {
    color: var(--muted);
    font-size: 13px;
}

.mock-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 14px;
}

.mock-card.large {
    grid-row: span 2;
    min-height: 200px;
}

.document-lines {
    display: grid;
    gap: 12px;
    margin-top: 24px;
}

.document-lines span {
    height: 14px;
    border-radius: 999px;
    background: var(--quiet);
}

.document-lines span:nth-child(2) {
    width: 82%;
}

.document-lines span:nth-child(3) {
    width: 58%;
}

.progress-track {
    height: 10px;
    margin-top: 24px;
    border-radius: 999px;
    background: var(--quiet);
    overflow: hidden;
}

.progress-track span {
    display: block;
    height: 100%;
    border-radius: inherit;
    background: var(--blue);
}

.audit-dots {
    display: flex;
    gap: 8px;
    margin-top: 24px;
}

.audit-dots span {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--blue-soft);
}

.section {
    padding: 86px 0;
}

.section.soft {
    background: var(--soft);
}

.section.dark {
    color: #ffffff;
    background: #102033;
}

.section.dark h2,
.section.dark h3,
.section.dark h4,
.section.dark .eyebrow {
    color: #ffffff;
}

.section.dark .lead,
.section.dark p {
    color: rgba(255, 255, 255, 0.78);
}

.section-header {
    max-width: 720px;
    margin-bottom: 44px;
}

.section-header.center {
    margin-right: auto;
    margin-left: auto;
    text-align: center;
}

.module-stack {
    display: grid;
    gap: 28px;
}

.module-row {
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(320px, 0.98fr);
    gap: 34px;
    align-items: center;
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.module-row:nth-child(even) {
    grid-template-columns: minmax(320px, 0.98fr) minmax(0, 1.02fr);
}

.module-row:nth-child(even) .module-copy {
    order: 2;
}

.module-copy p {
    color: var(--muted);
}

.module-list,
.check-list,
.plain-list {
    margin: 18px 0 0;
    padding: 0;
    list-style: none;
}

.module-list li,
.check-list li {
    position: relative;
    margin: 9px 0;
    padding-left: 28px;
    color: var(--ink);
}

.module-list li::before,
.check-list li::before {
    content: "";
    position: absolute;
    top: 10px;
    left: 2px;
    width: 10px;
    height: 6px;
    border-left: 2px solid var(--green);
    border-bottom: 2px solid var(--green);
    transform: rotate(-45deg);
}

.plain-list li {
    margin: 9px 0;
    color: var(--muted);
}

.product-visual {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
    box-shadow: 0 14px 34px rgba(16, 32, 51, 0.1);
    padding: 22px;
    overflow: hidden;
}

.insight-shell,
.committee-board,
.records-console {
    display: grid;
    gap: 12px;
}

.insight-shell {
    grid-template-columns: 1.2fr 0.8fr;
}

.insight-card,
.record-pill {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.insight-card.wide {
    grid-row: span 2;
    background: var(--blue-soft);
}

.insight-card strong,
.record-pill strong {
    display: block;
    color: var(--navy);
}

.insight-card strong {
    font-size: 24px;
}

.insight-card span,
.record-pill span {
    color: var(--muted);
    font-size: 13px;
}

.agenda-strip {
    display: grid;
    grid-column: 1 / -1;
    gap: 9px;
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.agenda-strip span {
    height: 10px;
    border-radius: 999px;
    background: var(--line);
}

.committee-node.primary {
    padding: 16px;
    border-radius: var(--radius);
    color: #ffffff;
    background: var(--navy);
    font-weight: 850;
    text-align: center;
}

.committee-branches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.committee-branches span,
.governance-tags span {
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    color: var(--navy);
    background: #ffffff;
    font-weight: 800;
    text-align: center;
}

.governance-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.governance-tags span {
    border: 0;
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 12px;
}

.records-console {
    grid-template-columns: repeat(3, 1fr);
}

.audit-console {
    display: grid;
    grid-column: 1 / -1;
    gap: 10px;
}

.audit-console div {
    display: grid;
    grid-template-columns: 10px minmax(0, 1fr) auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.audit-console span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
}

.audit-console strong {
    min-width: 0;
    color: var(--ink);
    overflow-wrap: anywhere;
}

.audit-console em {
    color: var(--muted);
    font-size: 12px;
    font-style: normal;
}

.visual-header {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
}

.visual-header strong {
    color: var(--navy);
}

.visual-columns {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 12px;
}

.visual-card {
    min-height: 118px;
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.visual-card.primary-card {
    grid-row: span 2;
    background: var(--blue-soft);
}

.visual-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 13px;
}

.visual-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 10px;
    margin-top: 18px;
}

.visual-timeline span {
    height: 8px;
    border-radius: 999px;
    background: var(--line);
}

.visual-timeline span:nth-child(1),
.visual-timeline span:nth-child(2) {
    background: var(--blue);
}

.org-map {
    display: grid;
    gap: 16px;
    margin-bottom: 18px;
}

.org-branches {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.org-node {
    padding: 14px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
    color: var(--navy);
    font-weight: 800;
    text-align: center;
}

.org-node.top {
    background: var(--navy);
    color: #ffffff;
}

.member-strip {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 18px;
}

.member-strip span {
    padding: 7px 10px;
    border-radius: var(--radius);
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 12px;
    font-weight: 800;
}

.policy-panel {
    padding: 16px;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    background: var(--gold-soft);
}

.policy-panel strong {
    color: var(--navy);
}

.policy-panel p {
    margin: 6px 0 0;
    color: var(--muted);
}

.records-row {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
    margin-bottom: 18px;
}

.record-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: var(--soft);
}

.record-card span {
    display: block;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.record-card strong {
    color: var(--navy);
    font-size: 16px;
}

.audit-table {
    display: grid;
    gap: 10px;
}

.audit-table div {
    display: grid;
    grid-template-columns: 10px 1fr auto;
    gap: 10px;
    align-items: center;
    padding: 12px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
}

.audit-table span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--green);
}

.audit-table strong {
    color: var(--ink);
}

.audit-table em {
    color: var(--muted);
    font-style: normal;
    font-size: 12px;
}

.journey-grid,
.security-grid,
.audience-grid,
.deployment-grid,
.pricing-grid,
.team-grid,
.legal-grid,
.footer-grid {
    display: grid;
    gap: 22px;
}

.journey-grid {
    grid-template-columns: repeat(3, 1fr);
}

.security-grid {
    grid-template-columns: repeat(4, 1fr);
}

.audience-grid,
.deployment-grid,
.pricing-grid {
    grid-template-columns: repeat(3, 1fr);
}

.team-grid {
    grid-template-columns: repeat(3, 1fr);
}

.legal-grid {
    grid-template-columns: 0.85fr 1.15fr;
}

.tile,
.security-tile,
.price-plan,
.person-card,
.legal-panel {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.tile,
.security-tile,
.price-plan,
.person-card {
    padding: 24px;
}

.tile strong,
.security-tile strong {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 28px;
    margin-bottom: 16px;
    padding: 0 10px;
    border-radius: var(--radius);
    color: var(--navy);
    background: var(--blue-soft);
    font-size: 13px;
}

.tile p,
.security-tile p,
.price-plan p,
.person-card p,
.legal-panel p {
    color: var(--muted);
}

.security-tile strong {
    background: var(--green-soft);
    color: var(--green);
}

.deployment-card {
    min-height: 100%;
}

.deployment-card.saas {
    border-top: 5px solid var(--blue);
}

.deployment-card.prem {
    border-top: 5px solid var(--green);
}

.deployment-card.assurance {
    border-top: 5px solid var(--gold);
}

.price-plan.featured {
    border-color: #9ebcf2;
    box-shadow: 0 14px 36px rgba(31, 111, 235, 0.1);
}

.plan-label {
    display: inline-flex;
    margin-bottom: 14px;
    padding: 5px 10px;
    border-radius: var(--radius);
    color: var(--blue);
    background: var(--blue-soft);
    font-size: 13px;
    font-weight: 800;
}

.price {
    margin: 0 0 14px;
    color: var(--ink);
    font-size: 28px;
    font-weight: 850;
}

.company-band {
    display: grid;
    grid-template-columns: 1.08fr 0.92fr;
    gap: 34px;
    align-items: start;
}

.company-facts {
    display: grid;
    gap: 14px;
}

.fact {
    padding: 18px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.fact span {
    display: block;
    margin-bottom: 4px;
    color: var(--muted);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.fact strong {
    color: var(--ink);
}

.fact a {
    color: var(--blue);
    text-decoration: none;
}

.contact-layout {
    display: grid;
    grid-template-columns: 0.82fr 1.18fr;
    gap: 34px;
    align-items: start;
}

.contact-methods {
    display: grid;
    gap: 14px;
    margin-top: 24px;
}

.contact-method {
    padding: 16px 0;
    border-top: 1px solid rgba(255, 255, 255, 0.18);
}

.contact-method span {
    display: block;
    color: rgba(255, 255, 255, 0.62);
    font-size: 13px;
    font-weight: 800;
    text-transform: uppercase;
}

.contact-method a,
.contact-method strong {
    color: #ffffff;
    font-weight: 750;
    text-decoration: none;
}

.contact-form {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    padding: 24px;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.08);
}

.field.full,
.form-status {
    grid-column: 1 / -1;
}

.field label {
    display: block;
    margin-bottom: 7px;
    color: rgba(255, 255, 255, 0.82);
    font-size: 13px;
    font-weight: 750;
}

.field input,
.field textarea,
.field select {
    width: 100%;
    min-height: 46px;
    padding: 11px 12px;
    border: 1px solid rgba(255, 255, 255, 0.24);
    border-radius: var(--radius);
    color: #ffffff;
    background: rgba(255, 255, 255, 0.08);
    font: inherit;
    font-size: 15px;
}

.field textarea {
    min-height: 118px;
    resize: vertical;
}

.field select option {
    color: var(--ink);
}

.field input::placeholder,
.field textarea::placeholder {
    color: rgba(255, 255, 255, 0.46);
}

.field input:focus,
.field textarea:focus,
.field select:focus {
    outline: 3px solid rgba(31, 111, 235, 0.32);
    border-color: #80b1ff;
}

.honeypot {
    position: absolute;
    left: -10000px;
    width: 1px;
    height: 1px;
    overflow: hidden;
}

.form-status {
    display: none;
    padding: 14px;
    border-radius: var(--radius);
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}

.form-status.show {
    display: block;
}

.form-status a {
    color: #ffffff;
    font-weight: 800;
}

.page-hero {
    padding: 76px 0 58px;
    background: var(--soft);
    border-bottom: 1px solid var(--line);
}

.page-hero .section-inner {
    max-width: 900px;
}

.page-hero h1 {
    font-size: 52px;
    line-height: 1.08;
}

.profile-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 34px;
    align-items: start;
}

.portrait {
    display: flex;
    width: 160px;
    height: 160px;
    align-items: center;
    justify-content: center;
    margin-bottom: 22px;
    border-radius: 50%;
    color: #ffffff;
    background: var(--navy);
    font-size: 46px;
    font-weight: 850;
}

.person-card .role {
    color: var(--blue);
    font-weight: 800;
}

.links-row {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 20px;
}

.links-row a {
    color: var(--blue);
    font-weight: 750;
}

.legal-panel {
    padding: 28px;
}

.legal-document {
    max-width: 980px;
}

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

.legal-meta-card {
    padding: 16px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.legal-meta-card span {
    display: block;
    margin-bottom: 7px;
    color: var(--muted);
    font-size: 12px;
    font-weight: 800;
    text-transform: uppercase;
}

.legal-meta-card strong {
    color: var(--ink);
    font-size: 14px;
    line-height: 1.45;
}

.legal-meta-card a {
    color: var(--blue);
    text-decoration: none;
}

.legal-body {
    padding: 34px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #ffffff;
}

.legal-body h2 {
    margin-top: 30px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
    font-size: 22px;
}

.legal-body h2:first-of-type {
    margin-top: 24px;
}

.legal-body p,
.legal-body li {
    color: var(--muted);
}

.legal-body ul {
    margin: 0 0 18px;
    padding-left: 22px;
}

.legal-body a {
    color: var(--blue);
    font-weight: 750;
}

.legal-panel h2 {
    font-size: 28px;
}

.legal-panel h3 {
    margin-top: 28px;
    font-size: 20px;
}

.legal-panel ul {
    margin: 0 0 18px;
    padding-left: 22px;
    color: var(--muted);
}

.notice {
    padding: 16px;
    border-left: 4px solid var(--gold);
    border-radius: var(--radius);
    background: var(--gold-soft);
    color: #5a3a12;
}

.site-footer {
    padding: 46px 0;
    background: #0f1f32;
    color: #ffffff;
}

.footer-grid {
    grid-template-columns: 1.1fr repeat(3, 0.7fr);
}

.footer-logo {
    width: 154px;
    margin-bottom: 18px;
    filter: brightness(0) invert(1);
}

.footer-grid p,
.footer-grid li,
.footer-bottom {
    color: rgba(255, 255, 255, 0.68);
}

.footer-grid h4 {
    color: #ffffff;
    margin-bottom: 12px;
}

.footer-grid ul {
    margin: 0;
    padding: 0;
    list-style: none;
}

.footer-grid li {
    margin: 8px 0;
}

.footer-grid a {
    color: rgba(255, 255, 255, 0.76);
    text-decoration: none;
}

.footer-grid a:hover,
.footer-grid a:focus {
    color: #ffffff;
}

.footer-bottom {
    width: min(1180px, calc(100% - 40px));
    margin: 34px auto 0;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.14);
    font-size: 14px;
}

@media (max-width: 980px) {
    h1 {
        font-size: 54px;
    }

    h2 {
        font-size: 32px;
    }

    .nav-toggle {
        display: inline-flex;
    }

    .nav-links {
        position: fixed;
        inset: 72px 0 auto 0;
        display: none;
        grid-template-columns: 1fr;
        gap: 0;
        padding: 14px 20px 22px;
        background: #ffffff;
        border-bottom: 1px solid var(--line);
        box-shadow: 0 16px 30px rgba(16, 32, 51, 0.08);
    }

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

    .nav-links li {
        width: 100%;
    }

    .nav-links a,
    .nav-links .button {
        width: 100%;
        justify-content: flex-start;
        padding: 12px 0;
        border-radius: 0;
    }

    .module-row,
    .module-row:nth-child(even),
    .company-band,
    .contact-layout,
    .profile-layout,
    .legal-grid {
        grid-template-columns: 1fr;
    }

    .module-row:nth-child(even) .module-copy {
        order: 0;
    }

    .portal-body {
        grid-template-columns: 1fr;
    }

    .portal-nav {
        display: grid;
        grid-template-columns: repeat(5, minmax(0, 1fr));
        border-bottom: 1px solid var(--line);
    }

    .portal-nav span {
        text-align: center;
        overflow-wrap: anywhere;
    }

    .workspace-grid,
    .workflow-row,
    .records-console {
        grid-template-columns: 1fr;
    }

    .pack-panel {
        grid-template-columns: 1fr;
    }

    .insight-shell {
        grid-template-columns: 1fr 1fr;
    }

    .mock-layout {
        grid-template-columns: 1fr;
    }

    .mock-sidebar {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .mock-brand-mark {
        display: none !important;
    }

    .journey-grid,
    .security-grid,
    .audience-grid,
    .deployment-grid,
    .pricing-grid,
    .team-grid,
    .legal-meta,
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 680px) {
    .nav,
    .hero-inner,
    .section-inner,
    .footer-inner,
    .footer-bottom {
        width: min(100% - 28px, 1180px);
    }

    .hero {
        padding-top: 56px;
    }

    h1 {
        font-size: 44px;
    }

    .page-hero h1 {
        font-size: 36px;
    }

    .hero-subtitle {
        font-size: 22px;
    }

    h2 {
        font-size: 28px;
    }

    .lead {
        font-size: 17px;
    }

    .section {
        padding: 62px 0;
    }

    .module-row,
    .contact-form,
    .legal-panel,
    .legal-body {
        padding: 18px;
    }

    .journey-grid,
    .security-grid,
    .audience-grid,
    .deployment-grid,
    .pricing-grid,
    .team-grid,
    .mock-kpis,
    .mock-grid,
    .visual-columns,
    .org-branches,
    .records-row,
    .footer-grid,
    .legal-meta,
    .contact-form {
        grid-template-columns: 1fr;
    }

    .mock-sidebar {
        grid-template-columns: 1fr 1fr;
        padding: 14px;
    }

    .mock-main {
        padding: 18px;
    }

    .mock-heading {
        display: grid;
    }

    .portal-header,
    .workspace-title {
        display: grid;
    }

    .portal-badges {
        margin-left: 0;
    }

    .portal-nav {
        grid-template-columns: 1fr 1fr;
        padding: 14px;
    }

    .portal-workspace,
    .product-visual {
        padding: 18px;
    }

    .insight-shell,
    .committee-branches,
    .records-console {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .inline-actions {
        align-items: stretch;
        flex-direction: column;
    }

    .hero-actions .button,
    .inline-actions .button {
        width: 100%;
    }
}
