:root {
    --bg: #f5f1e8;
    --bg-strong: #102133;
    --surface: rgba(255, 252, 247, 0.88);
    --surface-solid: #fffdf8;
    --surface-dark: #172a3f;
    --ink: #102133;
    --muted: #596575;
    --muted-strong: #d7e0ea;
    --accent: #d5652a;
    --accent-deep: #a84516;
    --line: rgba(16, 33, 51, 0.12);
    --line-strong: rgba(16, 33, 51, 0.2);
    --shadow: 0 20px 60px rgba(16, 33, 51, 0.1);
    --shadow-soft: 0 14px 35px rgba(16, 33, 51, 0.08);
    --radius: 28px;
    --container: min(1180px, calc(100% - 40px));
}

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

html {
    scroll-behavior: smooth;
}

body {
    margin: 0;
    color: var(--ink);
    font-family: "Manrope", sans-serif;
    background:
        radial-gradient(circle at top right, rgba(213, 101, 42, 0.16), transparent 28%),
        radial-gradient(circle at left 20%, rgba(16, 33, 51, 0.06), transparent 22%),
        linear-gradient(180deg, #f8f4ec 0%, #f5f1e8 48%, #efe8dd 100%);
}

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

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

p,
li {
    line-height: 1.7;
}

.site-shell {
    min-height: 100vh;
}

.container {
    width: var(--container);
    margin: 0 auto;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    backdrop-filter: blur(16px);
    background: rgba(245, 241, 232, 0.8);
    border-bottom: 1px solid rgba(16, 33, 51, 0.08);
}

.header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 16px 0;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    min-width: 0;
}

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

.brand-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.brand-text strong {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: 1.3rem;
    letter-spacing: 0.04em;
}

.brand-text small {
    color: var(--muted);
    font-size: 0.88rem;
}

.main-nav {
    display: flex;
    align-items: center;
    gap: 24px;
    font-size: 0.98rem;
    color: var(--muted);
}

.main-nav a {
    position: relative;
}

.main-nav a::after {
    content: "";
    position: absolute;
    left: 0;
    bottom: -4px;
    width: 100%;
    height: 2px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.25s ease;
}

.main-nav a:hover::after,
.main-nav a:focus-visible::after {
    transform: scaleX(1);
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    min-height: 48px;
    padding: 0 22px;
    border-radius: 999px;
    border: 1px solid transparent;
    font-weight: 700;
    transition: transform 0.2s ease, background-color 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

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

.button-small {
    min-height: 42px;
    padding: 0 18px;
    font-size: 0.95rem;
}

.button-accent {
    background: linear-gradient(135deg, var(--accent) 0%, #ee8c4e 100%);
    color: #fffaf7;
    box-shadow: 0 14px 30px rgba(213, 101, 42, 0.26);
}

.button-accent:hover,
.button-accent:focus-visible {
    background: linear-gradient(135deg, #c25722 0%, #e17d3f 100%);
}

.button-ghost {
    border-color: var(--line-strong);
    background: rgba(255, 255, 255, 0.55);
    color: var(--ink);
}

.hero {
    padding: 54px 0 32px;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.15fr 0.85fr;
    gap: 28px;
    align-items: stretch;
}

.hero-copy,
.hero-panel,
.section-soft .feature-card,
.insight-card,
.news-card,
.cta-box,
.route-card,
.timeline-item,
.article-card,
.article-layout,
.topic-panel,
.list-panel {
    background: var(--surface);
    border: 1px solid rgba(255, 255, 255, 0.58);
    box-shadow: var(--shadow);
}

.hero-copy,
.hero-panel {
    border-radius: calc(var(--radius) + 8px);
    padding: 38px;
}

.eyebrow {
    margin: 0 0 12px;
    color: var(--accent-deep);
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.8rem;
}

h1,
h2,
h3 {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    margin: 0 0 14px;
    line-height: 1.05;
    text-wrap: balance;
}

h1 {
    font-size: clamp(2.9rem, 6vw, 5.8rem);
    max-width: 11ch;
}

h2 {
    font-size: clamp(2rem, 4vw, 3.3rem);
    max-width: 15ch;
}

h3 {
    font-size: clamp(1.35rem, 2vw, 1.8rem);
}

.hero-lead,
.section-heading p,
.split-copy p,
.status-card p,
.cta-box p,
.article-intro {
    color: var(--muted);
    font-size: 1.06rem;
}

.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin: 28px 0 24px;
}

.hero-points {
    margin: 0;
    padding: 0;
    list-style: none;
    display: grid;
    gap: 12px;
}

.hero-points li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    color: var(--ink);
}

.hero-points li::before {
    content: "•";
    flex: none;
    color: var(--accent);
    font-size: 1.4rem;
    line-height: 1;
}

.status-card {
    border-radius: var(--radius);
    padding: 24px;
    background: linear-gradient(180deg, rgba(16, 33, 51, 0.95), rgba(23, 42, 63, 0.98));
    color: #f6f3ec;
}

.status-card h2 {
    max-width: 12ch;
}

.status-chip {
    display: inline-flex;
    padding: 7px 12px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.1);
    color: #ffd4bd;
    font-size: 0.85rem;
    margin-bottom: 14px;
}

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

