/* ========================================
   BIZBALL GROUP - SYSTEMIC BRUTALISM
   Strategic Scaffolding Systems
   ======================================== */

/* ======== RESET & BASE ======== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    --concrete: #E6E6E6;
    --volt: #F0FF00;
    --black: #000000;
    --white: #FFFFFF;
    --grid-border: #000000;
    --text-primary: #000000;
    --text-secondary: #333333;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    background-color: var(--concrete);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
    cursor: default;
}

/* ======== CUSTOM CURSOR (DISABLED) ======== */
.cursor-dot,
.cursor-outline {
    display: none;
}

/* ======== GRID OVERLAY ======== */
.grid-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 99px, var(--grid-border) 99px, var(--grid-border) 100px),
        repeating-linear-gradient(90deg, transparent, transparent 99px, var(--grid-border) 99px, var(--grid-border) 100px);
    pointer-events: none;
    z-index: -1;
    opacity: 0.08;
}

/* ======== PAGE TRANSITION ======== */
.page-transition {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    z-index: 9998;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
}

.page-transition.active {
    opacity: 1;
    pointer-events: all;
}

.transition-text {
    color: var(--volt);
    font-size: 24px;
    font-weight: 700;
    letter-spacing: 4px;
    animation: pulse 1.5s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 1; }
}

/* ======== NAVIGATION ======== */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    background-color: var(--concrete);
    border-bottom: 1px solid var(--black);
    z-index: 1000;
    padding: 20px 0;
}

.nav-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo img {
    height: 32px;
    display: block;
}

.nav-links {
    display: flex;
    gap: 40px;
    align-items: center;
}

.nav-link {
    text-decoration: none;
    color: var(--text-primary);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 1px;
    position: relative;
    transition: all 0.3s ease;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background-color: var(--volt);
    transition: width 0.3s ease;
}

.nav-link:hover::after,
.nav-link.active::after {
    width: 100%;
}

.nav-link-cta {
    background-color: var(--volt);
    padding: 8px 20px;
    border: 1px solid var(--black);
}

.nav-link-cta::after {
    display: none;
}

.nav-link-cta:hover {
    background-color: var(--black);
    color: var(--volt);
}

/* ======== HAMBURGER MENU (MOBILE) ======== */
.menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-between;
    width: 30px;
    height: 24px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
}

.menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: var(--black);
    transition: all 0.3s ease;
    transform-origin: center;
}

.menu-toggle.active span:nth-child(1) {
    transform: translateY(10.5px) rotate(45deg);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: translateY(-10.5px) rotate(-45deg);
}

/* Mobile nav styles */
@media (max-width: 768px) {
    .menu-toggle {
        display: flex;
    }
    
    .nav-links {
        position: fixed;
        top: 73px;
        left: 0;
        right: 0;
        background-color: var(--concrete);
        border-bottom: 1px solid var(--black);
        flex-direction: column;
        gap: 0;
        padding: 0;
        max-height: 0;
        overflow: hidden;
        transition: max-height 0.3s ease;
    }
    
    .nav-links.mobile-open {
        max-height: 500px;
        border-bottom: 2px solid var(--black);
    }
    
    .nav-links a {
        width: 100%;
        padding: 20px 40px;
        border-bottom: 1px solid rgba(0, 0, 0, 0.1);
        text-align: left;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link-cta {
        background-color: var(--volt);
        border: none;
        border-top: 2px solid var(--black);
    }
}

/* ======== TYPOGRAPHY ======== */
.kinetic-headline {
    font-size: clamp(48px, 8vw, 120px);
    font-weight: 900;
    line-height: 0.95;
    letter-spacing: -2px;
    margin-bottom: 40px;
    display: flex;
    flex-wrap: wrap;
    gap: 0.2em;
}

.kinetic-word {
    display: inline-block;
    animation: kinetic-float 3s ease-in-out infinite;
    animation-delay: calc(var(--word-index, 0) * 0.1s);
}

@keyframes kinetic-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

.kinetic-word:nth-child(1) { --word-index: 0; }
.kinetic-word:nth-child(2) { --word-index: 1; }
.kinetic-word:nth-child(3) { --word-index: 2; }
.kinetic-word:nth-child(4) { --word-index: 3; }
.kinetic-word:nth-child(5) { --word-index: 4; }
.kinetic-word:nth-child(6) { --word-index: 5; }
.kinetic-word:nth-child(7) { --word-index: 6; }

/* ======== HERO SECTION ======== */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 2;
    background-color: var(--concrete);
}

