/* Technology Pages - Light Theme (Matches Culture & Who We Are) */

/* Inline Text Links */
.inline-text-link {
    color: var(--neural-purple, #3c1361);
    text-decoration: underline;
    text-decoration-color: rgba(60, 19, 97, 0.3);
    text-underline-offset: 2px;
    transition: all 0.3s ease;
    position: relative;
}

.inline-text-link:hover {
    text-decoration-color: rgba(217, 119, 6, 0.8);
    color: var(--neural-orange, #d97706);
}

body {
    background: #FFFFFF;
    color: #111827;
    font-family: var(--font-primary);
    margin: 0;
    padding: 0;
    overflow-x: hidden;
    line-height: 1.6;
    -moz-osx-font-smoothing: grayscale;
}

main {
    background: #FFFFFF;
}

/* Section Styling */
.neural-section {
    padding: 5rem 0;
    background: #FFFFFF;
    position: relative;
}

/* Alternate section subtle background */
.neural-section:nth-of-type(even) {
    background: #FAFAFA;
}

/* Container */
.neural-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* Section Headlines */
.section-headline {
    font-family: var(--font-primary);
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 300;
    color: var(--text-primary, #111827);
    letter-spacing: -0.01em;
    line-height: 1.2;
    margin: 0 0 3rem 0;
    position: relative;
    display: inline-block;
}

.section-headline::after {
    content: '';
    display: block;
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--neural-purple, #3c1361), var(--neural-orange, #d97706));
    margin-top: 0.875rem;
}

/* Feature Grid - 3 column layout */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--np-white, #FFFFFF);
    border: 1px solid var(--np-mid-grey, #E5E7EB);
    border-radius: 12px;
    padding: 2rem 1.75rem;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                box-shadow 0.4s cubic-bezier(0.22, 1, 0.36, 1),
                border-color 0.3s ease;
    position: relative;
    overflow: hidden;
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--np-purple, #3C1361), var(--np-orange, #EA580C));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card:hover {
    transform: translateY(-4px);
    border-color: rgba(60, 19, 97, 0.15);
    box-shadow: 0 12px 32px rgba(60, 19, 97, 0.08);
}

.feature-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary, #111827);
    margin: 0 0 0.625rem 0;
    letter-spacing: -0.01em;
}

.feature-description {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    line-height: 1.6;
    color: var(--text-secondary, #6B7280);
    font-weight: 400;
    margin: 0;
}

/* Content Section */
.content-section {
    padding: 5rem 0;
}

.content-block {
    max-width: 800px;
}

.content-block p {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-secondary, #6B7280);
    line-height: 1.7;
    margin: 0 0 1.5rem 0;
}

.content-block p:last-child {
    margin-bottom: 0;
}

/* Two Column Content */
.two-column-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.column-content h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 500;
    color: var(--text-primary, #111827);
    margin: 0 0 1rem 0;
}

.column-content p {
    font-family: var(--font-primary);
    font-size: 1rem;
    font-weight: 300;
    color: var(--text-secondary, #6B7280);
    line-height: 1.7;
    margin: 0 0 1rem 0;
}

.column-content p:last-child {
    margin-bottom: 0;
}

/* Process Grid (4-step) */
.process-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
}

.process-step {
    position: relative;
}

.process-step-number {
    display: block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--neural-purple, #3c1361);
    margin-bottom: 1rem;
}

.process-step-title {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary, #111827);
    margin: 0 0 0.75rem 0;
}

.process-step-description {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-secondary, #6B7280);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 1024px) {
    .process-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .process-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
}

/* Highlight Cards */
.highlight-section {
    background: #FAFAFA;
}

.highlight-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.highlight-card {
    background: #FFFFFF;
    border: 1px solid var(--np-mid-grey, #E5E7EB);
    border-radius: 12px;
    padding: 2.25rem 2rem;
    transition: all 0.3s ease;
}

.highlight-card:hover {
    border-color: rgba(60, 19, 97, 0.15);
    box-shadow: 0 8px 24px rgba(60, 19, 97, 0.06);
}

.highlight-card h3 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary, #111827);
    margin: 0 0 0.75rem 0;
}

.highlight-card p {
    font-family: var(--font-primary);
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-secondary, #6B7280);
    line-height: 1.6;
    margin: 0;
}

/* Q&A Grid Section */
.qa-grid-section {
    background: #FFFFFF;
    padding: 5rem 0;
}

.qa-grid-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.qa-row {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 4rem;
    padding: 2.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.08);
    align-items: start;
}

.qa-row:first-of-type {
    padding-top: 0;
}

.qa-row:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.qa-question {
    font-size: clamp(1.25rem, 2vw, 1.5rem);
    font-weight: 400;
    color: #111827;
    line-height: 1.3;
}

.qa-answer {
    font-size: 1.125rem;
    font-weight: 300;
    color: #374151;
    line-height: 1.7;
}

/* Orange highlight text */
.neural-text-orange {
    color: var(--neural-orange, #d97706);
}

/* Mobile & Responsive */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .two-column-content {
        gap: 3rem;
    }
}

@media (max-width: 768px) {
    .neural-section {
        padding: 3.5rem 0;
    }

    .neural-container {
        padding: 0 1.5rem;
    }

    .section-headline {
        font-size: 1.375rem;
        margin-bottom: 2rem;
    }

    .section-headline::after {
        width: 32px;
        margin-top: 0.75rem;
    }

    .feature-grid {
        grid-template-columns: 1fr;
        gap: 0.875rem;
    }

    .feature-card {
        padding: 1.5rem 1.25rem;
    }

    .feature-card:hover {
        transform: none;
    }

    .feature-title {
        font-size: 1rem;
    }

    .feature-description {
        font-size: 0.9375rem;
    }

    .two-column-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .highlight-grid {
        grid-template-columns: 1fr;
    }

    .highlight-card {
        padding: 1.5rem 1.25rem;
    }

    /* Q&A Grid Mobile */
    .qa-grid-section {
        padding: 3.5rem 0;
    }

    .qa-grid-container {
        padding: 0 1.5rem;
    }

    .qa-row {
        grid-template-columns: 1fr;
        gap: 1rem;
        padding: 2rem 0;
    }

    .qa-question {
        font-size: 1.125rem;
    }

    .qa-answer {
        font-size: 1rem;
    }

    .content-block p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .neural-section {
        padding: 3rem 0;
    }

    .feature-card {
        padding: 1.25rem;
    }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    * {
        transition: none !important;
    }

    .feature-card:hover {
        transform: none;
    }
}

/* ============================
   Infrastructure Void Section
   Bold typographic treatment
   ============================ */

.infrastructure-void-section {
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 100%);
    padding: 6rem 0;
    position: relative;
    overflow: hidden;
}

/* Subtle grid pattern overlay */
.infrastructure-void-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(124, 58, 237, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(124, 58, 237, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
}

.void-content {
    max-width: 100%;
    margin-bottom: 4rem;
}

.void-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--neural-orange, #EA580C);
    margin-bottom: 1rem;
}

.void-headline {
    font-family: var(--font-primary);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 300;
    color: #FFFFFF;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin: 0 0 2rem 0;
}

.void-body {
    max-width: 720px;
}

.void-body p {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin: 0 0 1.25rem 0;
}

.void-body p:last-child {
    margin-bottom: 0;
}

/* Stats Grid - Bold Typography */
.void-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
}