.mini-card {
    padding: 20px;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.78);
}

.mini-card p {
    margin: 10px 0 0;
    color: var(--muted);
    font-size: 0.95rem;
}

.section {
    padding: 34px 0 28px;
}

.section-soft {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.28), rgba(255, 255, 255, 0.1));
}

.section-contrast {
    background: linear-gradient(180deg, #102133 0%, #172a3f 100%);
    color: #f7f4ed;
}

.section-contrast .eyebrow,
.section-contrast p {
    color: var(--muted-strong);
}

.section-contrast .timeline-item {
    background: rgba(255, 255, 255, 0.07);
    border-color: rgba(255, 255, 255, 0.08);
    box-shadow: none;
}

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

.section-heading-row {
    display: flex;
    justify-content: space-between;
    align-items: end;
    gap: 20px;
    max-width: none;
}

.card-grid {
    display: grid;
    gap: 20px;
}

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

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

.feature-card,
.insight-card {
    border-radius: var(--radius);
    padding: 26px;
}

.feature-index {
    display: inline-flex;
    margin-bottom: 18px;
    color: var(--accent-deep);
    font-weight: 800;
    letter-spacing: 0.08em;
}

.split-layout {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 24px;
    align-items: start;
}

.bullet-list {
    margin: 18px 0 0;
    padding-left: 22px;
}

.panel-stack {
    display: grid;
    gap: 16px;
}

.route-card {
    padding: 24px;
    border-radius: var(--radius);
}

.chip-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 18px;
}

.chip {
    display: inline-flex;
    align-items: center;
    min-height: 38px;
    padding: 0 14px;
    border-radius: 999px;
    background: rgba(16, 33, 51, 0.06);
    border: 1px solid rgba(16, 33, 51, 0.08);
    color: var(--ink);
    font-size: 0.95rem;
}

.timeline {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 18px;
}

.timeline-item {
    border-radius: var(--radius);
    padding: 26px;
}

.timeline-item span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 46px;
    height: 46px;
    border-radius: 50%;
    background: rgba(213, 101, 42, 0.18);
    color: #ffd0b5;
    font-weight: 800;
    margin-bottom: 18px;
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
}

.news-card {
    border-radius: var(--radius);
    padding: 24px;
}

.news-card h3 {
    margin-bottom: 12px;
}

.news-card h3 a:hover,
.news-card h3 a:focus-visible,
.article-card h3 a:hover,
.article-card h3 a:focus-visible {
    color: var(--accent-deep);
}

.news-meta,
.meta-row,
.article-meta {
    color: var(--muted);
    font-size: 0.92rem;
}

.faq-grid {
    display: grid;
    grid-template-columns: 0.8fr 1.2fr;
    gap: 24px;
    align-items: start;
}

.faq-list {
    display: grid;
    gap: 14px;
}

.faq-list details {
    border: 1px solid var(--line);
    border-radius: 22px;
    background: rgba(255, 255, 255, 0.52);
    padding: 18px 20px;
}

.faq-list summary {
    cursor: pointer;
    font-weight: 700;
    list-style: none;
}

.faq-list summary::-webkit-details-marker {
    display: none;
}

.faq-list p {
    margin: 14px 0 0;
    color: var(--muted);
}

.section-cta {
    padding-bottom: 48px;
}

