@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Light.woff2') format('woff2');
    font-weight: 300;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Medium.woff2') format('woff2');
    font-weight: 500;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-SemiBold.woff2') format('woff2');
    font-weight: 600;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'DM Sans';
    src: url('../fonts/DMSans-Bold.woff2') format('woff2');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'JetBrains Mono';
    src: url('../fonts/JetBrainsMono-Regular.woff2') format('woff2');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

*,
*::before,
*::after {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #344256;
    background-color: #F7F9FB;
    margin: 0;
    padding: 0;
}

body.subpage {
    padding-top: 64px;
}

img {
    max-width: 100%;
    height: auto;
}

a {
    text-decoration: none;
    transition: color 0.2s ease;
}

.pl-mono {
    font-family: 'JetBrains Mono', 'Fira Code', 'Courier New', monospace;
    font-size: 13px;
    line-height: 1.6;
}

/* =========================================
   TYPOGRAPHY
   ========================================= */

h1, h2, h3, h4, h5, h6 {
    font-family: 'DM Sans', 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    font-weight: 700;
    color: #0C1829;
    margin-top: 0;
}

.pl-h1-hero {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #EDF2F7;
}

.pl-h1-sub {
    font-size: 42px;
    font-weight: 700;
    line-height: 1.18;
    letter-spacing: -0.015em;
    color: #EDF2F7;
}

.pl-h2 {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.24;
    letter-spacing: -0.01em;
    color: #0C1829;
}

.pl-h2-dark {
    font-size: 34px;
    font-weight: 600;
    line-height: 1.24;
    letter-spacing: -0.01em;
    color: #EDF2F7;
}

.pl-h3 {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: #0C1829;
}

.pl-h3-dark {
    font-size: 22px;
    font-weight: 600;
    line-height: 1.35;
    letter-spacing: -0.005em;
    color: #EDF2F7;
}

.pl-h4 {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #0C1829;
}

.pl-body {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #344256;
}

.pl-body-dark {
    font-size: 16px;
    font-weight: 400;
    line-height: 1.7;
    color: #A8BDD4;
}

.pl-body-sm {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #344256;
}

.pl-body-sm-dark {
    font-size: 14px;
    font-weight: 400;
    line-height: 1.6;
    color: #A8BDD4;
}

.pl-caption {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #64748B;
    text-transform: uppercase;
}

.pl-caption-dark {
    font-size: 12px;
    font-weight: 500;
    line-height: 1.5;
    letter-spacing: 0.05em;
    color: #5F7A96;
    text-transform: uppercase;
}

.pl-metric {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #0891B2;
}

.pl-muted {
    color: #64748B;
}

.pl-muted-dark {
    color: #5F7A96;
}

/* =========================================
   BUTTONS
   ========================================= */

.pl-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 28px;
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    letter-spacing: 0.015em;
    border-radius: 6px;
    border: none;
    cursor: pointer;
    transition: background 0.2s ease, color 0.2s ease, border-color 0.2s ease;
    white-space: nowrap;
    text-decoration: none;
}

.pl-btn-primary {
    background: #0891B2;
    color: #FFFFFF;
    border: none;
}

.pl-btn-primary:hover {
    background: #0772A0;
    color: #FFFFFF;
}

.pl-btn-outline-light {
    background: transparent;
    color: #0C1829;
    border: 1.5px solid #0C1829;
}

.pl-btn-outline-light:hover {
    background: #0C1829;
    color: #FFFFFF;
}

.pl-btn-outline-dark {
    background: transparent;
    color: #EDF2F7;
    border: 1.5px solid rgba(255, 255, 255, 0.28);
}

.pl-btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.09);
    color: #EDF2F7;
}

.pl-btn-ghost {
    background: transparent;
    color: #0891B2;
    border: none;
    padding: 8px 20px;
}

.pl-btn-ghost:hover {
    color: #0772A0;
}

.pl-btn-sm {
    padding: 8px 20px;
    font-size: 14px;
}

/* =========================================
   NAVIGATION
   ========================================= */

.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 64px;
    transition: background 0.3s ease, box-shadow 0.3s ease;
}

