﻿:root {
    --bg: #f8f9fb;
    --bg-soft: #f3f4f6;
    --surface: #ffffff;
    --surface-alt: #f6f7f9;
    --surface-blue: #eef1f5;
    --text: #20324b;
    --text-soft: #5f6978;
    --text-strong: #0a2347;
    --text-on-blue: rgba(255, 255, 255, 0.86);
    --line: #d2d3d5;
    --line-strong: #c3c5c9;
    --primary: #063688;
    --primary-strong: #052f76;
    --primary-soft: rgba(6, 54, 136, 0.08);
    --primary-glow: rgba(6, 54, 136, 0.16);
    --accent: #d2d3d5;
    --container-width: 1180px;
    --radius-xl: 22px;
    --radius-lg: 16px;
    --radius-md: 12px;
    --shadow-soft: 0 16px 40px rgba(9, 28, 59, 0.06);
    --shadow-card: 0 22px 54px rgba(9, 28, 59, 0.08);
    --shadow-strong: 0 28px 70px rgba(5, 32, 77, 0.18);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    overflow-x: hidden;
    font-family: "Manrope", "Segoe UI", sans-serif;
    color: var(--text);
    background:
        radial-gradient(circle at top left, rgba(210, 211, 213, 0.16), transparent 24%),
        radial-gradient(circle at 88% 8%, rgba(6, 54, 136, 0.06), transparent 22%),
        linear-gradient(180deg, #f8f9fb 0%, #ffffff 24%, #f7f8fa 100%);
}

h1,
h2,
h3,
.brand-name,
.button,
.nav-link {
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
}

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

img {
    display: block;
    max-width: 100%;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(6, 54, 136, 0.22);
    outline-offset: 3px;
}

::selection {
    background: rgba(6, 54, 136, 0.14);
}

.container {
    width: min(100% - 40px, var(--container-width));
    margin: 0 auto;
}

.skip-link {
    position: absolute;
    left: 16px;
    top: -48px;
    z-index: 999;
    padding: 12px 16px;
    border-radius: 10px;
    background: var(--text-strong);
    color: #ffffff;
    transition: top 0.2s ease;
}

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

.page-shell {
    min-height: 100vh;
    display: flex;
    flex-direction: column;
}

.page-main {
    flex: 1;
}

.page-main:focus {
    outline: none;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 50;
    background: rgba(255, 255, 255, 0.88);
    backdrop-filter: blur(18px);
    border-bottom: 1px solid rgba(210, 211, 213, 0.84);
    box-shadow: 0 10px 24px rgba(9, 28, 59, 0.04);
}

.header-content {
    display: grid;
    grid-template-columns: auto 1fr;
    align-items: center;
    gap: 28px;
    min-height: 84px;
}

.brand {
    display: inline-flex;
    align-items: center;
}

.brand-logo {
    width: auto;
    height: 48px;
    object-fit: contain;
    flex: none;
}

.brand-lockup {
    display: grid;
    gap: 5px;
}

.brand-name {
    font-size: 1.02rem;
    letter-spacing: -0.03em;
}

.brand-tagline {
    max-width: 290px;
    font-size: 0.83rem;
    line-height: 1.45;
    color: var(--text-soft);
}

.site-nav {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 8px;
    flex-wrap: wrap;
    margin-left: auto;
}

.nav-link {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 10px;
    color: var(--text-soft);
    font-size: 0.95rem;
    font-weight: 700;
    transition: background 0.2s ease, color 0.2s ease;
}

.nav-link:hover {
    background: rgba(6, 54, 136, 0.08);
    color: var(--text-strong);
}

.nav-link-active {
    background: var(--primary-soft);
    color: var(--primary-strong);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-height: 48px;
    padding: 0 22px;
    border: 1px solid transparent;
    border-radius: 10px;
    font-size: 0.96rem;
    font-weight: 700;
    letter-spacing: -0.01em;
    transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-primary {
    background: var(--primary);
    color: #ffffff;
    box-shadow: 0 18px 34px rgba(6, 54, 136, 0.2);
}

.button-primary:hover {
    box-shadow: 0 20px 40px rgba(6, 54, 136, 0.26);
}

.button-secondary {
    background: rgba(255, 255, 255, 0.94);
    border-color: var(--line);
    color: var(--text-strong);
}

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

.hero-section,
.page-hero-section {
    position: relative;
}

.hero-section::before,
.page-hero-section::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 100%;
    background:
        radial-gradient(circle at 76% 18%, rgba(6, 54, 136, 0.08), transparent 24%),
        radial-gradient(circle at 16% 12%, rgba(210, 211, 213, 0.14), transparent 22%);
    pointer-events: none;
}

.hero-section {
    padding: 0 0 18px;
}

.hero-layout {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: flex-end;
    min-height: 388px;
    padding-top: 44px;
    padding-bottom: 24px;
}

.hero-copy,
.hero-banner,
.page-hero-copy,
.hero-panel,
.page-hero-panel,
.expansion-layout,
.empty-state {
    animation: fade-up 0.7s ease both;
}

.hero-copy h1,
.page-hero-copy h1,
.section-heading h2,
.final-cta-copy h2,
.empty-state h1 {
    margin: 0;
    color: var(--text-strong);
    letter-spacing: -0.05em;
    line-height: 1.04;
    text-wrap: balance;
}

.hero-banner {
    position: relative;
    overflow: hidden;
    min-height: 400px;
    padding: 0;
    border: 0;
    border-radius: 0;
    background: #0b1930;
}

.hero-banner::after {
    content: "";
    position: absolute;
    inset: 0;
    background:
        linear-gradient(90deg, rgba(6, 23, 51, 0.6) 0%, rgba(6, 23, 51, 0.38) 32%, rgba(6, 23, 51, 0.12) 58%, rgba(6, 23, 51, 0.03) 100%),
        linear-gradient(180deg, rgba(6, 23, 51, 0.03) 0%, rgba(6, 23, 51, 0.22) 100%);
    pointer-events: none;
}

.hero-banner-media {
    position: absolute;
    inset: 0;
}

.hero-banner-image-wrap,
.hero-banner-image {
    width: 100%;
    height: 100%;
}

.hero-banner-image {
    object-fit: cover;
    object-position: center 50%;
    filter: blur(3.2px);
    transform: scale(1.05);
}

.hero-copy {
    position: relative;
    z-index: 1;
    max-width: 760px;
    padding-right: 32px;
}

.hero-copy h1 {
    max-width: none;
    color: #ffffff;
    font-size: clamp(1.9rem, 2.6vw, 2.75rem);
    white-space: nowrap;
    text-shadow: 0 8px 24px rgba(6, 23, 51, 0.14);
}

.page-hero-section {
    padding: 30px 0 84px;
}

.page-hero-layout {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: minmax(0, 1.04fr) minmax(300px, 0.96fr);
    gap: 30px;
    align-items: start;
}

.page-hero-copy {
    padding-top: 20px;
}

.page-hero-copy h1 {
    max-width: 12ch;
    font-size: clamp(2.45rem, 4vw, 3.8rem);
}

.hero-summary,
.page-hero-summary,
.section-summary,
.section-body,
.info-card p,
.footer-brand p,
.footer-link,
.empty-state p {
    color: var(--text-soft);
    line-height: 1.8;
    text-wrap: pretty;
}

.hero-summary,
.page-hero-summary {
    max-width: 650px;
    margin: 14px 0 0;
    font-size: 0.95rem;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-top: 18px;
}

.hero-highlights {
    display: flex;
    gap: 26px;
    flex-wrap: nowrap;
    margin: 14px 0 0;
    padding: 0;
    list-style: none;
}

.hero-highlights li {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--text-soft);
    font-size: 0.9rem;
    font-weight: 700;
    line-height: 1.6;
    white-space: nowrap;
}