.hero-content {
    max-width: 1200px;
    width: 100%;
    text-align: center;
    position: relative;
    z-index: 3;
}

.hero-statement {
    max-width: 800px;
    margin: 0 auto 60px;
    font-size: 20px;
    font-weight: 400;
    line-height: 1.6;
    color: var(--text-secondary);
}

.hero-metrics {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 900px;
    margin: 0 auto 60px;
    padding: 40px 0;
    border-top: 1px solid var(--black);
    border-bottom: 1px solid var(--black);
}

.metric-item {
    text-align: center;
}

.metric-value {
    font-size: 72px;
    font-weight: 900;
    line-height: 1;
    color: var(--black);
    margin-bottom: 12px;
}

.metric-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
}

.hero-cta {
    margin-top: 60px;
}

/* ======== WIREFRAME VISUAL ======== */
.wireframe-visual {
    position: absolute;
    top: 50%;
    right: 0;
    width: 50%;
    max-width: 800px;
    opacity: 0.1;
    pointer-events: none;
    transform: translateY(-50%);
    z-index: 0;
}

.wireframe-svg {
    width: 100%;
    height: auto;
}

.wireframe-line,
.wireframe-circle,
.wireframe-poly {
    animation: wireframe-draw 3s ease-in-out infinite;
}

@keyframes wireframe-draw {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ======== BUTTONS ======== */
.cta-button,
.secondary-button,
.plan-button {
    display: inline-block;
    padding: 18px 48px;
    background-color: var(--volt);
    color: var(--black);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    text-decoration: none;
    border: 2px solid var(--black);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background-color: var(--black);
    transition: left 0.3s ease;
    z-index: -1;
}

.cta-button:hover {
    color: var(--volt);
}

.cta-button:hover::before {
    left: 0;
}

.secondary-button {
    background-color: transparent;
    border: 2px solid var(--black);
    color: var(--black);
}

.secondary-button:hover {
    background-color: var(--black);
    color: var(--volt);
}

/* ======== CONTENT PAGES ======== */
.content-page {
    min-height: 100vh;
    padding: 120px 40px 80px;
    position: relative;
    z-index: 2;
}

.page-header {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.page-subtitle {
    font-size: 24px;
    font-weight: 400;
    color: var(--text-secondary);
    margin-top: 24px;
    max-width: 800px;
}

/* ======== CONTENT SECTIONS ======== */
.content-section {
    max-width: 1400px;
    margin: 0 auto 120px;
}

.section-grid {
    display: grid;
    gap: 80px;
}

.content-block {
    border: 1px solid var(--black);
    padding: 60px;
    background-color: var(--white);
    position: relative;
}

.block-number {
    position: absolute;
    top: -20px;
    left: 40px;
    background-color: var(--volt);
    padding: 8px 20px;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    border: 1px solid var(--black);
}

.block-title {
    font-size: 36px;
    font-weight: 900;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.block-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.emphasis-text {
    font-weight: 700;
    color: var(--black) !important;
    font-size: 20px !important;
}

/* ======== AFFINITY MATRIX ======== */
.matrix-flow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    align-items: center;
    margin: 40px 0;
    padding: 40px;
    background-color: var(--concrete);
    border: 1px solid var(--black);
}

.matrix-phase {
    text-align: center;
    padding: 24px;
    background-color: var(--white);
    border: 1px solid var(--black);
}

.phase-label {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 8px;
}

.phase-name {
    font-size: 20px;
    font-weight: 900;
    color: var(--black);
    margin-bottom: 8px;
}

.phase-desc {
    font-size: 12px;
    line-height: 1.4;
    color: var(--text-secondary);
}

.matrix-arrow {
    font-size: 32px;
    font-weight: 700;
    text-align: center;
    color: var(--volt);
    text-shadow: 1px 1px 0 var(--black);
}

/* ======== LEADERSHIP SECTION ======== */
.leadership-section {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 80px 60px;
    border: 1px solid var(--black);
    background-color: var(--white);
}

.leadership-header {
    margin-bottom: 60px;
}

.section-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
}

.leadership-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
}

.leader-name {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 12px;
}

.leader-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

.leader-bio p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.leader-quote {
    margin-top: 40px;
    padding: 40px;
    background-color: var(--volt);
    border: 1px solid var(--black);
    position: relative;
}

.quote-mark {
    font-size: 120px;
    font-weight: 900;
    line-height: 0.5;
    color: var(--black);
    opacity: 0.2;
    position: absolute;
    top: 20px;
    left: 20px;
}

