/* ===== Page Header Split Banner ===== */
.page-header-split {
    position: relative;
    display: flex;
    min-height:260px;
    overflow: hidden;
    background: #f4f6f9;
}

.page-header-left {
    flex: 0 0 48%;
    display: flex;
    align-items: center;
    padding: 60px 80px;
    position: relative;
    z-index: 2;
    /* Diagonal cut on the right edge */
    clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
    background: #f4f6f9;
}


.page-header-text {
    max-width: 480px;
}

.page-header-label {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--color-accent, #3b82f6);
    margin-bottom: 14px;
}

/* Breadcrumb Navigation */
.breadcrumb {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.875rem;
    color: var(--color-text-muted, #64748b);
    margin-bottom: 1.5rem;
    flex-wrap: wrap;
}

.breadcrumb a {
    color: var(--color-accent, #3b82f6);
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: var(--color-accent-dark, #2563eb);
    text-decoration: underline;
}

.breadcrumb span {
    color: var(--color-text-muted, #64748b);
}

.breadcrumb span:last-child {
    color: var(--color-text, #1a2332);
    font-weight: 500;
}

.page-header-text h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--color-primary, #0f1419);
    margin-bottom: 20px;
    line-height: 1.1;
}

/* Page header description text */
.page-header-desc {
    margin-top: 16px;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--color-text-muted, #64748b);
    max-width: 500px;
}

.page-header-right {
    flex: 1;
    position: relative;
    margin-left: -8%; /* pulls the image under the diagonal cut for overlap */
}

.page-header-right img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    max-height: 500px;
}

.header-bg-motion {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 1;
    overflow: hidden;
}

.motion-el {
    color: var(--primary-color, #3b82f6);
}

/* ---------- 1. Signal rings (top right) ---------- */
.signal-rings {
    position: absolute;
    top: 14%;
    right: 8%;
    width: 40px;
    height: 40px;
}

.signal-ring {
    position: absolute;
    inset: 0;
    border: 1px solid var(--primary-color, #3b82f6);
    border-radius: 50%;
    opacity: 0;
    transform: scale(0.4);
    animation: ringPulse 6s ease-out infinite;
}
.ring-1 { animation-delay: 0s; }
.ring-2 { animation-delay: 2s; }
.ring-3 { animation-delay: 4s; }

@keyframes ringPulse {
    0%   { opacity: 0;    transform: scale(0.4); }
    15%  { opacity: 0.18; }
    100% { opacity: 0;    transform: scale(6); }
}

/* ---------- 2. Waveform trace (bottom edge) ---------- */
.waveform-trace {
    position: absolute;
    left: 0;
    bottom: 10%;
    width: 100%;
    height: 32px;
    opacity: 0.14;
}

.waveform-path {
    stroke-dasharray: 900;
    stroke-dashoffset: 900;
    animation: traceDraw 5s ease-in-out infinite;
}

@keyframes traceDraw {
    0%   { stroke-dashoffset: 900; opacity: 0; }
    10%  { opacity: 1; }
    55%  { stroke-dashoffset: 0; opacity: 1; }
    75%  { opacity: 0; }
    100% { stroke-dashoffset: 0; opacity: 0; }
}

/* ---------- 3. Orbiting node (top left) ---------- */
.orbit-node {
    position: absolute;
    top: 8%;
    left: 4%;
    width: 70px;
    height: 70px;
    opacity: 0.16;
}

.orbit-dot {
    transform-origin: 50px 50px;
    animation: orbitSpin 10s linear infinite;
}

@keyframes orbitSpin {
    from { transform: rotate(0deg); }
    to   { transform: rotate(360deg); }
}

/* ---------- shared ---------- */
.page-header-text {
    position: relative;
    z-index: 2;
}

@media (max-width: 900px) {
    .header-bg-motion { display: none; }
}

@media (prefers-reduced-motion: reduce) {
    .signal-ring,
    .waveform-path,
    .orbit-dot,
    .hex-outline,
    .hex-check {
        animation: none;
        opacity: 0;
    }
}
/* Responsive — stack on smaller screens, drop the diagonal cut */
@media (max-width: 900px) {
    .page-header-split {
        flex-direction: column;
        min-height: auto;
    }
    .page-header-left {
        clip-path: none;
        flex: none;
        padding: 50px 30px;
        text-align: center;
    }
    .page-header-text {
        max-width: 100%;
        margin: 0 auto;
    }
    .page-header-text h1 {
        font-size: 2rem;
    }
    .page-header-desc {
        font-size: 0.9375rem;
    }
    .page-header-right {
        margin-left: 0;
        height: 260px;
    }
}

@media (max-width: 640px) {
    .page-header-left {
        padding: 40px 20px;
    }
    .page-header-text h1 {
        font-size: 1.75rem;
    }
    .page-header-label {
        font-size: 0.75rem;
    }
    .breadcrumb {
        font-size: 0.8125rem;
        margin-bottom: 1.25rem;
        justify-content: center;
    }
    .page-header-desc {
        font-size: 0.875rem;
    }
    .page-header-right {
        height: 200px;
    }
}

@media (max-width: 480px) {
    .page-header-left {
        padding: 30px 16px;
    }
    .page-header-text h1 {
        font-size: 1.5rem;
        margin-bottom: 16px;
    }
    .breadcrumb {
        font-size: 0.75rem;
    }
    .page-header-right {
        height: 180px;
    }
}
/* ===== Capabilities Section ===== */

.capabilities-list {
    list-style: none;
    padding: 0;
    margin: 40px auto 0;
    max-width: 900px;

    display: flex;
    flex-direction: column;
    gap: 20px;
}

.capabilities-list li {
    background: linear-gradient(135deg, #ffffff, #f8fbff);
    border: 1px solid #e5e7eb;
    border-left: 5px solid var(--primary-color, #1a4d8f);

    padding: 20px 26px;

    text-align: center;
    font-size: 1.05rem;
    font-weight: 500;
    line-height: 1;
    color: #333;

    border-radius: 14px;

    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.06);

    transition: all 0.35s ease;
}

.capabilities-list li:hover {
    transform: translateY(-5px);
    border-left-color: #2563eb;
    box-shadow: 0 16px 35px rgba(26, 77, 143, 0.18);
}

/* Responsive */
@media (max-width: 768px) {
    .capabilities-list {
        margin-top: 30px;
        gap: 16px;
    }

    .capabilities-list li {
        padding: 18px 20px;
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* ===== Explore Your Future Section ===== */
.explore-future-section {
    background: linear-gradient(135deg, var(--color-accent) 0%, #0284c7 100%);
    color: #fff;
    text-align: center;
    padding: 30px 0;
}

.explore-future-content {
    max-width: 500px;
    margin: 0 auto;
}

.explore-future-content h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 16px;
    color: #fff;
}

.explore-future-content p {
    font-size: 1.05rem;
    line-height: 1.6;
    opacity: 0.9;
    margin-bottom: 28px;
}

.explore-future-content .btn {
    display: inline-block;
    padding: 14px 36px;
    background: #fff;
    color: var(--primary-color, #1a4d8f);
    text-decoration: none;
    border-radius: 6px;
    font-weight: 600;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.explore-future-content .btn:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.15);
}

/* Responsive */
@media (max-width: 768px) {
    .explore-future-content h2 {
        font-size: 1.5rem;
    }
    .capabilities-list li {
        font-size: 0.95rem;
        padding-left: 28px;
    }
}
/* ==========================================================
   ABOUT PAGE — Bold Visual Pass v2
   Replace previous about-section/capabilities/explore-future
   rules with this. Header hero stays as-is (already working).
   ========================================================== */

/* ============ ABOUT SECTION — visible tint + circuit pattern ============ */
.about-section {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f8fd 0%, #ffffff 100%);
}

/* Large faint circuit-board grid, clearly visible not just a whisper */
.about-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(59,130,246,0.08) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59,130,246,0.08) 1px, transparent 1px);
    background-size: 48px 48px;
    z-index: 0;
    pointer-events: none;
}

/* Radar ring, top-right corner of the section — signal-sweep motif */
.about-section::after {
    content: '';
    position: absolute;
    top: 6%;
    right: 6%;
    width: 160px;
    height: 160px;
    border: 2px solid rgba(59,130,246,0.25);
    border-radius: 50%;
    box-shadow: 0 0 0 24px rgba(59,130,246,0.06), 0 0 0 48px rgba(59,130,246,0.03);
    animation: radarSweep 5s ease-out infinite;
    z-index: 0;
    pointer-events: none;
}
@keyframes radarSweep {
    0%   { transform: scale(0.7); opacity: 0.9; }
    100% { transform: scale(1.3); opacity: 0.15; }
}

.about-section .container { position: relative; z-index: 1; }
.about-section .collage-image-1 {
    box-shadow: 0 30px 70px -20px rgba(15,20,25,0.3), 0 0 0 1px rgba(59,130,246,0.15);
}
.about-section .collage-accent { animation: aboutAccentFloat 6s ease-in-out infinite; }
@keyframes aboutAccentFloat {
    0%, 100% { transform: translate(0,0) scale(1); opacity: 0.6; }
    50%      { transform: translate(-6px, 6px) scale(1.08); opacity: 1; }
}

/* ============ CAPABILITIES — deep navy band, clearly distinct section ============ */
.capabilities-section {
    position: relative;
    background: linear-gradient(160deg, #0f1419 0%, #1e3a5f 100%);
    overflow: hidden;
}
.capabilities-section .section-label { color: #67e8f9; }
.capabilities-section .section-title { color: #ffffff; }

/* Waveform trace running across the top of the section, bold and visible */
.capabilities-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 60px;
    background-image: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 600 60" preserveAspectRatio="none"><path d="M0,30 L80,30 L95,8 L115,52 L130,30 L220,30 L235,14 L255,46 L270,30 L350,30 L365,10 L385,50 L400,30 L600,30" fill="none" stroke="rgba(103,232,249,0.4)" stroke-width="2"/></svg>');
    background-repeat: repeat-x;
    background-size: 600px 60px;
    z-index: 0;
    pointer-events: none;
}

.capabilities-list li {
    position: relative;
    z-index: 1;
    background: linear-gradient(135deg, rgba(255,255,255,0.06), rgba(255,255,255,0.02));
    border: 1px solid rgba(103,232,249,0.15);
    border-left: 4px solid #67e8f9;
    color: #e2e8f0;
    counter-increment: capability-counter;
    padding-left: 64px;
    text-align: left;
    transition: transform 0.35s ease, box-shadow 0.35s ease, background 0.35s ease;
}
.capabilities-list { counter-reset: capability-counter; }
.capabilities-list li::before {
    content: counter(capability-counter, decimal-leading-zero);
    position: absolute;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    font-family: var(--font-display, inherit);
    font-size: 0.85rem;
    font-weight: 700;
    color: #67e8f9;
    background: rgba(103,232,249,0.12);
    width: 32px;
    height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.capabilities-list li:hover {
    background: rgba(103,232,249,0.1);
    transform: translateY(-4px);
    box-shadow: 0 16px 35px rgba(103,232,249,0.25);
}
.capabilities-list li:hover::before {
    background: #67e8f9;
    color: #0f1419;
    transform: translateY(-50%) scale(1.1);
}

/* ============ EXPLORE FUTURE — aurora banner + glow CTA ============ */
.explore-future-section {
    position: relative;
    overflow: hidden;
}
.explore-future-section::before {
    content: '';
    position: absolute;
    inset: -40%;
    background:
        radial-gradient(circle at 25% 30%, rgba(255,255,255,0.22) 0%, transparent 45%),
        radial-gradient(circle at 75% 70%, rgba(255,255,255,0.15) 0%, transparent 45%);
    filter: blur(50px);
    animation: exploreAuroraDrift 14s ease-in-out infinite alternate;
    pointer-events: none;
    z-index: 0;
}
@keyframes exploreAuroraDrift {
    0%   { transform: translate(0,0) scale(1); }
    100% { transform: translate(4%, -3%) scale(1.1); }
}
.explore-future-content { position: relative; z-index: 1; }
.explore-future-content h2 { text-shadow: 0 4px 20px rgba(0,0,0,0.25); }
.explore-future-content .btn {
    position: relative;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
    animation: exploreBtnPulse 3s ease-in-out infinite;
}
@keyframes exploreBtnPulse {
    0%, 100% { box-shadow: 0 10px 30px rgba(0,0,0,0.2); }
    50%      { box-shadow: 0 14px 42px rgba(0,0,0,0.32); }
}

/* ============ REDUCED MOTION ============ */
@media (prefers-reduced-motion: reduce) {
    .about-section::after,
    .about-section .collage-accent,
    .explore-future-section::before,
    .explore-future-content .btn {
        animation: none !important;
    }
}

/* ============ RESPONSIVE ============ */
@media (max-width: 768px) {
    .capabilities-list li { padding-left: 56px; }
    .capabilities-list li::before { left: 14px; width: 28px; height: 28px; font-size: 0.75rem; }
    .about-section::after { width: 100px; height: 100px; }
}