.hero-highlights li::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 999px;
    background: var(--primary);
    flex: none;
}

.hero-banner .section-kicker {
    margin-bottom: 14px;
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.hero-banner .hero-summary,
.hero-banner .hero-highlights li {
    color: rgba(255, 255, 255, 0.88);
}

.hero-banner .button-secondary {
    background: rgba(255, 255, 255, 0.95);
    border-color: rgba(255, 255, 255, 0.3);
}

.hero-panel,
.page-hero-panel {
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(210, 211, 213, 0.78);
    border-radius: var(--radius-xl);
    background:
        linear-gradient(180deg, rgba(255, 255, 255, 0.98), rgba(245, 250, 255, 0.98)),
        radial-gradient(circle at top right, rgba(6, 54, 136, 0.08), transparent 28%);
    box-shadow: var(--shadow-card);
}

.hero-panel {
    padding: 32px;
}

.page-hero-panel {
    padding: 28px;
}

.hero-panel::before,
.page-hero-panel::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 5px;
    background: var(--primary);
}

.hero-panel::after,
.page-hero-panel::after {
    content: "";
    position: absolute;
    right: -56px;
    top: -44px;
    width: 170px;
    height: 170px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(6, 54, 136, 0.12), transparent 66%);
    pointer-events: none;
}