.quote-text {
    font-size: 24px;
    font-weight: 700;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 16px;
    position: relative;
    z-index: 1;
}

.quote-attribution {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.leader-approach {
    padding: 40px;
    background-color: var(--concrete);
    border: 1px solid var(--black);
}

.approach-title {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.approach-list {
    list-style: none;
}

.approach-list li {
    font-size: 14px;
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 12px;
    position: relative;
}

.approach-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    color: var(--volt);
    font-weight: 900;
    text-shadow: 1px 1px 0 var(--black);
}

/* ======== FRAMEWORKS PAGE ======== */
.frameworks-section {
    max-width: 1400px;
    margin: 0 auto;
}

.framework-item {
    margin-bottom: 80px;
}

.framework-header {
    margin-bottom: 40px;
}

.framework-number {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.framework-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.framework-subtitle {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.framework-content {
    display: grid;
    gap: 40px;
}

.framework-problem,
.framework-solution,
.framework-outcomes {
    padding: 40px;
    border: 1px solid var(--black);
}

.framework-problem {
    background-color: rgba(0, 0, 0, 0.03);
}

.framework-solution {
    background-color: var(--white);
}

.framework-outcomes {
    background-color: var(--volt);
}

.content-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.framework-problem p,
.framework-solution p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 16px;
    color: var(--text-secondary);
}

.outcomes-list {
    list-style: none;
}

.outcomes-list li {
    font-size: 16px;
    line-height: 1.8;
    padding-left: 32px;
    margin-bottom: 12px;
    position: relative;
    color: var(--black);
}

.outcomes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 900;
    color: var(--black);
}

.framework-divider {
    height: 1px;
    background-color: var(--black);
    margin: 80px 0;
}

/* ======== CREATIVE PAGE - PRICING ======== */
.creative-intro {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 60px;
    border: 1px solid var(--black);
    background-color: var(--white);
}

.intro-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 32px;
}

.intro-statement p {
    font-size: 20px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.pricing-section {
    max-width: 1400px;
    margin: 0 auto 120px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    margin-top: 16px;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    margin-bottom: 40px;
}

.pricing-card {
    border: 2px solid var(--black);
    background-color: var(--white);
    padding: 48px;
    position: relative;
}

.featured-card {
    background-color: var(--volt);
    border: 3px solid var(--black);
}

.featured-badge {
    position: absolute;
    top: -16px;
    right: 40px;
    background-color: var(--black);
    color: var(--volt);
    padding: 8px 20px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
}

.card-header {
    margin-bottom: 32px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--black);
}

.plan-name {
    font-size: 24px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.plan-price {
    font-size: 56px;
    font-weight: 900;
    letter-spacing: -2px;
}

.price-period {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-secondary);
}

.card-features,
.card-specs {
    margin-bottom: 32px;
}

.features-label,
.specs-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.features-list,
.specs-list {
    list-style: none;
}

.features-list li,
.specs-list li {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 10px;
    position: relative;
}

.features-list li::before {
    content: '—';
    position: absolute;
    left: 0;
    font-weight: 900;
}

.specs-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 900;
}

.spec-key {
    font-weight: 700;
}

.card-cta {
    margin-top: 32px;
}

.plan-button {
    width: 100%;
    text-align: center;
    padding: 16px;
}

.pricing-note {
    max-width: 900px;
    margin: 0 auto;
    padding: 32px;
    border: 1px solid var(--black);
    background-color: var(--white);
    text-align: center;
}

.pricing-note p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ======== PROCESS SECTION ======== */
.process-section {
    max-width: 1400px;
    margin: 0 auto 120px;
}

.process-flow {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 20px;
    align-items: center;
}

.process-step {
    padding: 32px 24px;
    border: 1px solid var(--black);
    background-color: var(--white);
    min-height: 280px;
}

.step-number {
    font-size: 48px;
    font-weight: 900;
    color: var(--volt);
    text-shadow: 2px 2px 0 var(--black);
    margin-bottom: 16px;
}

.step-title {
    font-size: 16px;
    font-weight: 900;
    letter-spacing: -0.5px;
    margin-bottom: 12px;
}

.step-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.process-arrow {
    font-size: 32px;
    font-weight: 900;
    text-align: center;
}

/* ======== CAPABILITIES ======== */
.capabilities-section {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 60px;
    border: 1px solid var(--black);
    background-color: var(--white);
}

.capabilities-label {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.capabilities-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
}

.capability-category h3 {
    font-size: 18px;
    font-weight: 900;
    margin-bottom: 16px;
}