.void-stat {
    position: relative;
    padding: 1.5rem 0;
    border-left: 1px solid rgba(255, 255, 255, 0.1);
    padding-left: 1.5rem;
}

.void-stat:first-child {
    border-left: none;
    padding-left: 0;
}

.void-stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 200;
    line-height: 1;
    background: linear-gradient(135deg, #FFFFFF 0%, rgba(124, 58, 237, 0.9) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.75rem;
}

.void-stat-symbol {
    font-size: 0.6em;
    font-weight: 300;
}

.void-stat-context {
    display: block;
    font-size: 0.9375rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
    margin-bottom: 0.5rem;
}

.void-stat-source {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    letter-spacing: 0.05em;
    color: rgba(234, 88, 12, 0.8);
    text-transform: uppercase;
}

.void-closing {
    font-family: var(--font-primary);
    font-size: clamp(1.25rem, 2.5vw, 1.75rem);
    font-weight: 300;
    color: #FFFFFF;
    line-height: 1.4;
    margin: 0;
    padding-top: 2rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    max-width: 700px;
}

/* Secondary void content block */
.void-content--secondary {
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.void-headline--small {
    font-size: clamp(1.5rem, 3vw, 2rem);
    margin-bottom: 1rem;
}

.void-body-intro {
    font-size: 1.125rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.75;
    margin: 0;
}

/* Bimodal modes grid */
.void-modes {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.void-mode {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.void-mode-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--neural-orange, #EA580C);
    margin-bottom: 0.5rem;
}

.void-mode-title {
    display: block;
    font-size: 1.25rem;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: 1rem;
}

.void-mode-description {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0;
}

/* Protocol cards grid */
.protocol-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
    margin-top: 2rem;
}

.protocol-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
    padding: 1.5rem;
}