.site-header.nav-transparent {
    background: transparent;
}

.site-header.nav-solid {
    background: #0C1829;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.site-header.scrolled {
    background: rgba(12, 24, 41, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3);
}

.site-header .nav-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 64px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.site-header .nav-logo {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: #EDF2F7;
    letter-spacing: -0.02em;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-shrink: 0;
}

.site-header .nav-logo img {
    height: 36px;
    width: auto;
}

.site-header .nav-logo:hover {
    color: #EDF2F7;
    opacity: 0.9;
}

.site-header .nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    list-style: none;
    margin: 0;
    padding: 0;
}

.site-header .nav-links a {
    font-size: 15px;
    font-weight: 500;
    letter-spacing: 0.01em;
    color: #A8BDD4;
    padding: 10px 14px;
    border-radius: 6px;
    transition: color 0.2s ease;
    text-decoration: none;
}

.site-header .nav-links a:hover {
    color: #EDF2F7;
}

.site-header .nav-links a.active {
    color: #0891B2;
}

.nav-cta,
.site-header .nav-links .nav-cta,
.site-header .nav-links .nav-cta:hover,
.site-header .nav-links .nav-cta:focus,
.site-header .nav-links .nav-cta:active {
    background: #0891B2;
    color: #FFFFFF;
    padding: 8px 20px;
    border-radius: 6px;
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.015em;
}

.site-header .nav-links .nav-cta:hover {
    background: #0772A0;
    color: #FFFFFF;
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 4px;
}

.nav-toggle span {
    display: block;
    width: 22px;
    height: 2px;
    background: #EDF2F7;
    border-radius: 2px;
    transition: transform 0.3s ease, opacity 0.3s ease;
}

/* =========================================
   SECTIONS
   ========================================= */

.pl-section {
    padding: 96px 0;
}

.pl-section-hero {
    padding: 128px 0 96px;
}