.capability-category ul {
    list-style: none;
}

.capability-category li {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
    padding-left: 16px;
    position: relative;
}

.capability-category li::before {
    content: '•';
    position: absolute;
    left: 0;
}

/* ======== RADAR PAGE ======== */
.intel-section {
    max-width: 1400px;
    margin: 0 auto;
}

.intel-item {
    margin-bottom: 120px;
}

.intel-header {
    margin-bottom: 40px;
}

.intel-type {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.intel-title {
    font-size: 64px;
    font-weight: 900;
    letter-spacing: -2px;
}

.intel-description {
    font-size: 20px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 48px;
}

.intel-divider {
    height: 1px;
    background-color: var(--black);
    margin: 80px 0;
}

/* ======== ARTICLES ======== */
.articles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
    margin-bottom: 48px;
}

.article-card {
    padding: 32px;
    border: 1px solid var(--black);
    background-color: var(--white);
    transition: all 0.3s ease;
}

.article-card:hover {
    background-color: var(--volt);
    transform: translateY(-4px);
}

.article-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.article-title {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 12px;
}

.article-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.article-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--black);
}

.intel-cta {
    text-align: center;
}

/* ======== NEWSLETTER ======== */
.newsletter-features {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}

.feature-item {
    display: flex;
    gap: 16px;
    padding: 24px;
    border: 1px solid var(--black);
    background-color: var(--white);
}

.feature-icon {
    font-size: 32px;
}

.feature-text {
    font-size: 15px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.newsletter-subscribe {
    max-width: 600px;
    margin: 0 auto;
}

.subscribe-form {
    display: flex;
    gap: 0;
    margin-bottom: 16px;
}

.subscribe-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--black);
    border-right: none;
    font-size: 14px;
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
}

.subscribe-input:focus {
    outline: none;
    background-color: var(--volt);
}

.subscribe-button {
    padding: 16px 32px;
    background-color: var(--black);
    color: var(--volt);
    border: 2px solid var(--black);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.subscribe-button:hover {
    background-color: var(--volt);
    color: var(--black);
}

.subscribe-note {
    font-size: 12px;
    text-align: center;
    color: var(--text-secondary);
}

/* ======== PODCAST ======== */
.podcast-episodes {
    display: grid;
    gap: 48px;
}

.episode-card {
    padding: 48px;
    border: 1px solid var(--black);
    background-color: var(--white);
}

.episode-number {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--volt);
    text-shadow: 1px 1px 0 var(--black);
    margin-bottom: 12px;
}

.episode-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 8px;
}

.episode-guest {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.episode-insights {
    margin-bottom: 32px;
    padding: 24px;
    background-color: var(--concrete);
    border: 1px solid var(--black);
}

.insights-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 12px;
}

.insights-list {
    list-style: none;
}

.insights-list li {
    font-size: 14px;
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
}

.insights-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 900;
}

.episode-player {
    margin-bottom: 24px;
}

.episode-player audio {
    width: 100%;
    height: 48px;
}

.episode-platforms {
    display: flex;
    gap: 24px;
}

.platform-link {
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--black);
    text-decoration: none;
    padding: 8px 20px;
    border: 1px solid var(--black);
    transition: all 0.3s ease;
}

.platform-link:hover {
    background-color: var(--volt);
}

/* ======== LAB PAGE ======== */
.lab-about {
    max-width: 1400px;
    margin: 0 auto 120px;
}

.about-content {
    display: grid;
    gap: 60px;
}

.about-text {
    padding: 60px;
    border: 1px solid var(--black);
    background-color: var(--white);
}

.about-title {
    font-size: 48px;
    font-weight: 900;
    margin-bottom: 32px;
}

.about-text p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 20px;
    color: var(--text-secondary);
}

.about-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.stat-block {
    padding: 40px;
    border: 1px solid var(--black);
    background-color: var(--volt);
    text-align: center;
}

.stat-value {
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 12px;
}

.stat-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.stat-desc {
    font-size: 14px;
    color: var(--text-secondary);
}

/* ======== CONTACT SECTION ======== */
.contact-section {
    max-width: 1400px;
    margin: 0 auto 120px;
}

.contact-header {
    text-align: center;
    margin-bottom: 60px;
}

.contact-container {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 60px;
}

.contact-info {
    display: grid;
    gap: 40px;
    align-content: start;
}

.info-block {
    padding: 32px;
    border: 1px solid var(--black);
    background-color: var(--white);
}

.info-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.info-value {
    font-size: 18px;
    line-height: 1.8;
    font-weight: 600;
}