.cta-box {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 26px;
    align-items: center;
    border-radius: calc(var(--radius) + 10px);
    padding: 32px;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.site-footer {
    border-top: 1px solid rgba(16, 33, 51, 0.08);
    background: rgba(16, 33, 51, 0.04);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr 1fr;
    gap: 24px;
    align-items: center;
    padding: 24px 0 36px;
}

.brand-footer .brand-text small,
.footer-contacts p {
    color: var(--muted);
}

.footer-links {
    display: flex;
    flex-wrap: wrap;
    gap: 16px;
    justify-content: center;
}

.footer-contacts {
    text-align: right;
}

.footer-contacts a {
    font-weight: 700;
}

.page-hero {
    padding: 48px 0 26px;
}

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

.breadcrumb {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 18px;
    color: var(--muted);
    font-size: 0.92rem;
}

.article-list {
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 22px;
}

.list-panel,
.topic-panel {
    border-radius: calc(var(--radius) + 4px);
    padding: 26px;
}

.article-cards {
    display: grid;
    gap: 18px;
}

.article-card {
    border-radius: var(--radius);
    padding: 24px;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-soft);
}

.article-card p {
    color: var(--muted);
}

.article-layout {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 320px;
    gap: 22px;
    border-radius: calc(var(--radius) + 4px);
    padding: 30px;
    margin-bottom: 32px;
}

.article-main {
    min-width: 0;
}

.article-title {
    max-width: 14ch;
}

.article-main p,
.article-main li {
    color: #243242;
    font-size: 1.02rem;
}

.article-main h2 {
    margin-top: 34px;
    max-width: 14ch;
}

.article-main ul,
.article-main ol {
    padding-left: 22px;
}

.article-aside {
    display: grid;
    gap: 16px;
    align-content: start;
}

.aside-card {
    border-radius: 24px;
    padding: 22px;
    background: rgba(16, 33, 51, 0.96);
    color: #f7f2ea;
}

.aside-card p,
.aside-card li {
    color: rgba(247, 242, 234, 0.82);
}

.aside-card ul {
    margin: 14px 0 0;
    padding-left: 18px;
}

.aside-card-light {
    background: rgba(255, 255, 255, 0.72);
    color: var(--ink);
    border: 1px solid var(--line);
}

.aside-card-light p,
.aside-card-light li {
    color: var(--muted);
}

.note-box {
    border-left: 4px solid var(--accent);
    background: rgba(213, 101, 42, 0.08);
    border-radius: 0 22px 22px 0;
    padding: 18px 20px;
    margin: 22px 0;
}

.reveal {
    animation: rise 0.8s ease both;
}

.reveal-delay {
    animation-delay: 0.1s;
}

.reveal-delay-2 {
    animation-delay: 0.2s;
}

.reveal-delay-3 {
    animation-delay: 0.3s;
}