.pl-bg-base { background-color: #F7F9FB; }
.pl-bg-alt { background-color: #EEF3F8; }
.pl-bg-dark { background-color: #0C1829; }
.pl-bg-dark-card { background-color: #152236; }

.pl-section-label {
    display: inline-block;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #0891B2;
    margin-bottom: 16px;
}

/* =========================================
   HERO — HOMEPAGE (Style C split)
   ========================================= */

.pl-hero {
    background-color: #0C1829;
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 128px 0 96px;
}

.pl-hero-glow {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 60%;
    height: 80%;
    background: radial-gradient(ellipse at center right, rgba(8, 145, 178, 0.12) 0%, transparent 70%);
    pointer-events: none;
}

.pl-hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 12px;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: #5F7A96;
    margin-bottom: 24px;
}

.pl-hero-eyebrow i {
    color: #0891B2;
    font-size: 13px;
}

.pl-hero-title {
    font-size: 58px;
    font-weight: 700;
    line-height: 1.12;
    letter-spacing: -0.025em;
    color: #EDF2F7;
    margin-bottom: 24px;
}

.pl-hero-title span {
    color: #0891B2;
}

.pl-hero-sub {
    font-size: 18px;
    font-weight: 400;
    line-height: 1.65;
    color: #A8BDD4;
    margin-bottom: 40px;
    max-width: 520px;
}

.pl-hero-ctas {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

.pl-hero-proof {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.pl-hero-proof-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    font-weight: 500;
    color: #5F7A96;
}

.pl-hero-proof-item i {
    color: #0891B2;
    font-size: 12px;
}

.pl-hero-visual {
    position: relative;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #1E3350;
    box-shadow: 0 24px 64px rgba(0, 0, 0, 0.4);
}

.pl-hero-visual img {
    width: 100%;
    height: 420px;
    object-fit: cover;
    display: block;
}

.pl-hero-visual-glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 70% 30%, rgba(8, 145, 178, 0.15) 0%, transparent 70%);
    pointer-events: none;
}

/* Sub-page hero */
.pl-hero-sub-page {
    background-color: #0C1829;
    padding: 96px 0 72px;
    text-align: center;
}

/* =========================================
   METRICS BAR
   ========================================= */

.pl-metrics-bar {
    background-color: #152236;
    padding: 48px 0;
    border-top: 1px solid #1E3350;
    border-bottom: 1px solid #1E3350;
}

.pl-metric-tile {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 16px 24px;
}

.pl-metric-tile-icon {
    font-size: 20px;
    color: #0891B2;
    margin-bottom: 12px;
}

.pl-metric-value {
    font-size: 38px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #0891B2;
    margin-bottom: 6px;
}

.pl-metric-label {
    font-size: 13px;
    font-weight: 500;
    color: #A8BDD4;
    letter-spacing: 0.01em;
}

/* =========================================
   CARDS — LIGHT
   ========================================= */

.pl-card {
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    border-radius: 12px;
    padding: 32px;
    box-shadow: 0 1px 4px rgba(12, 24, 41, 0.07), 0 1px 2px rgba(12, 24, 41, 0.05);
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pl-card:hover {
    box-shadow: 0 6px 24px rgba(12, 24, 41, 0.12), 0 2px 8px rgba(12, 24, 41, 0.07);
    transform: translateY(-2px);
}

.pl-card-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pl-card-icon {
    width: 48px;
    height: 48px;
    border-radius: 10px;
    background: rgba(8, 145, 178, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    flex-shrink: 0;
}

.pl-card-icon i {
    font-size: 20px;
    color: #0891B2;
}

.pl-card-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #0C1829;
    margin-bottom: 12px;
}

.pl-card-text {
    font-size: 15px;
    line-height: 1.65;
    color: #344256;
    flex: 1;
    margin-bottom: 0;
}

/* CARDS — DARK */

.pl-card-dark {
    background: #152236;
    border: 1px solid #1E3350;
    border-radius: 12px;
    padding: 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: background 0.2s ease;
}

.pl-card-dark:hover {
    background: #1E3350;
}

.pl-card-dark-body {
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pl-card-dark-title {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.4;
    color: #EDF2F7;
    margin-bottom: 12px;
}

.pl-card-dark-text {
    font-size: 15px;
    line-height: 1.65;
    color: #A8BDD4;
    flex: 1;
}

/* =========================================
   BLOG CARDS
   ========================================= */

.pl-blog-card {
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 1px 4px rgba(12, 24, 41, 0.07), 0 1px 2px rgba(12, 24, 41, 0.05);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pl-blog-card:hover {
    box-shadow: 0 6px 24px rgba(12, 24, 41, 0.12), 0 2px 8px rgba(12, 24, 41, 0.07);
    transform: translateY(-2px);
}

.pl-blog-card-img {
    display: block;
    width: 100%;
    height: 200px;
    object-fit: cover;
    flex-shrink: 0;
}

.pl-blog-card-body {
    padding: 24px;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.pl-blog-card-meta {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 12px;
}

.pl-blog-card-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 12px;
    color: #64748B;
}

.pl-blog-card-meta i {
    font-size: 11px;
    color: #0891B2;
}

.pl-blog-card-title {
    font-size: 16px;
    font-weight: 600;
    line-height: 1.45;
    color: #0C1829;
    margin-bottom: 10px;
    flex-shrink: 0;
}

.pl-blog-card-title a {
    color: #0C1829;
}

.pl-blog-card-title a:hover {
    color: #0891B2;
}

.pl-blog-card-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: #64748B;
    flex: 1;
    margin-bottom: 16px;
}

.pl-read-more {
    margin-top: auto;
    font-size: 14px;
    font-weight: 600;
    color: #0891B2;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    transition: gap 0.2s ease;
}

.pl-read-more:hover {
    color: #0772A0;
    gap: 10px;
}

/* =========================================
   TEAM CARDS
   ========================================= */

.pl-team-card {
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    border-radius: 12px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 1px 4px rgba(12, 24, 41, 0.07), 0 1px 2px rgba(12, 24, 41, 0.05);
}

.pl-team-avatar {
    width: 100%;
    height: 240px;
    object-fit: cover;
    object-position: top center;
    display: block;
    flex-shrink: 0;
}

.pl-team-body {
    padding: 20px 24px;
}

.pl-team-name {
    font-size: 16px;
    font-weight: 600;
    color: #0C1829;
    margin-bottom: 4px;
}

.pl-team-role {
    font-size: 13px;
    font-weight: 500;
    color: #0891B2;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* =========================================
   ZIGZAG / ALTERNATING ROWS
   ========================================= */

.pl-zigzag-row {
    display: flex;
    align-items: center;
    gap: 64px;
    padding: 64px 0;
}

.pl-zigzag-row + .pl-zigzag-row {
    border-top: 1px solid #DDE5EE;
}

.pl-bg-alt .pl-zigzag-row + .pl-zigzag-row {
    border-top: 1px solid #DDE5EE;
}

.pl-zigzag-img {
    flex: 0 0 45%;
    max-width: 45%;
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid #DDE5EE;
    box-shadow: 0 6px 24px rgba(12, 24, 41, 0.10);
}

.pl-zigzag-img img {
    width: 100%;
    height: 340px;
    object-fit: cover;
    display: block;
}

.pl-zigzag-text {
    flex: 1;
}

.pl-zigzag-text-label {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: #0891B2;
    background: rgba(8, 145, 178, 0.10);
    border-radius: 4px;
    padding: 3px 10px;
    margin-bottom: 16px;
}

.pl-zigzag-text h3 {
    font-size: 28px;
    font-weight: 700;
    line-height: 1.28;
    color: #0C1829;
    margin-bottom: 16px;
}

.pl-zigzag-text p {
    font-size: 16px;
    line-height: 1.7;
    color: #344256;
    margin-bottom: 24px;
}

/* =========================================
   DARK BAND / CTA SECTION
   ========================================= */

.pl-dark-band {
    background: #0C1829;
    padding: 80px 0;
    text-align: center;
}

.pl-dark-band h2 {
    font-size: 36px;
    font-weight: 700;
    line-height: 1.2;
    color: #EDF2F7;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.pl-dark-band p {
    font-size: 17px;
    color: #A8BDD4;
    margin-bottom: 36px;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

/* =========================================
   INTEGRATION / CAPABILITY RAIL
   ========================================= */

.pl-capabilities-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

/* =========================================
   SOLUTIONS TILES
   ========================================= */

.pl-solution-tile {
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    border-radius: 20px;
    padding: 40px 32px;
    text-align: center;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 1px 4px rgba(12, 24, 41, 0.07);
    transition: box-shadow 0.2s ease, transform 0.2s ease;
}

.pl-solution-tile:hover {
    box-shadow: 0 6px 24px rgba(12, 24, 41, 0.12);
    transform: translateY(-3px);
}

.pl-solution-tile-icon {
    width: 64px;
    height: 64px;
    border-radius: 16px;
    background: rgba(8, 145, 178, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.pl-solution-tile-icon i {
    font-size: 28px;
    color: #0891B2;
}

.pl-solution-tile-title {
    font-size: 20px;
    font-weight: 600;
    color: #0C1829;
    margin-bottom: 12px;
}

.pl-solution-tile-text {
    font-size: 15px;
    line-height: 1.65;
    color: #344256;
    flex: 1;
}

/* =========================================
   COMPANY / STATS
   ========================================= */

.pl-stat-card {
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    border-radius: 12px;
    padding: 28px 24px;
    text-align: center;
    box-shadow: 0 1px 4px rgba(12, 24, 41, 0.07);
}

.pl-stat-value {
    font-size: 34px;
    font-weight: 700;
    color: #0891B2;
    line-height: 1;
    margin-bottom: 6px;
}

.pl-stat-label {
    font-size: 13px;
    font-weight: 500;
    color: #64748B;
}

/* =========================================
   CONTACT FORM
   ========================================= */

.pl-form-group {
    margin-bottom: 20px;
}

.pl-form-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #344256;
    margin-bottom: 6px;
}

.pl-form-control {
    display: block;
    width: 100%;
    padding: 10px 14px;
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 15px;
    color: #0C1829;
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    border-radius: 6px;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.pl-form-control::placeholder {
    color: #94A3B8;
}

.pl-form-control:focus {
    border-color: #0891B2;
    box-shadow: 0 0 0 3px rgba(8, 145, 178, 0.12);
}

textarea.pl-form-control {
    resize: vertical;
    min-height: 120px;
}

/* =========================================
   CONTACT INFO
   ========================================= */

.pl-contact-info-item {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    margin-bottom: 24px;
}

.pl-contact-info-icon {
    width: 40px;
    height: 40px;
    border-radius: 8px;
    background: rgba(8, 145, 178, 0.10);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.pl-contact-info-icon i {
    font-size: 16px;
    color: #0891B2;
}

.pl-contact-info-label {
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: #64748B;
    margin-bottom: 2px;
}

.pl-contact-info-value {
    font-size: 15px;
    color: #0C1829;
    font-weight: 500;
}

/* =========================================
   LEGAL / ARTICLE CONTENT
   ========================================= */

.pl-container-narrow {
    max-width: 780px;
    margin: 0 auto;
    padding: 0 24px;
}

.pl-article-content h2 {
    font-size: 26px;
    font-weight: 700;
    color: #0C1829;
    margin-top: 48px;
    margin-bottom: 16px;
}

.pl-article-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: #0C1829;
    margin-top: 32px;
    margin-bottom: 12px;
}

.pl-article-content p {
    font-size: 16px;
    line-height: 1.7;
    color: #344256;
    margin-bottom: 16px;
}

.pl-article-content ul,
.pl-article-content ol {
    padding-left: 24px;
    margin-bottom: 16px;
}

.pl-article-content li {
    font-size: 16px;
    line-height: 1.7;
    color: #344256;
    margin-bottom: 6px;
}

.pl-article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
    margin: 32px 0;
}

.pl-article-hero-img {
    width: 100%;
    max-height: 480px;
    object-fit: cover;
    border-radius: 12px;
    display: block;
    margin-bottom: 40px;
}

.pl-article-date-bar {
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #DDE5EE;
}

.pl-article-date-bar span {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: #64748B;
}

.pl-article-date-bar i {
    color: #0891B2;
    font-size: 12px;
}

.pl-article-nav {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    padding-top: 48px;
    border-top: 1px solid #DDE5EE;
    margin-top: 48px;
}

.pl-article-nav-item {
    background: #F7F9FB;
    border: 1px solid #DDE5EE;
    border-radius: 8px;
    padding: 20px;
}

.pl-article-nav-item a {
    color: #0C1829;
    font-weight: 600;
    font-size: 14px;
}

.pl-article-nav-item a:hover {
    color: #0891B2;
}

.pl-article-nav-label {
    font-size: 11px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.06em;
    color: #0891B2;
    margin-bottom: 6px;
}

/* =========================================
   FOOTER
   ========================================= */

.site-footer {
    background: #0C1829;
    border-top: 1px solid #1E3350;
    padding: 64px 0 0;
}

.site-footer .footer-grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 40px;
    padding-bottom: 48px;
}

.site-footer .footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    color: #A8BDD4;
    margin: 12px 0 20px;
    max-width: 280px;
}

.site-footer .footer-logo {
    font-family: 'DM Sans', 'Inter', sans-serif;
    font-size: 18px;
    font-weight: 700;
    color: #EDF2F7;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.site-footer .footer-logo img {
    height: 30px;
    width: auto;
}

.site-footer .footer-logo:hover {
    color: #EDF2F7;
    opacity: 0.9;
}

.site-footer .footer-social {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    gap: 10px;
}

.site-footer .footer-social a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background: #152236;
    border: 1px solid #1E3350;
    border-radius: 8px;
    color: #5F7A96;
    font-size: 14px;
    transition: background 0.2s ease, color 0.2s ease;
}

.site-footer .footer-social a:hover {
    background: #0891B2;
    color: #FFFFFF;
    border-color: #0891B2;
}

.site-footer .footer-col h5 {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: #EDF2F7;
    margin-bottom: 16px;
}

.site-footer .footer-col ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.site-footer .footer-col ul li {
    margin-bottom: 10px;
}

.site-footer .footer-col ul a {
    font-size: 14px;
    color: #A8BDD4;
    transition: color 0.2s ease;
}

.site-footer .footer-col ul a:hover {
    color: #0891B2;
}

.pl-footer-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    margin-bottom: 12px;
}

.pl-footer-contact-item i {
    color: #0891B2;
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pl-footer-contact-item span {
    font-size: 13px;
    color: #A8BDD4;
    line-height: 1.5;
}

.site-footer .footer-bottom {
    border-top: 1px solid #1E3350;
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.site-footer .footer-bottom p {
    font-size: 13px;
    color: #5F7A96;
    margin: 0;
}

.site-footer .footer-bottom a {
    color: #5F7A96;
    font-size: 13px;
}

.site-footer .footer-bottom a:hover {
    color: #0891B2;
}

/* =========================================
   404 PAGE
   ========================================= */

.pl-404-page {
    background: #0C1829;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
    text-align: center;
    padding: 40px 24px;
    position: relative;
    overflow: hidden;
}

.pl-404-decoration {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    opacity: 0.04;
    pointer-events: none;
}

.pl-404-logo {
    display: block;
    height: 44px;
    width: auto;
    margin: 0 auto 48px;
}

.pl-404-code {
    font-size: 120px;
    font-weight: 700;
    line-height: 1;
    color: #1E3350;
    margin-bottom: 0;
}

.pl-404-title {
    font-size: 46px;
    font-weight: 700;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #EDF2F7;
    margin-bottom: 16px;
}

.pl-404-sub {
    font-size: 18px;
    color: #A8BDD4;
    margin-bottom: 36px;
    max-width: 440px;
}

/* =========================================
   COOKIE BANNER (custom design — design-spec §16)
   ========================================= */

.pl-cookie-banner {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background: #1C2B3A;
    border-top: 1px solid #1E3350;
    z-index: 9999;
    box-shadow: 0 -2px 20px rgba(0, 0, 0, 0.3);
}

.pl-cookie-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px 24px;
}

.pl-cookie-main {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    flex-wrap: wrap;
}

.pl-cookie-text {
    flex: 1;
    min-width: 260px;
}

.pl-cookie-title {
    font-size: 14px;
    font-weight: 600;
    color: #EDF2F7;
    margin-bottom: 4px;
}

.pl-cookie-body-text {
    font-size: 13px;
    color: #A8BDD4;
    line-height: 1.5;
    margin: 0;
}

.pl-cookie-body-text a {
    color: #0891B2;
    text-decoration: underline;
}

.pl-cookie-actions {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-shrink: 0;
    flex-wrap: wrap;
}

.pl-cookie-accept {
    background: #16A34A;
    color: #FFFFFF;
    border: none;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s ease;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

.pl-cookie-accept:hover {
    background: #15803D;
}

.pl-cookie-manage {
    background: transparent;
    color: #A8BDD4;
    border: 1px solid #2D4A65;
    padding: 9px 22px;
    border-radius: 6px;
    font-size: 14px;
    cursor: pointer;
    transition: color 0.2s ease, border-color 0.2s ease;
    font-family: 'DM Sans', 'Inter', sans-serif;
}

.pl-cookie-manage:hover {
    color: #EDF2F7;
    border-color: #5F7A96;
}

.pl-cookie-prefs {
    display: none;
    border-top: 1px solid #1E3350;
    padding-top: 16px;
    margin-top: 16px;
}

.pl-cookie-toggle-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 10px 0;
}

.pl-cookie-toggle-info {
    flex: 1;
}

.pl-cookie-toggle-label {
    font-size: 14px;
    font-weight: 600;
    color: #EDF2F7;
}

.pl-cookie-toggle-desc {
    font-size: 12px;
    color: #5F7A96;
}

.pl-toggle-switch {
    position: relative;
    width: 40px;
    height: 22px;
    flex-shrink: 0;
}

.pl-toggle-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}

.pl-toggle-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: #2D4A65;
    border-radius: 22px;
    transition: background 0.2s ease;
}

.pl-toggle-slider::before {
    content: '';
    position: absolute;
    height: 16px;
    width: 16px;
    left: 3px;
    bottom: 3px;
    background: #EDF2F7;
    border-radius: 50%;
    transition: transform 0.2s ease;
}

.pl-toggle-switch input:checked + .pl-toggle-slider {
    background: #0891B2;
}

.pl-toggle-switch input:checked + .pl-toggle-slider::before {
    transform: translateX(18px);
}

.pl-toggle-switch input:disabled + .pl-toggle-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

/* =========================================
   BADGE
   ========================================= */

.pl-badge {
    display: inline-block;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 3px 10px;
    border-radius: 4px;
    background: rgba(8, 145, 178, 0.12);
    color: #0891B2;
}

.pl-badge-secondary {
    background: rgba(99, 102, 241, 0.12);
    color: #6366F1;
}

/* =========================================
   PAGINATION
   ========================================= */

.pl-pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding-top: 48px;
}

.pl-page-item a {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 6px;
    background: #FFFFFF;
    border: 1px solid #DDE5EE;
    font-size: 14px;
    color: #344256;
    transition: background 0.2s ease, color 0.2s ease;
}

.pl-page-item a:hover,
.pl-page-item.active a {
    background: #0891B2;
    border-color: #0891B2;
    color: #FFFFFF;
}

/* =========================================
   AOS OVERRIDES
   ========================================= */

[data-aos] {
    pointer-events: none;
}
[data-aos].aos-animate {
    pointer-events: auto;
}

/* =========================================
   RESPONSIVE
   ========================================= */

@media (max-width: 1024px) {
    .pl-hero-title { font-size: 48px; }
    .pl-h2 { font-size: 30px; }
    .pl-h2-dark { font-size: 30px; }
    .site-footer .footer-grid { grid-template-columns: 1fr 1fr; }
    .pl-zigzag-row { flex-direction: column; gap: 40px; }
    .pl-zigzag-img { flex: none; max-width: 100%; }
    .pl-capabilities-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
    .site-header .nav-links {
        display: none;
        flex-direction: column;
        position: fixed;
        top: 64px;
        left: 0;
        right: 0;
        background: #0C1829;
        padding: 24px;
        gap: 4px;
        border-top: 1px solid #1E3350;
        z-index: 999;
    }
    .site-header .nav-links.open {
        display: flex;
    }
    .site-header .nav-links a {
        padding: 12px 16px;
        border-radius: 8px;
        width: 100%;
    }
    .site-header .nav-links .nav-cta {
        width: 100%;
        justify-content: center;
        margin-top: 8px;
    }
    .nav-toggle { display: flex; }
    .pl-hero-title { font-size: 36px; }
    .pl-h1-sub { font-size: 30px; }
    .pl-h2 { font-size: 26px; }
    .pl-h2-dark { font-size: 26px; }
    .pl-dark-band h2 { font-size: 26px; }
    .pl-404-title { font-size: 32px; }
    .pl-404-code { font-size: 80px; }
    .pl-hero-ctas { flex-direction: column; align-items: flex-start; }
    .pl-section { padding: 64px 0; }
    .pl-section-hero { padding: 80px 0 64px; }
    .site-footer .footer-grid { grid-template-columns: 1fr; gap: 32px; }
    .pl-capabilities-grid { grid-template-columns: 1fr; }
    .pl-article-nav { grid-template-columns: 1fr; }
    .pl-zigzag-row { padding: 40px 0; }
    .pl-metrics-bar .row { flex-direction: column; }
    .pl-metric-tile { border-right: none; border-bottom: 1px solid #1E3350; }
    .pl-metric-tile:last-child { border-bottom: none; }
}

@media (max-width: 480px) {
    .pl-hero-title { font-size: 30px; }
    .pl-hero-sub { font-size: 16px; }
    .pl-btn { padding: 11px 22px; font-size: 14px; }
}

/* Logo dark/light variant swap */
.logo-img {
  max-height: 40px;
  width: auto;
  vertical-align: middle;
  display: inline-block;
}
/* Prism Layer nav is always on a dark background; always show the light logo variant. */
.c-nav .logo-img--dark { display: none !important; }
.c-nav .logo-img--light { display: inline-block !important; }