.info-list {
    list-style: none;
}

.info-list li {
    font-size: 14px;
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
}

.info-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* ======== CONTACT FORM ======== */
.contact-form-container {
    position: relative;
}

.contact-form {
    padding: 48px;
    border: 2px solid var(--black);
    background-color: var(--white);
}

.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 8px;
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 14px 20px;
    border: 2px solid var(--black);
    font-size: 15px;
    font-family: 'Inter', sans-serif;
    background-color: var(--white);
    transition: all 0.3s ease;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    outline: none;
    background-color: var(--volt);
    border-color: var(--black);
}

.form-textarea {
    resize: vertical;
    min-height: 150px;
}

.form-submit {
    width: 100%;
    padding: 18px;
    background-color: var(--volt);
    color: var(--black);
    border: 2px solid var(--black);
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.form-submit:hover {
    background-color: var(--black);
    color: var(--volt);
}

.form-note {
    margin-top: 24px;
    padding: 20px;
    background-color: var(--concrete);
    border: 1px solid var(--black);
}

.form-note p {
    font-size: 12px;
    line-height: 1.6;
    color: var(--text-secondary);
}

.form-success {
    display: none;
    padding: 60px;
    border: 2px solid var(--black);
    background-color: var(--volt);
    text-align: center;
}

.form-success.active {
    display: block;
}

.success-icon {
    font-size: 72px;
    font-weight: 900;
    margin-bottom: 24px;
}

.success-title {
    font-size: 32px;
    font-weight: 900;
    margin-bottom: 16px;
}

.success-message {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ======== PRINCIPLES ======== */
.principles-section {
    max-width: 1400px;
    margin: 0 auto 120px;
}

.principles-content {
    padding: 60px;
    border: 1px solid var(--black);
    background-color: var(--white);
}

.principles-label {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 40px;
}

.principles-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
}

.principle-item {
    padding: 32px;
    border: 1px solid var(--black);
    background-color: var(--concrete);
}

.principle-title {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
}

.principle-text {
    font-size: 14px;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ======== MANIFESTO / PHILOSOPHY ======== */
.manifesto-section,
.implementation-section,
.cta-section,
.intel-philosophy {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 80px 60px;
    border: 2px solid var(--black);
    background-color: var(--volt);
    text-align: center;
}

.manifesto-label,
.implementation-label,
.philosophy-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 24px;
}

.manifesto-statement,
.implementation-title,
.cta-title,
.philosophy-statement {
    font-size: 36px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 32px;
}

.implementation-text,
.cta-text {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 32px;
}

/* ======== GLOBAL NEWSLETTER CTA ======== */
.global-newsletter {
    border-top: 2px solid var(--black);
    border-bottom: 2px solid var(--black);
    background-color: var(--concrete);
    padding: 80px 40px;
    margin: 120px 0 0;
    position: relative;
    z-index: 2;
}

.newsletter-cta-container {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.newsletter-cta-tag {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 24px;
}

.newsletter-cta-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 16px;
}

.newsletter-cta-desc {
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 40px;
}

.newsletter-cta-form {
    display: flex;
    gap: 12px;
    max-width: 600px;
    margin: 0 auto;
}

.newsletter-cta-input {
    flex: 1;
    padding: 16px 24px;
    border: 2px solid var(--black);
    background-color: var(--white);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.newsletter-cta-input:focus {
    outline: none;
    border-color: var(--volt);
}

.newsletter-cta-button {
    padding: 16px 32px;
    background-color: var(--volt);
    border: 2px solid var(--black);
    color: var(--black);
    font-family: 'Inter', sans-serif;
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 1px;
    cursor: pointer;
    transition: all 0.3s ease;
}

.newsletter-cta-button:hover {
    background-color: var(--black);
    color: var(--volt);
}

.newsletter-cta-note {
    margin-top: 16px;
    font-size: 12px;
    color: var(--text-secondary);
}

/* ======== FOOTER ======== */
.main-footer {
    border-top: 1px solid var(--black);
    padding: 40px 0;
    position: relative;
    z-index: 2;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 40px;
    flex-wrap: wrap;
}

.footer-social {
    display: flex;
    gap: 20px;
    align-items: center;
}

.social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border: 1px solid var(--black);
    color: var(--black);
    text-decoration: none;
    font-size: 18px;
    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: var(--volt);
    border-color: var(--volt);
    transform: translateY(-2px);
}

.social-link i {
    transition: transform 0.3s ease;
}

.social-link:hover i {
    transform: scale(1.1);
}

.footer-label {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 4px;
}

.footer-value {
    font-size: 13px;
    font-weight: 600;
    line-height: 1.6;
}

.footer-copyright {
    font-size: 12px;
    color: var(--text-secondary);
}

/* ======== RESPONSIVE DESIGN ======== */
@media (max-width: 1200px) {
    .hero-metrics {
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
    }
    
    .matrix-flow {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    
    .matrix-arrow {
        transform: rotate(90deg);
    }
    
    .leadership-content {
        grid-template-columns: 1fr;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .process-flow {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .capabilities-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .articles-grid {
        grid-template-columns: 1fr;
    }
    
    .newsletter-features {
        grid-template-columns: 1fr;
    }
    
    .contact-container {
        grid-template-columns: 1fr;
    }
    
    .principles-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 768px) {
    .nav-container {
        padding: 0 20px;
    }
    
    .hero-section,
    .content-page {
        padding: 120px 20px 60px;
    }
    
    .kinetic-headline {
        font-size: clamp(32px, 10vw, 64px);
    }
    
    .hero-metrics {
        grid-template-columns: 1fr;
        gap: 32px;
    }
    
    .metric-value {
        font-size: 56px;
    }
    
    .content-block {
        padding: 32px 24px;
    }
    
    .framework-title,
    .intel-title {
        font-size: 36px;
    }
    
    .capabilities-grid {
        grid-template-columns: 1fr;
    }
    
    .about-stats {
        grid-template-columns: 1fr;
    }
    
    .footer-container {
        flex-direction: column;
        gap: 24px;
        text-align: center;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .insights-title {
        font-size: 32px;
    }
    
    .global-newsletter {
        padding: 60px 24px;
    }
    
    .newsletter-cta-form {
        flex-direction: column;
    }
    
    .newsletter-cta-button {
        width: 100%;
    }
    
    body {
        cursor: default;
    }
    
    .cursor-dot,
    .cursor-outline {
        display: none;
    }
}

@media (max-width: 480px) {
    .kinetic-headline {
        font-size: 28px;
        letter-spacing: -1px;
    }
    
    .hero-statement {
        font-size: 16px;
    }
    
    .metric-value {
        font-size: 40px;
    }
    
    .block-title {
        font-size: 24px;
    }
    
    .framework-title,
    .intel-title {
        font-size: 28px;
    }
    
    .manifesto-statement,
    .implementation-title,
    .cta-title {
        font-size: 24px;
    }
}

/* ========================================
   NEW HOMEPAGE STYLES
   ======================================== */

/* ======== SPORTS BACKGROUND ======== */
.sports-background {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        url('data:image/svg+xml;utf8,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 1200 800"><defs><pattern id="stadium" x="0" y="0" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="40" fill="none" stroke="%23000" stroke-width="0.3" opacity="0.08"/><line x1="10" y1="50" x2="90" y2="50" stroke="%23000" stroke-width="0.3" opacity="0.08"/><line x1="50" y1="10" x2="50" y2="90" stroke="%23000" stroke-width="0.3" opacity="0.08"/></pattern></defs><rect width="1200" height="800" fill="url(%23stadium)"/></svg>');
    background-size: cover;
    background-position: center;
    pointer-events: none;
    z-index: 0;
    opacity: 0.3;
}

/* ======== NEW HERO ======== */
.hero-tag {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--black);
    margin-bottom: 24px;
    text-align: center;
}

.hero-headline {
    font-size: clamp(36px, 7vw, 80px);
    font-weight: 900;
    line-height: 1.05;
    letter-spacing: -2px;
    margin-bottom: 32px;
    text-align: center;
    color: var(--black);
}

.hero-statement {
    max-width: 800px;
    margin: 0 auto 40px;
}

.hero-statement p {
    color: var(--black);
    font-size: 18px;
    line-height: 1.8;
    font-weight: 500;
}

.hero-cta {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ======== ECOSYSTEM SECTION ======== */
.ecosystem-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
    position: relative;
    z-index: 2;
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-tag {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--black);
    margin-bottom: 16px;
}

.section-title {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    color: var(--black);
}

.ecosystem-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.ecosystem-card {
    padding: 48px 32px;
    border: 2px solid var(--black);
    background-color: var(--white);
    position: relative;
    transition: all 0.3s ease;
}

.ecosystem-card.featured {
    background-color: var(--volt);
    border-width: 3px;
}

.ecosystem-card:hover {
    transform: translateY(-4px);
    box-shadow: 8px 8px 0 var(--black);
}

.card-number {
    position: absolute;
    top: -16px;
    left: 24px;
    background-color: var(--volt);
    padding: 4px 16px;
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 1px;
    border: 2px solid var(--black);
}

.card-icon {
    font-size: 48px;
    margin-bottom: 16px;
}

.card-title {
    font-size: 32px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 8px;
    color: var(--black);
}

.card-subtitle {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 20px;
}

.card-description {
    font-size: 15px;
    line-height: 1.7;
    color: var(--black);
    margin-bottom: 24px;
}

.design-samples, .radar-feeds {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 24px;
}

.sample-tag, .feed-item {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    padding: 6px 12px;
    border: 1px solid var(--black);
    background-color: var(--concrete);
}

.card-link {
    display: inline-block;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--black);
    text-decoration: none;
    border-bottom: 2px solid var(--black);
    transition: all 0.3s ease;
}

.card-link:hover {
    border-bottom-color: var(--volt);
    color: var(--volt);
    text-shadow: 1px 1px 0 var(--black);
}

/* ======== FOUNDER LETTER ======== */
.founder-letter {
    max-width: 1400px;
    margin: 0 auto;
    padding: 120px 40px;
    position: relative;
    z-index: 2;
}

.letter-container {
    max-width: 900px;
    margin: 0 auto;
    padding: 60px;
    border: 2px solid var(--black);
    background-color: var(--white);
}

.letter-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--black);
    margin-bottom: 24px;
}

.letter-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    line-height: 1.3;
    letter-spacing: -1px;
    margin-bottom: 32px;
    color: var(--black);
}