@keyframes rise {
    from {
        opacity: 0;
        transform: translateY(18px);
    }

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

body.page-home {
    background:
        linear-gradient(180deg, #08131d 0%, #0d1d2b 32%, #e8dfd1 32%, #f4ede3 100%);
}

.page-home .site-shell {
    position: relative;
    overflow: hidden;
}

.page-home .site-shell::before {
    content: "";
    position: absolute;
    inset: 0 0 auto 0;
    height: 760px;
    pointer-events: none;
    background:
        linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
        linear-gradient(rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 72px 72px;
    mask-image: linear-gradient(180deg, rgba(0, 0, 0, 1), transparent 85%);
    opacity: 0.55;
}

.page-home .site-header {
    background: rgba(8, 19, 29, 0.72);
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .brand-text strong,
.page-home .footer-contacts a {
    color: #f6edde;
}

.page-home .brand-text small,
.page-home .main-nav,
.page-home .footer-links,
.page-home .footer-contacts p {
    color: rgba(246, 237, 222, 0.72);
}

.page-home .main-nav a::after {
    background: #ff9d69;
}

.page-home .button-accent {
    background: linear-gradient(135deg, #df6d32 0%, #ff9a62 100%);
    box-shadow: 0 18px 36px rgba(223, 109, 50, 0.24);
}

.page-home .button-ghost {
    background: rgba(16, 33, 51, 0.04);
    border-color: rgba(16, 33, 51, 0.16);
    color: var(--ink);
}

.page-home .button-ghost:hover,
.page-home .button-ghost:focus-visible {
    background: rgba(16, 33, 51, 0.08);
}

.page-home .home-hero .button-ghost,
.page-home .cta-box .button-ghost {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.15);
    color: #f7efe2;
}

.page-home .home-hero .button-ghost:hover,
.page-home .home-hero .button-ghost:focus-visible,
.page-home .cta-box .button-ghost:hover,
.page-home .cta-box .button-ghost:focus-visible {
    background: rgba(255, 255, 255, 0.1);
}

.page-home .home-main {
    position: relative;
}

.page-home .home-hero {
    padding: 34px 0 44px;
}

.page-home .home-hero-shell {
    position: relative;
    padding: 34px;
    border-radius: 40px;
    background:
        radial-gradient(circle at top right, rgba(255, 154, 98, 0.22), transparent 24%),
        linear-gradient(145deg, rgba(11, 25, 37, 0.98), rgba(17, 36, 53, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 32px 90px rgba(6, 12, 18, 0.28);
    overflow: hidden;
}

.page-home .home-hero-shell::after {
    content: "";
    position: absolute;
    inset: auto -120px -120px auto;
    width: 360px;
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 154, 98, 0.12), transparent 68%);
    pointer-events: none;
}

.page-home .hero-grid {
    grid-template-columns: minmax(0, 1.08fr) minmax(340px, 0.92fr);
    gap: 30px;
    align-items: start;
}

.page-home .hero-copy,
.page-home .hero-panel {
    background: transparent;
    border: 0;
    box-shadow: none;
    padding: 0;
}

.page-home .hero-copy,
.page-home .hero-panel,
.page-home .hero-ribbon {
    position: relative;
    z-index: 1;
}

.page-home .eyebrow {
    color: #ffb98f;
}

.page-home h1 {
    max-width: 12ch;
    color: #f7efe2;
    letter-spacing: -0.03em;
}

.page-home .hero-lead {
    max-width: 60ch;
    color: rgba(247, 239, 226, 0.74);
}

.page-home .hero-stat-row {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
    margin: 30px 0 24px;
}

.page-home .hero-stat {
    display: grid;
    gap: 8px;
    padding: 16px 16px 18px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 22px 22px 8px 22px;
}

.page-home .hero-stat strong {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: 2rem;
    line-height: 1;
    color: #fff5ea;
}

.page-home .hero-stat span {
    color: rgba(247, 239, 226, 0.72);
    font-size: 0.92rem;
}

.page-home .hero-points {
    gap: 14px;
}

.page-home .hero-points li {
    color: #f5eadd;
}

.page-home .hero-points li::before {
    color: #ff9d69;
}

.page-home .hero-manifest {
    padding: 24px;
    border-radius: 30px 30px 10px 30px;
    background:
        linear-gradient(180deg, rgba(255, 249, 239, 0.98), rgba(244, 235, 223, 0.96));
    border: 1px solid rgba(16, 33, 51, 0.08);
    box-shadow: 0 24px 60px rgba(7, 15, 23, 0.2);
}

.page-home .manifest-head {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 12px;
    margin-bottom: 18px;
}

.page-home .manifest-tag,
.page-home .manifest-status {
    display: inline-flex;
    align-items: center;
    min-height: 34px;
    padding: 0 12px;
    border-radius: 999px;
    font-size: 0.84rem;
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.page-home .manifest-tag {
    background: rgba(16, 33, 51, 0.08);
    color: var(--ink);
}

.page-home .manifest-status {
    background: rgba(223, 109, 50, 0.12);
    color: var(--accent-deep);
}

.page-home .hero-manifest h2 {
    max-width: 11ch;
    color: var(--ink);
}

.page-home .hero-manifest p {
    color: var(--muted);
}

.page-home .manifest-lines {
    display: grid;
    gap: 12px;
    margin-top: 22px;
}

.page-home .manifest-line {
    display: grid;
    grid-template-columns: 108px 1fr;
    gap: 14px;
    padding-top: 12px;
    border-top: 1px solid rgba(16, 33, 51, 0.1);
}

.page-home .manifest-line strong {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: 1.2rem;
}

.page-home .manifest-line span {
    color: var(--muted);
    font-size: 0.95rem;
}

.page-home .hero-ribbon {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 28px;
    padding-top: 22px;
    border-top: 1px solid rgba(255, 255, 255, 0.12);
}

.page-home .hero-ribbon span {
    display: inline-flex;
    align-items: center;
    min-height: 42px;
    padding: 0 16px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: rgba(247, 239, 226, 0.88);
    font-size: 0.94rem;
}

.page-home .section {
    padding: 70px 0;
}

.page-home .home-services,
.page-home .home-insights,
.page-home .home-news,
.page-home .home-faq,
.page-home .section-cta {
    background: transparent;
}

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

.page-home .service-columns {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 18px;
}

.page-home .service-column {
    position: relative;
    min-height: 290px;
    padding: 26px;
    border-radius: 28px 28px 8px 28px;
    background: rgba(255, 249, 240, 0.92);
    border: 1px solid rgba(16, 33, 51, 0.1);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.page-home .service-column::after {
    content: attr(data-code);
    position: absolute;
    right: 18px;
    bottom: 8px;
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: 4.6rem;
    line-height: 1;
    color: rgba(16, 33, 51, 0.06);
    pointer-events: none;
}

.page-home .service-column-dark {
    background: linear-gradient(180deg, rgba(16, 33, 51, 0.98), rgba(24, 48, 74, 0.98));
    border-color: rgba(255, 255, 255, 0.06);
}

.page-home .service-column-dark::after {
    color: rgba(255, 255, 255, 0.08);
}

.page-home .service-column-dark h3 {
    color: #f7efe2;
}

.page-home .service-column-dark p {
    color: rgba(247, 239, 226, 0.74);
}

.page-home .service-kicker {
    margin: 0 0 14px;
    color: var(--accent-deep);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-size: 0.82rem;
    font-weight: 800;
}

.page-home .service-column-dark .service-kicker {
    color: #ffbf98;
}

.page-home .service-column h3,
.page-home .insight-card h3 {
    max-width: 11ch;
}

.page-home .home-routes-grid {
    display: grid;
    grid-template-columns: minmax(0, 0.94fr) minmax(0, 1.06fr);
    gap: 24px;
    align-items: start;
}

.page-home .route-intro {
    padding-top: 8px;
}

.page-home .route-board {
    display: grid;
    gap: 16px;
}

.page-home .route-board-item {
    padding: 24px;
    border-radius: 28px 28px 8px 28px;
    background: linear-gradient(180deg, rgba(16, 33, 51, 0.98), rgba(22, 42, 63, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 22px 44px rgba(16, 33, 51, 0.16);
}

.page-home .route-board-head {
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    gap: 14px;
    margin-bottom: 16px;
}

.page-home .route-board-head span {
    color: rgba(247, 239, 226, 0.62);
    font-size: 0.9rem;
}

.page-home .route-board-head strong {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: 1.16rem;
    color: #fff0e0;
}

.page-home .route-board .chip {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(255, 255, 255, 0.08);
    color: #f8efe3;
}

.page-home .home-process {
    background: linear-gradient(180deg, #0b1724 0%, #12283b 100%);
}

.page-home .process-shell {
    display: grid;
    gap: 28px;
}

.page-home .process-summary {
    max-width: 840px;
}

.page-home .process-summary h2 {
    max-width: 14ch;
    color: #f7efe2;
}

.page-home .process-summary p {
    color: rgba(247, 239, 226, 0.72);
}

.page-home .home-process .timeline {
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 16px;
}

.page-home .home-process .timeline-item {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.08), rgba(255, 255, 255, 0.03));
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: none;
    border-radius: 28px 28px 8px 28px;
}

.page-home .home-process .timeline-item h3 {
    color: #fff1e2;
}

.page-home .home-process .timeline-item p {
    color: rgba(247, 239, 226, 0.72);
}

.page-home .home-process .timeline-item span {
    background: rgba(255, 157, 105, 0.18);
    color: #ffd5bc;
}

.page-home .insight-strip {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
}

.page-home .insight-card {
    padding: 28px;
    border-radius: 28px 28px 8px 28px;
    background: rgba(255, 249, 240, 0.9);
    border: 1px solid rgba(16, 33, 51, 0.1);
    box-shadow: var(--shadow-soft);
}

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

.page-home .news-column {
    display: grid;
    gap: 18px;
}

.page-home .news-card {
    position: relative;
    padding: 26px;
    border-radius: 28px 28px 8px 28px;
    background: rgba(255, 249, 240, 0.92);
    border: 1px solid rgba(16, 33, 51, 0.12);
    box-shadow: var(--shadow-soft);
    overflow: hidden;
}

.page-home .news-card::before {
    content: "";
    position: absolute;
    inset: 0 0 auto;
    height: 4px;
    background: linear-gradient(90deg, #df6d32, #102133);
}

.page-home .news-card-featured {
    min-height: 100%;
    background: linear-gradient(180deg, rgba(16, 33, 51, 0.98), rgba(24, 48, 74, 0.98));
    border-color: rgba(255, 255, 255, 0.08);
}

.page-home .news-card-featured::before {
    background: linear-gradient(90deg, #ff9d69, #ffd3b8);
}

.page-home .news-card-featured h3 a,
.page-home .news-card-featured p,
.page-home .news-card-featured .news-meta {
    color: #f8efe3;
}

.page-home .news-card-featured h3 a:hover,
.page-home .news-card-featured h3 a:focus-visible {
    color: #ffbe99;
}

.page-home .news-card-featured p {
    color: rgba(248, 239, 227, 0.76);
}

.page-home .news-link {
    display: inline-flex;
    align-items: center;
    margin-top: 16px;
    color: var(--accent-deep);
    font-weight: 800;
}

.page-home .news-card-featured .news-link {
    color: #ffbe99;
}

.page-home .home-faq .faq-list details {
    border-radius: 24px 24px 8px 24px;
    background: rgba(255, 249, 240, 0.9);
    border-color: rgba(16, 33, 51, 0.1);
}

.page-home .home-faq .faq-list summary {
    font-family: "IBM Plex Sans Condensed", sans-serif;
    font-size: 1.24rem;
}

.page-home .cta-box {
    background: linear-gradient(135deg, rgba(16, 33, 51, 0.98), rgba(28, 53, 80, 0.98));
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 32px;
    box-shadow: 0 30px 80px rgba(11, 20, 30, 0.22);
}

.page-home .cta-box h2 {
    color: #f7efe2;
}

.page-home .cta-box p,
.page-home .cta-box .eyebrow {
    color: rgba(247, 239, 226, 0.76);
}

.page-home .site-footer {
    background: #0b1724;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.page-home .brand-footer .brand-text small {
    color: rgba(246, 237, 222, 0.66);
}

@media (max-width: 1040px) {
    .hero-grid,
    .split-layout,
    .faq-grid,
    .article-list,
    .article-layout,
    .cta-box,
    .footer-grid {
        grid-template-columns: 1fr;
    }

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

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

    .footer-contacts {
        text-align: left;
    }

    .footer-links {
        justify-content: flex-start;
    }

    .page-home .service-columns,
    .page-home .insight-strip,
    .page-home .news-layout,
    .page-home .home-routes-grid,
    .page-home .home-process .timeline,
    .page-home .hero-stat-row {
        grid-template-columns: 1fr 1fr;
    }

    .page-home .news-card-featured,
    .page-home .news-column {
        min-height: 0;
    }
}

@media (max-width: 760px) {
    :root {
        --container: min(100% - 28px, 1180px);
    }

    .site-header {
        position: static;
    }

    .header-row {
        flex-wrap: wrap;
    }

    .main-nav {
        order: 3;
        width: 100%;
        overflow-x: auto;
        padding-bottom: 4px;
    }

    .hero-copy,
    .hero-panel,
    .feature-card,
    .insight-card,
    .news-card,
    .cta-box,
    .route-card,
    .timeline-item,
    .list-panel,
    .topic-panel,
    .article-layout {
        padding: 22px;
    }

    h1 {
        max-width: 100%;
        font-size: clamp(2.5rem, 14vw, 4rem);
    }

    h2 {
        max-width: 100%;
    }

    .section-heading-row {
        align-items: start;
    }

    .news-grid,
    .card-grid-2,
    .card-grid-3,
    .timeline,
    .mini-grid {
        grid-template-columns: 1fr;
    }

    .hero-actions,
    .cta-actions {
        flex-direction: column;
    }

    .button,
    .button-small {
        width: 100%;
    }

    .page-home .site-shell::before {
        height: 540px;
        background-size: 42px 42px;
    }

    .page-home .home-hero {
        padding-top: 18px;
    }

    .page-home .home-hero-shell {
        padding: 22px;
        border-radius: 30px;
    }

    .page-home .service-columns,
    .page-home .insight-strip,
    .page-home .news-layout,
    .page-home .news-column,
    .page-home .home-routes-grid,
    .page-home .home-process .timeline,
    .page-home .hero-stat-row {
        grid-template-columns: 1fr;
    }

    .page-home .manifest-line {
        grid-template-columns: 1fr;
    }

    .page-home .route-board-head {
        flex-direction: column;
        align-items: flex-start;
    }
}

@media (prefers-reduced-motion: reduce) {
    html {
        scroll-behavior: auto;
    }

    .reveal {
        animation: none;
    }

    .button {
        transition: none;
    }
}