.hero-panel h2,
.page-hero-panel h2 {
    margin: 0 0 12px;
    color: var(--text-strong);
    font-size: clamp(1.65rem, 2.5vw, 2.1rem);
    line-height: 1.2;
    letter-spacing: -0.04em;
}

.hero-panel p,
.page-hero-panel p,
.panel-list {
    position: relative;
    z-index: 1;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.75;
}

.panel-kicker,
.section-kicker,
.info-card-kicker {
    display: inline-flex;
    align-items: center;
    min-height: 32px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.panel-kicker,
.section-kicker {
    margin: 0 0 16px;
}

.section-kicker {
    background: var(--primary-soft);
    color: var(--primary-strong);
}

.section-kicker-hero,
.section-kicker-light,
.panel-kicker {
    background: rgba(6, 54, 136, 0.08);
    color: var(--primary-strong);
}

.panel-list {
    margin-top: 20px;
    padding-left: 18px;
}

.panel-list li + li {
    margin-top: 8px;
}

.metric-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px;
    margin-top: 24px;
}

.metric-grid-compact {
    margin-top: 22px;
}

.metric-card {
    padding: 18px;
    border: 1px solid rgba(210, 211, 213, 0.72);
    border-radius: 14px;
    background: rgba(246, 247, 249, 0.96);
}

.metric-value {
    margin: 0 0 10px;
    color: var(--primary-strong);
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-size: 1.36rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.metric-card h3 {
    margin: 0 0 8px;
    color: var(--text-strong);
    font-size: 1rem;
    line-height: 1.35;
}

.metric-description {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.7;
}

.site-section {
    padding: 88px 0;
}

.site-section-compact {
    padding: 22px 0 56px;
}

.site-section-tight {
    padding-top: 34px;
    padding-bottom: 42px;
}

.site-section-muted {
    background:
        radial-gradient(circle at top right, rgba(6, 54, 136, 0.04), transparent 20%),
        radial-gradient(circle at top left, rgba(210, 211, 213, 0.2), transparent 24%),
        linear-gradient(180deg, rgba(244, 245, 247, 0.92) 0%, rgba(255, 255, 255, 0.94) 100%);
}

#sistema.site-section-muted {
    padding-top: 34px;
    padding-bottom: 36px;
}

.site-section-dark {
    background: transparent;
}

.section-heading {
    max-width: 760px;
}

.section-heading-centered {
    margin: 0 auto;
    text-align: center;
}

.section-heading h2,
.final-cta-copy h2 {
    font-size: clamp(1.95rem, 2.75vw, 2.7rem);
}

.section-summary {
    margin: 14px 0 0;
}

.section-body {
    max-width: 64ch;
    margin: 28px 0 0;
}

.section-split {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 34px;
    align-items: center;
}

.home-editorial-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
    gap: 48px;
    align-items: start;
}

.home-text-rail {
    display: grid;
    gap: 28px;
    padding-top: 10px;
}

.home-text-item {
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line);
}

.home-text-item:last-child {
    padding-bottom: 0;
    border-bottom: 0;
}