.letter-content p {
    font-size: 18px;
    line-height: 1.8;
    margin-bottom: 24px;
    color: var(--black);
}

.letter-signature {
    margin-top: 48px;
    padding-top: 32px;
    border-top: 2px solid var(--black);
}

.signature-line {
    font-size: 24px;
    font-weight: 900;
    margin-bottom: 4px;
}

.signature-title {
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--black);
    margin-bottom: 8px;
}

.signature-credentials {
    font-size: 12px;
    color: var(--black);
}

.letter-cta {
    margin-top: 32px;
    text-align: center;
}

/* ======== FOCUS SECTION ======== */
.focus-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

.focus-container {
    padding: 60px;
    border: 2px solid var(--black);
    background-color: var(--concrete);
}

.focus-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--black);
    margin-bottom: 32px;
    text-align: center;
}

.focus-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.focus-item {
    text-align: center;
    padding: 40px 32px;
    border: 1px solid var(--black);
    background-color: var(--white);
}

.focus-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.focus-name {
    font-size: 18px;
    font-weight: 900;
    line-height: 1.4;
    color: var(--black);
    margin-bottom: 12px;
}

.focus-desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--text-secondary);
}

/* ======== INSIGHTS SECTION (Homepage) ======== */
.insights-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 80px 40px;
    position: relative;
    z-index: 2;
}