.protocol-header {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 1rem;
    margin-bottom: 1rem;
    flex-wrap: wrap;
}

.protocol-name {
    font-size: 1rem;
    font-weight: 500;
    color: #FFFFFF;
}

.protocol-source {
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neural-orange, #EA580C);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.protocol-description {
    font-size: 0.875rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    margin: 0 0 1rem 0;
}

.protocol-position {
    padding-top: 1rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.protocol-position-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 0.375rem;
}

.protocol-position-value {
    font-size: 0.8125rem;
    font-weight: 400;
    color: #FFFFFF;
    line-height: 1.5;
}

/* Hero protocol cards container */
.hero-protocol-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    flex: 0 0 auto;
    max-width: 420px;
}

.hero-protocol-cards .protocol-card--hero {
    background: rgba(60, 19, 97, 0.08);
    border: 1px solid rgba(60, 19, 97, 0.2);
    border-radius: 10px;
    padding: 1.25rem;
}

.hero-protocol-cards .protocol-name {
    color: var(--text-primary, #111827);
    font-size: 0.95rem;
}

.hero-protocol-cards .protocol-source {
    color: var(--neural-orange, #EA580C);
}

.hero-protocol-cards .protocol-description {
    color: var(--text-secondary, #6B7280);
    font-size: 0.8125rem;
    margin-bottom: 0.75rem;
}

.hero-protocol-cards .protocol-position {
    border-top-color: rgba(60, 19, 97, 0.15);
    padding-top: 0.75rem;
}

.hero-protocol-cards .protocol-position-label {
    color: rgba(60, 19, 97, 0.6);
}

.hero-protocol-cards .protocol-position-value {
    color: var(--text-primary, #111827);
    font-size: 0.75rem;
}

/* 2-column protocol grid variant */
.protocol-grid--2col {
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}

/* 3-column protocol grid variant */
.protocol-grid--3col {
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Large protocol cards */
.protocol-card--large {
    padding: 2rem;
}

.protocol-card--large .protocol-name {
    font-size: 1.125rem;
}

.protocol-card--large .protocol-description {
    font-size: 1rem;
    line-height: 1.7;
}

.protocol-card--large .protocol-position-value {
    font-size: 0.9375rem;
}

@media (max-width: 1024px) {
    .protocol-grid--3col {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .protocol-grid {
        grid-template-columns: 1fr;
    }

    .protocol-grid--2col {
        grid-template-columns: 1fr;
    }

    .protocol-grid--3col {
        grid-template-columns: 1fr;
    }

    .hero-protocol-cards {
        max-width: 100%;
    }
}

/* Partnership reasons */
.partnership-reasons {
    margin-top: 3rem;
    padding: 2rem;
    background: #FAFAFA;
    border-radius: 8px;
}

.partnership-reasons-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary, #111827);
    margin: 0 0 1.5rem 0;
}

.partnership-reason {
    display: flex;
    gap: 0.5rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
    flex-wrap: wrap;
}

.partnership-reason:last-child {
    border-bottom: none;
}

.partnership-reason-label {
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary, #111827);
}

.partnership-reason-value {
    font-size: 0.9375rem;
    font-weight: 300;
    color: var(--text-secondary, #6B7280);
}

/* Partner targets */
.partner-targets {
    margin-top: 3rem;
}

.partner-targets-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: var(--text-primary, #111827);
    margin: 0 0 1.5rem 0;
}

.partner-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.partner-card {
    background: #FFFFFF;
    border: 1px solid var(--np-mid-grey, #E5E7EB);
    border-radius: 8px;
    padding: 1.5rem;
}

.partner-name {
    display: block;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary, #111827);
    margin-bottom: 0.25rem;
}

.partner-role {
    display: block;
    font-size: 0.75rem;
    font-weight: 500;
    color: var(--neural-purple, #3c1361);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 0.75rem;
}

.partner-description {
    font-size: 0.875rem;
    font-weight: 300;
    color: var(--text-secondary, #6B7280);
    line-height: 1.6;
    margin: 0;
}

@media (max-width: 768px) {
    .partner-grid {
        grid-template-columns: 1fr;
    }
}

/* Open standards list */
.open-standards-list {
    list-style: none;
    margin: 1.5rem 0;
    padding: 0;
}

.open-standards-list li {
    font-size: 1rem;
    color: var(--text-secondary, #6B7280);
    line-height: 1.6;
    padding: 0.5rem 0 0.5rem 1.5rem;
    position: relative;
}

.open-standards-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neural-purple, #3c1361);
}

.open-standards-list li strong {
    color: var(--text-primary, #111827);
    font-weight: 500;
}

/* Void shifts list */
.void-shifts {
    margin-top: 3rem;
    margin-bottom: 2rem;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    padding: 3rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 12px;
}

.void-shifts-label {
    display: block;
    font-size: 1rem;
    font-weight: 600;
    color: var(--neural-orange, #EA580C);
    margin-bottom: 2rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
}

.void-shift-item {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    padding: 1.25rem 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.void-shift-item:last-child {
    border-bottom: none;
}

.void-shift-from {
    font-size: 1.25rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.4);
    text-decoration: line-through;
    text-decoration-color: rgba(255, 255, 255, 0.3);
    min-width: auto;
    text-align: right;
    flex: 1;
}

.void-shift-arrow {
    font-size: 1.5rem;
    color: var(--neural-orange, #EA580C);
    flex-shrink: 0;
}

.void-shift-to {
    font-size: 1.25rem;
    font-weight: 600;
    color: #FFFFFF;
    text-align: left;
    flex: 1;
}

@media (max-width: 640px) {
    .void-shifts {
        padding: 2rem 1.5rem;
    }

    .void-shift-item {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .void-shift-from {
        text-align: center;
        font-size: 1.1rem;
    }

    .void-shift-arrow {
        font-size: 1.25rem;
    }

    .void-shift-to {
        text-align: center;
        font-size: 1.1rem;
    }
}

/* Bimodal comparison grid */
.void-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 2rem;
    margin-bottom: 3rem;
}

.void-comparison-column {
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 8px;
}

.void-comparison-title {
    font-size: 1.125rem;
    font-weight: 500;
    color: #FFFFFF;
    margin: 0 0 1.25rem 0;
    padding-bottom: 0.75rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.void-comparison-list {
    list-style: none;
    margin: 0;
    padding: 0;
}

.void-comparison-list li {
    font-size: 0.9375rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
    padding: 0.5rem 0;
    padding-left: 1.25rem;
    position: relative;
}

.void-comparison-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--neural-orange, #EA580C);
}

/* Responsive */
@media (max-width: 1024px) {
    .void-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }

    .void-stat {
        border-left: none;
        padding-left: 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
        padding-top: 1.5rem;
    }

    .void-stat:first-child,
    .void-stat:nth-child(2) {
        border-top: none;
        padding-top: 0;
    }
}

@media (max-width: 768px) {
    .infrastructure-void-section {
        padding: 4rem 0;
    }

    .void-content {
        margin-bottom: 3rem;
    }

    .void-headline {
        font-size: 1.75rem;
    }

    .void-body p {
        font-size: 1rem;
    }

    .void-stats {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .void-stat {
        padding: 1.5rem 0;
        border-top: 1px solid rgba(255, 255, 255, 0.1);
    }

    .void-stat:first-child {
        border-top: none;
        padding-top: 0;
    }

    .void-stat-number {
        font-size: 2.5rem;
    }

    .void-closing {
        font-size: 1.125rem;
        padding-top: 1.5rem;
    }

    .void-modes {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .void-mode {
        padding: 1.5rem;
    }

    .void-comparison {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .void-comparison-column {
        padding: 1.5rem;
    }

    .void-content--secondary {
        margin-top: 2rem;
        padding-top: 2rem;
    }
}

/* Feature Grid 2-column variant */
.feature-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

@media (max-width: 768px) {
    .feature-grid--2col {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PREMIUM INTERNAL LINKING COMPONENTS
   High-end, editorial-style navigation elements
   ========================================================================== */

/* Hero Action Bar - Refined dual-link navigation */
.hero-actions {
    display: flex;
    align-items: center;
    gap: 2rem;
    margin-top: 2.5rem;
    padding-top: 2rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.hero-action {
    display: inline-flex;
    align-items: center;
    gap: 0.625rem;
    font-size: 0.9375rem;
    font-weight: 400;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
}

.hero-action--primary {
    color: var(--text-primary, #111827);
    padding-bottom: 0.25rem;
}

.hero-action--primary::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, var(--np-purple, #3c1361), var(--np-orange, #EA580C));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.hero-action--primary:hover::after {
    transform: scaleX(1);
    transform-origin: left;
}

.hero-action--primary:hover {
    color: var(--np-purple, #3c1361);
}

.hero-action--secondary {
    color: var(--text-secondary, #6B7280);
    padding: 0.625rem 1.25rem;
    border: 1px solid var(--np-mid-grey, #E5E7EB);
    border-radius: 2px;
}

.hero-action--secondary:hover {
    color: var(--text-primary, #111827);
    border-color: var(--np-purple, #3c1361);
    background: rgba(60, 19, 97, 0.02);
}

.hero-action-arrow {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.hero-action:hover .hero-action-arrow {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .hero-actions {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
    }

    .hero-action--secondary {
        width: 100%;
        justify-content: center;
    }
}

/* Technology Ecosystem - Refined related links */
.tech-ecosystem {
    padding: 4rem 0;
    background: var(--np-neutral-warm, #FAF9F7);
    border-top: 1px solid rgba(0, 0, 0, 0.04);
    border-bottom: 1px solid rgba(0, 0, 0, 0.04);
}

.tech-ecosystem-inner {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 3rem;
}

.tech-ecosystem-label {
    display: block;
    font-size: 0.6875rem;
    font-weight: 600;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--text-muted, #9CA3AF);
    margin-bottom: 2rem;
}

.tech-ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1px;
    background: rgba(0, 0, 0, 0.04);
    border: 1px solid rgba(0, 0, 0, 0.04);
}

.tech-ecosystem-item {
    background: var(--np-white, #FFFFFF);
    padding: 1.75rem 1.5rem;
    text-decoration: none;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-ecosystem-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: linear-gradient(90deg, var(--np-purple, #3c1361), var(--np-orange, #EA580C));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s cubic-bezier(0.22, 1, 0.36, 1);
}

.tech-ecosystem-item:hover::before {
    transform: scaleX(1);
}

.tech-ecosystem-item:hover {
    background: var(--np-white, #FFFFFF);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
    z-index: 1;
}

.tech-ecosystem-item.is-current {
    background: rgba(60, 19, 97, 0.02);
    cursor: default;
}

.tech-ecosystem-item.is-current::before {
    transform: scaleX(1);
}

.tech-ecosystem-name {
    display: block;
    font-size: 0.9375rem;
    font-weight: 500;
    color: var(--text-primary, #111827);
    margin-bottom: 0.5rem;
    transition: color 0.3s ease;
}

.tech-ecosystem-item:hover .tech-ecosystem-name {
    color: var(--np-purple, #3c1361);
}

.tech-ecosystem-item.is-current .tech-ecosystem-name {
    color: var(--np-purple, #3c1361);
}

.tech-ecosystem-desc {
    font-size: 0.8125rem;
    font-weight: 300;
    color: var(--text-secondary, #6B7280);
    line-height: 1.5;
    margin: 0;
}

.tech-ecosystem-current {
    display: inline-block;
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--np-orange, #EA580C);
    margin-top: 0.75rem;
}

@media (max-width: 1024px) {
    .tech-ecosystem-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .tech-ecosystem-inner {
        padding: 0 1.5rem;
    }

    .tech-ecosystem-grid {
        grid-template-columns: 1fr;
    }

    .tech-ecosystem-item {
        padding: 1.5rem;
    }
}

/* Closing Invitation - Minimal editorial CTA */
.closing-invitation {
    padding: 5rem 0;
    text-align: center;
    background: var(--np-white, #FFFFFF);
}

.closing-invitation-inner {
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.closing-invitation-text {
    font-size: clamp(1.25rem, 2.5vw, 1.5rem);
    font-weight: 300;
    color: var(--text-primary, #111827);
    line-height: 1.5;
    margin: 0 0 2rem 0;
    letter-spacing: -0.01em;
}

.closing-invitation-text strong {
    font-weight: 400;
    background: linear-gradient(90deg, var(--np-purple, #3c1361), var(--np-orange, #EA580C));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.closing-invitation-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.9375rem;
    font-weight: 400;
    color: var(--text-primary, #111827);
    text-decoration: none;
    padding: 1rem 2rem;
    border: 1px solid var(--np-mid-grey, #E5E7EB);
    border-radius: 2px;
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    position: relative;
    overflow: hidden;
}

.closing-invitation-link::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--np-purple, #3c1361), var(--np-orange, #EA580C));
    opacity: 0;
    transition: opacity 0.4s ease;
    z-index: -1;
}

.closing-invitation-link:hover::before {
    opacity: 1;
}

.closing-invitation-link:hover {
    color: var(--np-white, #FFFFFF);
    border-color: transparent;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(60, 19, 97, 0.2);
}

.closing-invitation-link-arrow {
    font-size: 1.125rem;
    transition: transform 0.3s ease;
}

.closing-invitation-link:hover .closing-invitation-link-arrow {
    transform: translateX(4px);
}

@media (max-width: 640px) {
    .closing-invitation {
        padding: 4rem 0;
    }

    .closing-invitation-link {
        width: 100%;
        justify-content: center;
    }
}

/* Print styles */
@media print {
    .neural-section {
        background: white !important;
        padding: 2rem 0;
    }

    .feature-card,
    .highlight-card {
        break-inside: avoid;
        box-shadow: none;
        border: 1px solid #ccc;
    }

    .infrastructure-void-section {
        background: white !important;
    }

    .void-headline,
    .void-body p,
    .void-stat-number,
    .void-stat-context,
    .void-closing {
        color: #111827 !important;
        -webkit-text-fill-color: #111827 !important;
    }
}