.home-text-item h3,
.home-flow-item h3 {
    margin: 0 0 10px;
    color: var(--text-strong);
    font-size: 1.18rem;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.home-text-item p,
.home-flow-item p,
.home-quote-support p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.home-section-heading .section-heading {
    max-width: 980px;
}

.home-section-heading .section-heading h2 {
    font-size: clamp(1.78rem, 2.4vw, 2.35rem);
}

.home-section-heading .section-summary {
    max-width: 980px;
}

.home-pillars {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
    margin-top: 24px;
    padding-top: 22px;
    border-top: 1px solid var(--line);
}

.home-pillar {
    padding-right: 18px;
}

.home-pillar:not(:last-child) {
    border-right: 1px solid var(--line);
}

.home-pillar h3 {
    margin: 0 0 12px;
    color: var(--text-strong);
    font-size: 1.18rem;
    line-height: 1.35;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.home-pillar p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.contact-direct-panel {
    margin-top: 32px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
}

.contact-channel-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    margin-top: 28px;
}

.contact-overview-grid {
    margin-top: 28px;
}

.contact-overview-card {
    min-height: 220px;
    padding: 34px 28px;
    text-align: center;
    align-items: center;
}

.contact-overview-card h3 {
    margin: 0 0 10px;
    font-size: clamp(1.32rem, 1.9vw, 1.62rem);
    line-height: 1.25;
    letter-spacing: -0.03em;
}

.contact-overview-card .info-card-kicker {
    margin-bottom: 18px;
}

.contact-overview-card .contact-channel-link {
    justify-content: center;
    margin-bottom: 12px;
}

.contact-overview-card p:last-child,
.contact-overview-text {
    max-width: 28ch;
    margin: 0 auto;
}

.contact-highlight-card {
    padding: 42px 34px;
    text-align: center;
}

.contact-highlight-card h2 {
    margin: 0;
    color: var(--text-strong);
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-size: clamp(1.85rem, 2.4vw, 2.4rem);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.contact-highlight-card p:last-of-type {
    max-width: 42ch;
    margin: 16px auto 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.contact-highlight-actions {
    justify-content: center;
    margin-top: 24px;
}

.contact-channel-card {
    padding: 28px;
    gap: 12px;
}

.contact-channel-card h3 {
    max-width: 18ch;
    margin-bottom: 2px;
    font-size: 1.24rem;
    line-height: 1.3;
    text-wrap: balance;
}

.contact-channel-link {
    display: inline-flex;
    width: fit-content;
    color: var(--text-strong);
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-size: clamp(1.12rem, 1.5vw, 1.32rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    transition: color 0.2s ease;
}

.contact-channel-link:hover {
    color: var(--primary-strong);
}

.contact-channel-card p:last-child {
    max-width: 42ch;
}

.contact-direct-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.contact-direct-item {
    padding-right: 24px;
}

.contact-direct-item:not(:last-child) {
    border-right: 1px solid var(--line);
}

.contact-direct-label {
    display: inline-flex;
    margin-bottom: 12px;
    color: var(--primary-strong);
    font-size: 0.82rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.contact-direct-link {
    display: inline-flex;
    margin-bottom: 14px;
    color: var(--text-strong);
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-size: clamp(1.18rem, 1.6vw, 1.45rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    transition: color 0.2s ease;
}

.contact-direct-link:hover {
    color: var(--primary-strong);
}

.contact-direct-item p {
    max-width: 42ch;
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.home-scope {
    display: block;
}

.home-scope-cards {
    margin-top: 28px;
}

.home-scope-card {
    min-height: 220px;
    padding: 28px;
}

.home-scope-card h3 {
    max-width: 18ch;
    margin: 0 0 14px;
    color: var(--text-strong);
    font-size: 1.18rem;
    line-height: 1.32;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.home-scope-card p {
    margin: 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.home-scope-list {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 16px 26px;
    margin: 20px 0 0;
    padding: 0;
    list-style: none;
}

.home-scope .section-heading {
    max-width: none;
}

.home-scope .section-heading h2 {
    white-space: nowrap;
}

.home-scope-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 74px;
    padding: 10px 0;
    border-bottom: 1px solid rgba(210, 211, 213, 0.88);
    color: var(--text-strong);
    font-weight: 700;
    line-height: 1.55;
}

.home-scope-list li::before {
    content: "";
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: var(--primary);
    flex: none;
}

.home-flow {
    margin-top: 36px;
    border-top: 1px solid var(--line);
}

.home-flow-item {
    display: grid;
    grid-template-columns: 80px minmax(0, 1fr) minmax(0, 0.8fr);
    gap: 26px;
    align-items: start;
    padding: 28px 0;
    border-bottom: 1px solid var(--line);
}

.home-flow-index {
    color: var(--primary-strong);
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-size: 1.1rem;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.home-flow-text {
    max-width: 34ch;
}

.home-quote-block {
    display: grid;
    grid-template-columns: minmax(0, 1.1fr) minmax(0, 0.9fr);
    gap: 36px;
    align-items: center;
    padding: 22px 0;
    border-top: 1px solid var(--line);
    border-bottom: 1px solid var(--line);
}

.home-quote {
    margin: 0;
    color: var(--text-strong);
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-size: clamp(1.7rem, 2.8vw, 2.45rem);
    font-weight: 700;
    line-height: 1.3;
    letter-spacing: -0.04em;
}

.home-quote-support {
    display: grid;
    gap: 16px;
}

.inline-checks {
    display: grid;
    gap: 12px;
    margin-top: 28px;
}

.inline-checks span {
    display: flex;
    align-items: center;
    gap: 12px;
    min-height: 54px;
    padding: 0 18px;
    border: 1px solid rgba(210, 211, 213, 0.8);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.92);
    box-shadow: 0 14px 32px rgba(16, 47, 89, 0.05);
    color: var(--text-strong);
    font-weight: 700;
}

.inline-checks span::before {
    content: "";
    width: 10px;
    height: 10px;
    flex: none;
    border-radius: 999px;
    background: var(--primary);
}

.card-grid,
.card-stack,
.expansion-panels {
    display: grid;
    gap: 22px;
}

.card-grid {
    margin-top: 34px;
}

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

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

.info-card {
    position: relative;
    overflow: hidden;
    padding: 26px;
    border: 1px solid rgba(210, 211, 213, 0.78);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(247, 248, 250, 0.98) 100%);
    box-shadow: var(--shadow-soft);
    transition: transform 0.22s ease, box-shadow 0.22s ease, border-color 0.22s ease;
}

.info-card::before {
    content: "";
    position: absolute;
    inset: 0 auto auto 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, rgba(6, 54, 136, 0.82), rgba(210, 211, 213, 0.92));
    opacity: 0.55;
}

.info-card:hover {
    transform: translateY(-5px);
    border-color: rgba(6, 54, 136, 0.26);
    box-shadow: 0 24px 56px rgba(12, 48, 92, 0.11);
}

.info-card-accent {
    background: linear-gradient(180deg, rgba(245, 246, 248, 0.92) 0%, rgba(255, 255, 255, 0.98) 100%);
}

.info-card-kicker {
    margin: 0 0 14px;
    background: rgba(6, 54, 136, 0.08);
    color: var(--primary-strong);
}

.info-card h3 {
    margin: 0 0 12px;
    color: var(--text-strong);
    font-size: 1.16rem;
    line-height: 1.35;
    letter-spacing: -0.03em;
}

.info-card p {
    margin: 0;
}

.text-link {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 18px;
    color: var(--primary-strong);
    font-weight: 800;
}

.text-link::after {
    content: "->";
    font-size: 0.9rem;
}

.expansion-layout {
    position: relative;
    overflow: hidden;
    display: grid;
    grid-template-columns: minmax(0, 1.02fr) minmax(0, 0.98fr);
    gap: 30px;
    padding: 42px;
    border-radius: 22px;
    background: linear-gradient(135deg, #052f76 0%, #063688 56%, #1e4b98 100%);
    box-shadow: var(--shadow-strong);
}

.expansion-layout::before {
    content: "";
    position: absolute;
    right: -90px;
    top: -90px;
    width: 260px;
    height: 260px;
    border-radius: 999px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.18), transparent 66%);
    pointer-events: none;
}

.expansion-layout .section-heading h2,
.expansion-layout .section-summary,
.expansion-layout .section-body,
.roadmap-card h3,
.roadmap-list strong {
    color: #ffffff;
}

.expansion-layout .section-summary,
.expansion-layout .section-body,
.roadmap-list span {
    color: var(--text-on-blue);
}

.expansion-layout .section-kicker {
    background: rgba(255, 255, 255, 0.14);
    color: #ffffff;
}

.roadmap-card {
    position: relative;
    z-index: 1;
    padding: 28px;
    border: 1px solid rgba(255, 255, 255, 0.16);
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(14px);
}

.roadmap-card h3 {
    margin: 0;
    font-size: 1.4rem;
    line-height: 1.32;
    letter-spacing: -0.03em;
}

.roadmap-list {
    display: grid;
    gap: 14px;
    margin: 24px 0 0;
    padding: 0;
    list-style: none;
}

.roadmap-list li {
    display: grid;
    gap: 8px;
    padding: 18px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.06);
}

.expansion-layout .metric-card {
    border-color: rgba(255, 255, 255, 0.16);
    background: rgba(255, 255, 255, 0.12);
}

.expansion-layout .metric-value,
.expansion-layout .metric-card h3 {
    color: #ffffff;
}

.expansion-layout .metric-description {
    color: rgba(255, 255, 255, 0.78);
}

.final-cta-card {
    padding: 42px 34px;
}

.final-cta-copy p {
    max-width: 42ch;
    margin: 16px auto 0;
    color: var(--text-soft);
    line-height: 1.8;
}

.final-cta-copy .section-kicker {
    margin-bottom: 14px;
}

.final-cta-copy h2 {
    font-size: clamp(1.85rem, 2.4vw, 2.4rem);
    line-height: 1.18;
    letter-spacing: -0.04em;
}

.final-cta-actions {
    margin-top: 24px;
    display: grid;
    grid-template-columns: repeat(2, minmax(220px, 1fr));
    width: min(100%, 460px);
    gap: 14px;
    justify-content: center;
    margin-left: auto;
    margin-right: auto;
}

.final-cta-actions .button {
    width: 100%;
}

.empty-state {
    max-width: 760px;
    padding: 40px;
    border: 1px solid rgba(210, 211, 213, 0.82);
    border-radius: 18px;
    background: rgba(255, 255, 255, 0.94);
    box-shadow: var(--shadow-card);
}

.empty-state h1 {
    font-size: clamp(2.3rem, 3.4vw, 3.5rem);
}

.site-footer {
    margin-top: 12px;
    padding: 34px 0 42px;
    border-top: 1px solid rgba(210, 211, 213, 0.18);
    background:
        radial-gradient(circle at top right, rgba(210, 211, 213, 0.08), transparent 18%),
        linear-gradient(180deg, #3a3f45 0%, #2c3136 100%);
    color: rgba(255, 255, 255, 0.8);
}

.footer-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.4fr) repeat(2, minmax(0, 1fr));
    gap: 28px;
}

.footer-brand {
    max-width: 560px;
}

.footer-brand p {
    margin: 10px 0 0;
    color: rgba(255, 255, 255, 0.64);
}

.footer-column h2 {
    margin: 0 0 16px;
    font-family: "Plus Jakarta Sans", "Manrope", sans-serif;
    font-size: 0.78rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(210, 211, 213, 0.62);
}

.footer-link {
    display: block;
    margin-bottom: 12px;
    color: rgba(255, 255, 255, 0.7);
    transition: color 0.2s ease;
}

.footer-link:hover,
.footer-link.active {
    color: #ffffff;
}

@keyframes fade-up {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1180px) {
    .header-content {
        grid-template-columns: 1fr;
        padding: 14px 0 18px;
    }

    .site-nav {
        justify-content: flex-start;
        margin-left: 0;
    }

    .page-hero-layout,
    .home-editorial-grid,
    .home-scope,
    .section-split,
    .expansion-layout,
    .footer-layout,
    .final-cta-card {
        grid-template-columns: 1fr;
    }

    .card-grid-4 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 900px) {
    .container {
        width: min(100% - 28px, var(--container-width));
    }

    .card-grid-3,
    .card-grid-4,
    .metric-grid,
    .home-quote-block,
    .home-scope-list,
    .home-pillars,
    .contact-direct-grid,
    .contact-channel-grid {
        grid-template-columns: 1fr;
    }

    .home-flow-item {
        grid-template-columns: 1fr;
        gap: 14px;
    }

    .hero-copy h1,
    .page-hero-copy h1 {
        max-width: none;
    }

    .hero-layout {
        min-height: 360px;
        padding-top: 40px;
        padding-bottom: 24px;
    }

    .hero-banner {
        min-height: 360px;
    }

    .hero-copy h1 {
        white-space: normal;
    }

    .home-pillar {
        padding-right: 0;
        border-right: 0;
    }

    .contact-direct-item {
        padding-right: 0;
    }

    .contact-direct-item:not(:last-child) {
        padding-bottom: 22px;
        border-right: 0;
        border-bottom: 1px solid var(--line);
    }

    .home-pillar:not(:last-child) {
        border-right: 0;
    }

    .site-section,
    .site-section-tight {
        padding: 76px 0;
    }

    .site-section-compact {
        padding: 22px 0 56px;
    }

    .page-hero-section {
        padding: 22px 0 74px;
    }

    .home-scope .section-heading h2 {
        white-space: normal;
    }
}

@media (max-width: 640px) {
    .brand-logo {
        height: 48px;
    }

    .brand-tagline {
        display: none;
    }

    .hero-actions,
    .final-cta-actions {
        width: 100%;
        flex-direction: column;
    }

    .button {
        width: 100%;
    }

    .final-cta-actions {
        grid-template-columns: 1fr;
        width: 100%;
    }

    .hero-highlights {
        display: grid;
        gap: 10px;
        flex-wrap: wrap;
    }

    .hero-highlights li {
        white-space: normal;
    }

    .hero-banner {
        min-height: 320px;
    }

    .hero-layout {
        min-height: 320px;
        padding-top: 30px;
        padding-bottom: 20px;
    }

    .hero-copy {
        padding-right: 0;
    }

    .hero-panel,
    .page-hero-panel,
    .expansion-layout,
    .roadmap-card,
    .final-cta-card,
    .empty-state {
        padding: 24px;
    }
}