.insights-container {
    padding: 60px;
    border: 2px solid var(--black);
    background-color: var(--white);
}

.insights-header {
    text-align: center;
    margin-bottom: 60px;
}

.insights-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--black);
    margin-bottom: 16px;
}

.insights-title {
    font-size: 48px;
    font-weight: 900;
    letter-spacing: -1px;
    margin-bottom: 16px;
}

.insights-subtitle {
    font-size: 18px;
    line-height: 1.6;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
    margin-bottom: 40px;
}

.insight-card {
    padding: 32px;
    border: 1px solid var(--black);
    background-color: var(--concrete);
    transition: all 0.3s ease;
}

.insight-card:hover {
    background-color: var(--volt);
    transform: translateY(-4px);
}

.insight-tag {
    font-size: 10px;
    font-weight: 900;
    letter-spacing: 2px;
    color: var(--black);
    margin-bottom: 16px;
}

.insight-title {
    font-size: 20px;
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 12px;
    color: var(--black);
}

.insight-excerpt {
    font-size: 14px;
    line-height: 1.6;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.insight-link {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--black);
    text-decoration: none;
    display: inline-block;
    transition: color 0.3s ease;
}

.insight-link:hover {
    color: var(--black);
    text-decoration: underline;
}

.insights-cta {
    text-align: center;
    padding-top: 40px;
    border-top: 1px solid var(--black);
}

/* ======== DELIVERABLES LIST ======== */
.deliverables-list {
    margin-top: 24px;
    padding-top: 24px;
    border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.deliverable-item {
    font-size: 13px;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 8px;
    padding-left: 4px;
}

/* ========================================
   FRAMEWORKS PAGE - DEFICIT VS FIX
   ======================================== */

.header-tag {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.page-title {
    font-size: clamp(48px, 8vw, 96px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 24px;
}

.framework-table {
    max-width: 1400px;
    margin: 0 auto 80px;
}

.table-header {
    margin-bottom: 48px;
    text-align: center;
}

.framework-tag {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 12px;
}

.framework-name {
    font-size: clamp(48px, 7vw, 72px);
    font-weight: 900;
    letter-spacing: -2px;
    margin-bottom: 8px;
}

.framework-category {
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-secondary);
}

.deficit-fix-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
}

.deficit-column,
.fix-column {
    padding: 48px;
    border: 2px solid var(--black);
}

.deficit-column {
    background-color: rgba(0, 0, 0, 0.03);
}

.fix-column {
    background-color: var(--volt);
}

.column-label {
    font-size: 14px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.column-title {
    font-size: 28px;
    font-weight: 900;
    line-height: 1.2;
    margin-bottom: 32px;
}

.diagnosis-box,
.symptoms-box,
.solution-box,
.outcomes-box {
    margin-bottom: 32px;
}

.diagnosis-label,
.symptoms-label,
.solution-label,
.outcomes-label {
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 2px;
    margin-bottom: 12px;
    color: var(--text-secondary);
}

.diagnosis-name {
    font-size: 20px;
    font-weight: 900;
    margin-bottom: 12px;
}

.diagnosis-box p,
.solution-box p {
    font-size: 16px;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.solution-result {
    font-weight: 700;
    color: var(--black) !important;
}

.symptoms-list,
.outcomes-list {
    list-style: none;
    padding-left: 0;
}

.symptoms-list li,
.outcomes-list li {
    font-size: 15px;
    line-height: 1.8;
    padding-left: 24px;
    margin-bottom: 8px;
    position: relative;
}

.symptoms-list li::before {
    content: '→';
    position: absolute;
    left: 0;
    font-weight: 900;
}

.outcomes-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    font-weight: 900;
}

/* ======== DEPLOYMENT SECTION ======== */
.deployment-section {
    max-width: 1400px;
    margin: 0 auto 120px;
    padding: 80px 60px;
    border: 2px solid var(--black);
    background-color: var(--white);
    text-align: center;
}

.deployment-label {
    font-size: 12px;
    font-weight: 900;
    letter-spacing: 3px;
    color: var(--text-secondary);
    margin-bottom: 24px;
}

.deployment-title {
    font-size: clamp(28px, 5vw, 42px);
    font-weight: 900;
    line-height: 1.3;
    margin-bottom: 24px;
}

.deployment-text {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-secondary);
    max-width: 800px;
    margin: 0 auto 48px;
}

.deployment-process {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 16px;
    align-items: center;
    margin-bottom: 48px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.process-stage {
    padding: 24px 16px;
    border: 2px solid var(--black);
    background-color: var(--concrete);
    min-height: 140px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.stage-number {
    font-size: 32px;
    font-weight: 900;
    color: var(--volt);
    text-shadow: 2px 2px 0 var(--black);
    margin-bottom: 8px;
}

.stage-name {
    font-size: 14px;
    font-weight: 900;
    margin-bottom: 8px;
    text-align: center;
}

.stage-desc {
    font-size: 11px;
    line-height: 1.4;
    color: var(--text-secondary);
    text-align: center;
}

/* ======== RADAR PAGE ENHANCEMENTS ======== */
.embed-instruction {
    font-size: 12px;
    color: var(--text-secondary);
    margin-top: 12px;
    padding: 12px;
    background-color: var(--volt);
    border: 1px solid var(--black);
    text-align: center;
}

/* ======== RESPONSIVE UPDATES ======== */
@media (max-width: 1200px) {
    .ecosystem-grid {
        grid-template-columns: 1fr;
    }
    
    .deficit-fix-grid {
        grid-template-columns: 1fr;
    }
    
    .deployment-process {
        grid-template-columns: 1fr;
    }
    
    .process-arrow {
        transform: rotate(90deg);
    }
    
    .focus-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .hero-headline {
        font-size: 32px;
    }
    
    .hero-cta {
        flex-direction: column;
    }
    
    .ecosystem-card,
    .deficit-column,
    .fix-column,
    .letter-container,
    .focus-container,
    .deployment-section {
        padding: 32px 24px;
    }
    
    .focus-grid {
        grid-template-columns: 1fr;
    }
}
