/* MBSE Co-Pilot Page Styles */

/* Page background */
body {
    background: #f9f8f4;
    overflow-x: hidden;
}
html {
    overflow-x: hidden;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
html::-webkit-scrollbar {
    display: none;
}
.footer {
    background: #1e1614 !important;
}

.mbse_page_wrap {
    overflow-x: hidden;
}

/* ========================================
   Hero Section
   ======================================== */
.mbse_hero {
    margin-top: 6.5vw;
    padding: 0 2.8vw;
}

.mbse_hero_box {
    background: #0a0a0a;
    min-height: 42vw;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    border-radius: 1.5vw;
    padding: 5vw 2vw;
}

/* Animated gradient blobs */
.mbse_blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0.85;
    transition: transform 0.15s ease-out;
}

.mbse_blob.blob1 {
    width: 45vw;
    height: 45vw;
    background: radial-gradient(circle, rgba(100, 130, 200, 0.9) 0%, rgba(80, 100, 180, 0.6) 40%, transparent 70%);
    top: 10%;
    left: 15%;
    animation: mbseBlob1 12s ease-in-out infinite;
}

.mbse_blob.blob2 {
    width: 40vw;
    height: 40vw;
    background: radial-gradient(circle, rgba(80, 160, 180, 0.85) 0%, rgba(60, 140, 160, 0.5) 40%, transparent 70%);
    top: 5%;
    right: 10%;
    animation: mbseBlob2 14s ease-in-out infinite;
}

.mbse_blob.blob3 {
    width: 35vw;
    height: 35vw;
    background: radial-gradient(circle, rgba(120, 100, 180, 0.9) 0%, rgba(100, 80, 160, 0.5) 40%, transparent 70%);
    bottom: 5%;
    left: 5%;
    animation: mbseBlob3 10s ease-in-out infinite;
}

.mbse_blob.blob4 {
    width: 42vw;
    height: 42vw;
    background: radial-gradient(circle, rgba(80, 140, 200, 0.9) 0%, rgba(60, 120, 180, 0.5) 40%, transparent 70%);
    bottom: -10%;
    right: 15%;
    animation: mbseBlob4 16s ease-in-out infinite;
}

@keyframes mbseBlob1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(5%, 10%) scale(1.05); }
    50% { transform: translate(-5%, 5%) scale(0.95); }
    75% { transform: translate(3%, -5%) scale(1.02); }
}
@keyframes mbseBlob2 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-8%, -5%) scale(1.08); }
    50% { transform: translate(5%, 8%) scale(0.92); }
    75% { transform: translate(-3%, 3%) scale(1.05); }
}
@keyframes mbseBlob3 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(6%, -8%) scale(0.95); }
    50% { transform: translate(-4%, -4%) scale(1.1); }
    75% { transform: translate(-6%, 6%) scale(0.98); }
}
@keyframes mbseBlob4 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-5%, 6%) scale(1.03); }
    50% { transform: translate(8%, -3%) scale(0.97); }
    75% { transform: translate(4%, 8%) scale(1.06); }
}

/* Hero Content */
.mbse_hero_content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 2vw;
}

.mbse_hero_badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 0.5vw 1.5vw;
    border-radius: 100px;
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 1.5vw;
    font-weight: 500;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.mbse_hero_content h1 {
    color: #ffffff;
    font-size: 3.8vw;
    font-weight: 400;
    margin: 0;
    line-height: 1.2;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.mbse_hero_subtitle {
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.5vw;
    margin-top: 0.8vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
}

.mbse_hero_desc {
    color: rgba(255, 255, 255, 0.75);
    font-size: 1vw;
    margin-top: 1.5vw;
    max-width: 50vw;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.7;
    font-weight: 400;
}

/* Hero Stats */
.mbse_hero_stats {
    display: flex;
    justify-content: center;
    gap: 3vw;
    margin-top: 3vw;
    flex-wrap: wrap;
}

.mbse_stat {
    text-align: center;
    padding: 1.5vw 2vw;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.8vw;
    min-width: 10vw;
}

.stat_number {
    display: block;
    font-size: 2.5vw;
    font-weight: 600;
    color: #ffffff;
    line-height: 1;
}

.stat_label {
    display: block;
    font-size: 0.8vw;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5vw;
}

.mbse_hero_cta {
    display: inline-block;
    margin-top: 2.5vw;
    padding: 1vw 2.5vw;
    background: #ffffff;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.95vw;
    font-weight: 500;
    border-radius: 0.5vw;
    transition: all 0.3s ease;
}

.mbse_hero_cta:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

/* ========================================
   Section Badges
   ======================================== */
.section_badge {
    display: inline-block;
    padding: 0.4vw 1.2vw;
    background: rgba(100, 130, 200, 0.1);
    border: 1px solid rgba(100, 130, 200, 0.3);
    border-radius: 2vw;
    color: #4a6da8;
    font-size: 0.8vw;
    font-weight: 500;
    margin-bottom: 1vw;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.section_badge_dark {
    display: inline-block;
    padding: 0.4vw 1.2vw;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 2vw;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.8vw;
    font-weight: 500;
    margin-bottom: 1vw;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

/* ========================================
   Problem Statement Section
   ======================================== */
.mbse_problem_section {
    padding: 6vw 11.3vw;
    background: #f9f8f4;
}

.mbse_problem_header {
    text-align: center;
    margin-bottom: 4vw;
}

.mbse_problem_header h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #1a1a1a;
    margin-bottom: 1vw;
}

.mbse_problem_header p {
    font-size: 1vw;
    color: #555;
    max-width: 45vw;
    margin: 0 auto;
    line-height: 1.7;
}

.mbse_problem_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.problem_card {
    background: #ffffff;
    padding: 2vw;
    border-radius: 1vw;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.problem_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #c9a76a;
}

.problem_icon {
    width: 3vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #f5f0e6;
    border-radius: 0.6vw;
    margin-bottom: 1.2vw;
    color: #8b6914;
}

.problem_icon svg {
    width: 1.5vw;
    height: 1.5vw;
}

.problem_card h3 {
    font-size: 1.2vw;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8vw;
}

.problem_card p {
    font-size: 0.9vw;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   Solution Section
   ======================================== */
.mbse_solution_section {
    display: flex;
    min-height: 50vw;
}

.mbse_solution_left {
    width: 50%;
    background: #0a0a0a;
    padding: 5vw 4vw 5vw 11.3vw;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.mbse_solution_left h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    line-height: 1.3;
    margin-top: 0;
    margin-bottom: 1.5vw;
}

.mbse_solution_left > p {
    font-size: 0.95vw;
    color: rgba(255, 255, 255, 0.8);
    line-height: 1.7;
    margin-bottom: 2vw;
    max-width: 32vw;
}

.solution_features {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.solution_feature {
    display: flex;
    align-items: flex-start;
    gap: 0.8vw;
}

.feature_check {
    width: 1.5vw;
    height: 1.5vw;
    background: rgba(74, 222, 128, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 0.1vw;
}

.feature_check svg {
    width: 0.9vw;
    height: 0.9vw;
    color: #4ade80;
}

.solution_feature span {
    font-size: 0.9vw;
    color: rgba(255, 255, 255, 0.85);
    line-height: 1.5;
}

/* Right Side - Glass Cards */
.mbse_solution_right {
    width: 50%;
    background: #0f0f0f;
    padding: 5vw;
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.solution_cards_stack {
    position: relative;
    width: 28vw;
    height: 42vw;
}

.solution_glass_card {
    position: absolute;
    width: 26vw;
    padding: 2vw;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.1) 0%, rgba(255, 255, 255, 0.05) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 1vw;
    box-shadow: 0 1vw 3vw rgba(0, 0, 0, 0.3);
    box-sizing: border-box;
    left: 50%;
    transform: translateX(-50%);
    transition: all 0.4s ease;
}

.solution_glass_card.card1 { top: 0; z-index: 4; }
.solution_glass_card.card2 { top: 10.5vw; z-index: 3; }
.solution_glass_card.card3 { top: 21vw; z-index: 2; }
.solution_glass_card.card4 { top: 31.5vw; z-index: 1; }

.solution_glass_card h3 {
    font-size: 1.3vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    margin-bottom: 0.6vw;
}

.solution_glass_card p {
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.solution_cards_stack:hover .solution_glass_card.card1 {
    transform: translateX(-50%) translateY(-0.5vw);
}
.solution_cards_stack:hover .solution_glass_card.card2 {
    transform: translateX(-50%) translateY(-0.3vw);
}

/* ========================================
   Impact Metrics Section
   ======================================== */
.mbse_impact_section {
    padding: 5vw 11.3vw;
    background: #f9f8f4;
}

.mbse_impact_header {
    text-align: center;
    margin-bottom: 3vw;
}

.mbse_impact_header h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #1a1a1a;
    margin-bottom: 0.5vw;
}

.mbse_impact_grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2vw;
    margin-bottom: 3vw;
}

.impact_card {
    background: #ffffff;
    padding: 2vw;
    border-radius: 1vw;
    text-align: center;
    border: 1px solid #e0e0e0;
}

.impact_before {
    font-size: 1vw;
    color: #e85555;
    text-decoration: line-through;
    margin-bottom: 0.8vw;
}

.impact_arrow {
    display: flex;
    justify-content: center;
    margin-bottom: 0.8vw;
    color: #1a1a1a;
}

.impact_arrow svg {
    width: 1.5vw;
    height: 1.5vw;
}

.impact_after {
    font-size: 1.8vw;
    font-weight: 600;
    color: #22c55e;
    margin-bottom: 0.5vw;
}

.impact_label {
    font-size: 0.85vw;
    color: #666;
}

.mbse_sovereign_badge {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.5vw;
    padding: 1.2vw 3vw;
    background: #1a1a1a;
    border-radius: 100px;
    width: fit-content;
    margin: 0 auto;
}

.mbse_sovereign_badge span {
    font-size: 0.9vw;
    color: #ffffff;
    font-weight: 500;
}

.mbse_sovereign_badge .separator {
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
}

/* ========================================
   Architecture Section
   ======================================== */
.mbse_architecture_section {
    padding: 6vw 11.3vw;
    background: #0a0a0a;
}

.mbse_arch_header {
    text-align: center;
    margin-bottom: 4vw;
}

.mbse_arch_header h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    margin-bottom: 1vw;
}

.mbse_arch_header p {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.7);
    max-width: 45vw;
    margin: 0 auto;
    line-height: 1.6;
}

.mbse_arch_diagram {
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.arch_layer {
    display: flex;
    align-items: stretch;
    border-radius: 0.8vw;
    overflow: hidden;
}

.layer_label {
    width: 6vw;
    padding: 1.5vw;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8vw;
    font-weight: 600;
    color: #ffffff;
    background: rgba(255, 255, 255, 0.1);
    flex-shrink: 0;
}

.layer_content {
    flex: 1;
    padding: 1.5vw 2vw;
}

.layer_content h4 {
    font-size: 1vw;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8vw;
}

.layer_content > p {
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.7);
}

.layer_components {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5vw;
}

.layer_components span {
    padding: 0.4vw 0.8vw;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 0.3vw;
    font-size: 0.75vw;
    color: rgba(255, 255, 255, 0.9);
}

/* Layer Colors */
.arch_layer.layer5 {
    background: #2d4a6f;
}
.arch_layer.layer4 {
    background: #3d6b4f;
}
.arch_layer.layer3 {
    background: #6b5a3d;
}
.arch_layer.layer2 {
    background: #5a3d6b;
}
.arch_layer.layer1 {
    background: #3d5a6b;
}
.arch_layer.layer0 {
    background: #4a3d2a;
}

/* ========================================
   Specialist Agents Section
   ======================================== */
.mbse_agents_section {
    padding: 6vw 11.3vw;
    background: #f9f8f4;
}

.mbse_agents_header {
    text-align: center;
    margin-bottom: 4vw;
}

.mbse_agents_header h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #1a1a1a;
    margin-bottom: 1vw;
}

.mbse_agents_header p {
    font-size: 1vw;
    color: #555;
    max-width: 45vw;
    margin: 0 auto;
    line-height: 1.6;
}

.mbse_agents_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.agent_card {
    background: #ffffff;
    padding: 2vw;
    border-radius: 1vw;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
    position: relative;
}

.agent_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

.agent_number {
    position: absolute;
    top: 1.5vw;
    right: 1.5vw;
    font-size: 2vw;
    font-weight: 700;
    color: rgba(0, 0, 0, 0.06);
}

.agent_card h3 {
    font-size: 1.2vw;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 1vw;
    padding-right: 2vw;
}

.agent_card > p {
    font-size: 0.9vw;
    color: #666;
    line-height: 1.6;
    margin-bottom: 1.5vw;
}

.agent_output {
    font-size: 0.8vw;
    color: #4a6da8;
    padding: 0.8vw 1vw;
    background: rgba(100, 130, 200, 0.08);
    border-radius: 0.5vw;
    border-left: 3px solid #4a6da8;
}

/* ========================================
   GRAG Section
   ======================================== */
.mbse_grag_section {
    padding: 6vw 11.3vw;
    background: #0a0a0a;
}

.mbse_grag_content {
    display: flex;
    gap: 4vw;
    align-items: flex-start;
}

.mbse_grag_left {
    flex: 1;
}

.mbse_grag_left h2 {
    font-size: 2.2vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    line-height: 1.3;
    margin-bottom: 1.5vw;
}

.mbse_grag_left > p {
    font-size: 0.95vw;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 1.5vw;
}

.grag_highlight {
    padding: 1.5vw;
    background: rgba(74, 222, 128, 0.1);
    border-left: 3px solid #4ade80;
    border-radius: 0 0.5vw 0.5vw 0;
    font-style: italic;
}

.mbse_grag_right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 1vw;
}

.grag_store_card {
    padding: 1.5vw 2vw;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 0.8vw;
    transition: all 0.3s ease;
}

.grag_store_card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.grag_store_card h4 {
    font-size: 1vw;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.5vw;
}

.grag_store_card p {
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

/* ========================================
   Differentiators Section
   ======================================== */
.mbse_diff_section {
    padding: 6vw 11.3vw;
    background: #f9f8f4;
}

.mbse_diff_header {
    text-align: center;
    margin-bottom: 4vw;
}

.mbse_diff_header h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #1a1a1a;
    margin-bottom: 0.5vw;
}

.mbse_diff_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.diff_card {
    background: #ffffff;
    padding: 2vw;
    border-radius: 1vw;
    border: 1px solid #e0e0e0;
    transition: all 0.3s ease;
}

.diff_card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    border-color: #4a6da8;
}

.diff_icon {
    width: 3vw;
    height: 3vw;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(100, 130, 200, 0.1);
    border-radius: 0.6vw;
    margin-bottom: 1.2vw;
    color: #4a6da8;
}

.diff_icon svg {
    width: 1.5vw;
    height: 1.5vw;
}

.diff_card h3 {
    font-size: 1.2vw;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 0.8vw;
}

.diff_card p {
    font-size: 0.9vw;
    color: #666;
    line-height: 1.6;
}

/* ========================================
   Tools Integration Section
   ======================================== */
.mbse_tools_section {
    padding: 6vw 11.3vw;
    background: #0a0a0a;
}

.mbse_tools_header {
    text-align: center;
    margin-bottom: 4vw;
}

.mbse_tools_header h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    margin-bottom: 1vw;
}

.mbse_tools_header p {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.7);
    max-width: 50vw;
    margin: 0 auto;
    line-height: 1.6;
}

.mbse_tools_grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2vw;
}

.tool_card {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2vw;
    border-radius: 1vw;
    transition: all 0.3s ease;
}

.tool_card:hover {
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.2);
}

.tool_card h4 {
    font-size: 1.3vw;
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 0.8vw;
}

.tool_card p {
    font-size: 0.85vw;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
    margin-bottom: 1vw;
    font-family: 'Courier New', monospace;
}

.tool_method {
    display: inline-block;
    padding: 0.3vw 0.8vw;
    background: rgba(74, 222, 128, 0.15);
    color: #4ade80;
    border-radius: 0.3vw;
    font-size: 0.75vw;
}

/* ========================================
   CTA Section
   ======================================== */
.mbse_cta_section {
    padding: 6vw 11.3vw;
    background: linear-gradient(135deg, #1a1a1a 0%, #2a2a2a 100%);
}

.mbse_cta_content {
    text-align: center;
    max-width: 50vw;
    margin: 0 auto;
}

.mbse_cta_content h2 {
    font-size: 2.5vw;
    font-weight: 400;
    font-style: italic;
    font-family: 'Times New Roman', Times, serif;
    color: #ffffff;
    margin-bottom: 1vw;
}

.mbse_cta_content p {
    font-size: 1vw;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 2.5vw;
}

.mbse_cta_buttons {
    display: flex;
    justify-content: center;
    gap: 1.5vw;
}

.mbse_cta_primary {
    display: inline-block;
    padding: 1vw 2.5vw;
    background: #ffffff;
    color: #0a0a0a;
    text-decoration: none;
    font-size: 0.95vw;
    font-weight: 500;
    border-radius: 0.5vw;
    transition: all 0.3s ease;
}

.mbse_cta_primary:hover {
    background: rgba(255, 255, 255, 0.9);
    transform: translateY(-2px);
}

.mbse_cta_secondary {
    display: inline-block;
    padding: 1vw 2.5vw;
    background: transparent;
    color: #ffffff;
    text-decoration: none;
    font-size: 0.95vw;
    font-weight: 500;
    border-radius: 0.5vw;
    border: 1px solid rgba(255, 255, 255, 0.3);
    transition: all 0.3s ease;
}

.mbse_cta_secondary:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
}

/* ========================================
   Responsive Styles - Tablet
   ======================================== */
@media (max-width: 1024px) {
    .mbse_hero {
        margin-top: 80px;
        padding: 0 4vw;
    }

    .mbse_hero_box {
        min-height: auto;
        padding: 8vw 4vw;
        border-radius: 3vw;
    }

    .mbse_hero_badge {
        font-size: 2vw;
        padding: 1vw 3vw;
    }

    .mbse_hero_content h1 {
        font-size: 6vw;
    }

    .mbse_hero_subtitle {
        font-size: 3vw;
    }

    .mbse_hero_desc {
        font-size: 2.5vw;
        max-width: 80%;
    }

    .mbse_hero_stats {
        gap: 2vw;
    }

    .mbse_stat {
        padding: 2vw 3vw;
        min-width: auto;
    }

    .stat_number {
        font-size: 4vw;
    }

    .stat_label {
        font-size: 1.8vw;
    }

    .mbse_hero_cta {
        padding: 2vw 4vw;
        font-size: 2.2vw;
    }

    /* Problem Section */
    .mbse_problem_section {
        padding: 8vw 4vw;
    }

    .mbse_problem_header h2 {
        font-size: 5vw;
    }

    .mbse_problem_header p {
        font-size: 2.5vw;
        max-width: 90%;
    }

    .mbse_problem_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .problem_card {
        padding: 4vw;
    }

    .problem_icon {
        width: 8vw;
        height: 8vw;
    }

    .problem_icon svg {
        width: 4vw;
        height: 4vw;
    }

    .problem_card h3 {
        font-size: 3vw;
    }

    .problem_card p {
        font-size: 2.2vw;
    }

    /* Solution Section */
    .mbse_solution_section {
        flex-direction: column;
    }

    .mbse_solution_left,
    .mbse_solution_right {
        width: 100%;
        padding: 8vw 4vw;
    }

    .mbse_solution_left h2 {
        font-size: 5vw;
    }

    .mbse_solution_left > p {
        font-size: 2.5vw;
        max-width: 100%;
    }

    .solution_feature {
        gap: 2vw;
    }

    .feature_check {
        width: 4vw;
        height: 4vw;
    }

    .feature_check svg {
        width: 2vw;
        height: 2vw;
    }

    .solution_feature span {
        font-size: 2.2vw;
    }

    .solution_cards_stack {
        width: 100%;
        height: auto;
        position: relative;
        display: flex;
        flex-direction: column;
        gap: 3vw;
    }

    .solution_glass_card {
        position: relative;
        width: 100%;
        left: 0;
        top: auto !important;
        transform: none;
        padding: 4vw;
    }

    .solution_glass_card h3 {
        font-size: 3.5vw;
    }

    .solution_glass_card p {
        font-size: 2.2vw;
    }

    /* Impact Section */
    .mbse_impact_section {
        padding: 8vw 4vw;
    }

    .mbse_impact_header h2 {
        font-size: 5vw;
    }

    .mbse_impact_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .impact_card {
        padding: 4vw;
    }

    .impact_before {
        font-size: 2.5vw;
    }

    .impact_after {
        font-size: 4vw;
    }

    .impact_label {
        font-size: 2vw;
    }

    .mbse_sovereign_badge {
        padding: 2vw 4vw;
        gap: 2vw;
    }

    .mbse_sovereign_badge span {
        font-size: 2vw;
    }

    /* Architecture Section */
    .mbse_architecture_section {
        padding: 8vw 4vw;
    }

    .mbse_arch_header h2 {
        font-size: 5vw;
    }

    .mbse_arch_header p {
        font-size: 2.5vw;
        max-width: 90%;
    }

    .arch_layer {
        flex-direction: column;
    }

    .layer_label {
        width: 100%;
        padding: 2vw;
        font-size: 2vw;
    }

    .layer_content {
        padding: 3vw;
    }

    .layer_content h4 {
        font-size: 2.5vw;
    }

    .layer_content > p {
        font-size: 2vw;
    }

    .layer_components span {
        padding: 1vw 2vw;
        font-size: 1.8vw;
    }

    /* Agents Section */
    .mbse_agents_section {
        padding: 8vw 4vw;
    }

    .mbse_agents_header h2 {
        font-size: 5vw;
    }

    .mbse_agents_header p {
        font-size: 2.5vw;
        max-width: 90%;
    }

    .mbse_agents_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .agent_card {
        padding: 4vw;
    }

    .agent_number {
        font-size: 5vw;
    }

    .agent_card h3 {
        font-size: 3vw;
    }

    .agent_card > p {
        font-size: 2.2vw;
    }

    .agent_output {
        font-size: 2vw;
    }

    /* GRAG Section */
    .mbse_grag_section {
        padding: 8vw 4vw;
    }

    .mbse_grag_content {
        flex-direction: column;
        gap: 4vw;
    }

    .mbse_grag_left h2 {
        font-size: 5vw;
    }

    .mbse_grag_left > p {
        font-size: 2.5vw;
    }

    .grag_store_card {
        padding: 3vw;
    }

    .grag_store_card h4 {
        font-size: 2.5vw;
    }

    .grag_store_card p {
        font-size: 2vw;
    }

    /* Diff Section */
    .mbse_diff_section {
        padding: 8vw 4vw;
    }

    .mbse_diff_header h2 {
        font-size: 5vw;
    }

    .mbse_diff_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .diff_card {
        padding: 4vw;
    }

    .diff_icon {
        width: 8vw;
        height: 8vw;
    }

    .diff_icon svg {
        width: 4vw;
        height: 4vw;
    }

    .diff_card h3 {
        font-size: 3vw;
    }

    .diff_card p {
        font-size: 2.2vw;
    }

    /* Tools Section */
    .mbse_tools_section {
        padding: 8vw 4vw;
    }

    .mbse_tools_header h2 {
        font-size: 5vw;
    }

    .mbse_tools_header p {
        font-size: 2.5vw;
        max-width: 90%;
    }

    .mbse_tools_grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 3vw;
    }

    .tool_card {
        padding: 4vw;
    }

    .tool_card h4 {
        font-size: 3vw;
    }

    .tool_card p {
        font-size: 2vw;
    }

    .tool_method {
        font-size: 1.8vw;
    }

    /* CTA Section */
    .mbse_cta_section {
        padding: 8vw 4vw;
    }

    .mbse_cta_content {
        max-width: 90%;
    }

    .mbse_cta_content h2 {
        font-size: 5vw;
    }

    .mbse_cta_content p {
        font-size: 2.5vw;
    }

    .mbse_cta_buttons {
        flex-direction: column;
        gap: 2vw;
    }

    .mbse_cta_primary,
    .mbse_cta_secondary {
        padding: 2.5vw 5vw;
        font-size: 2.5vw;
    }

    /* Badges */
    .section_badge,
    .section_badge_dark {
        font-size: 2vw;
        padding: 1vw 2.5vw;
    }
}

/* ========================================
   Responsive Styles - Mobile
   ======================================== */
@media (max-width: 500px) {
    .mbse_hero {
        margin-top: 70px;
        padding: 0 4vw;
    }

    .mbse_hero_box {
        padding: 12vw 5vw;
        border-radius: 5vw;
    }

    .mbse_hero_badge {
        font-size: 3vw;
        padding: 2vw 4vw;
    }

    .mbse_hero_content h1 {
        font-size: 8vw;
    }

    .mbse_hero_subtitle {
        font-size: 4vw;
    }

    .mbse_hero_desc {
        font-size: 3.5vw;
        max-width: 100%;
    }

    .mbse_hero_stats {
        flex-direction: column;
        gap: 3vw;
    }

    .mbse_stat {
        padding: 4vw;
    }

    .stat_number {
        font-size: 8vw;
    }

    .stat_label {
        font-size: 3vw;
    }

    .mbse_hero_cta {
        padding: 3vw 6vw;
        font-size: 3.5vw;
        margin-top: 5vw;
    }

    /* Problem Section */
    .mbse_problem_section {
        padding: 10vw 5vw;
    }

    .mbse_problem_header h2 {
        font-size: 7vw;
    }

    .mbse_problem_header p {
        font-size: 3.5vw;
        max-width: 100%;
    }

    .mbse_problem_grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .problem_card {
        padding: 5vw;
    }

    .problem_icon {
        width: 12vw;
        height: 12vw;
    }

    .problem_icon svg {
        width: 6vw;
        height: 6vw;
    }

    .problem_card h3 {
        font-size: 4.5vw;
    }

    .problem_card p {
        font-size: 3.5vw;
    }

    /* Solution Section */
    .mbse_solution_left,
    .mbse_solution_right {
        padding: 10vw 5vw;
    }

    .mbse_solution_left h2 {
        font-size: 7vw;
    }

    .mbse_solution_left > p {
        font-size: 3.5vw;
    }

    .solution_feature {
        gap: 3vw;
    }

    .feature_check {
        width: 6vw;
        height: 6vw;
    }

    .feature_check svg {
        width: 3vw;
        height: 3vw;
    }

    .solution_feature span {
        font-size: 3.2vw;
    }

    .solution_glass_card {
        padding: 5vw;
    }

    .solution_glass_card h3 {
        font-size: 5vw;
    }

    .solution_glass_card p {
        font-size: 3.2vw;
    }

    /* Impact Section */
    .mbse_impact_section {
        padding: 10vw 5vw;
    }

    .mbse_impact_header h2 {
        font-size: 7vw;
    }

    .mbse_impact_grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .impact_card {
        padding: 5vw;
    }

    .impact_before {
        font-size: 4vw;
    }

    .impact_after {
        font-size: 6vw;
    }

    .impact_label {
        font-size: 3.5vw;
    }

    .mbse_sovereign_badge {
        flex-direction: column;
        padding: 4vw 5vw;
        gap: 2vw;
    }

    .mbse_sovereign_badge span {
        font-size: 3vw;
    }

    .mbse_sovereign_badge .separator {
        width: 20vw;
        height: 1px;
    }

    /* Architecture Section */
    .mbse_architecture_section {
        padding: 10vw 5vw;
    }

    .mbse_arch_header h2 {
        font-size: 7vw;
    }

    .mbse_arch_header p {
        font-size: 3.5vw;
        max-width: 100%;
    }

    .mbse_arch_diagram {
        gap: 2vw;
    }

    .layer_label {
        font-size: 3vw;
        padding: 3vw;
    }

    .layer_content {
        padding: 4vw;
    }

    .layer_content h4 {
        font-size: 4vw;
    }

    .layer_content > p {
        font-size: 3vw;
    }

    .layer_components {
        gap: 2vw;
    }

    .layer_components span {
        padding: 2vw 3vw;
        font-size: 2.8vw;
    }

    /* Agents Section */
    .mbse_agents_section {
        padding: 10vw 5vw;
    }

    .mbse_agents_header h2 {
        font-size: 7vw;
    }

    .mbse_agents_header p {
        font-size: 3.5vw;
        max-width: 100%;
    }

    .mbse_agents_grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .agent_card {
        padding: 5vw;
    }

    .agent_number {
        font-size: 8vw;
    }

    .agent_card h3 {
        font-size: 5vw;
    }

    .agent_card > p {
        font-size: 3.5vw;
    }

    .agent_output {
        font-size: 3vw;
        padding: 3vw;
    }

    /* GRAG Section */
    .mbse_grag_section {
        padding: 10vw 5vw;
    }

    .mbse_grag_left h2 {
        font-size: 7vw;
    }

    .mbse_grag_left > p {
        font-size: 3.5vw;
    }

    .grag_highlight {
        padding: 4vw;
    }

    .grag_store_card {
        padding: 4vw;
    }

    .grag_store_card h4 {
        font-size: 4vw;
    }

    .grag_store_card p {
        font-size: 3vw;
    }

    /* Diff Section */
    .mbse_diff_section {
        padding: 10vw 5vw;
    }

    .mbse_diff_header h2 {
        font-size: 7vw;
    }

    .mbse_diff_grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .diff_card {
        padding: 5vw;
    }

    .diff_icon {
        width: 12vw;
        height: 12vw;
    }

    .diff_icon svg {
        width: 6vw;
        height: 6vw;
    }

    .diff_card h3 {
        font-size: 5vw;
    }

    .diff_card p {
        font-size: 3.5vw;
    }

    /* Tools Section */
    .mbse_tools_section {
        padding: 10vw 5vw;
    }

    .mbse_tools_header h2 {
        font-size: 7vw;
    }

    .mbse_tools_header p {
        font-size: 3.5vw;
        max-width: 100%;
    }

    .mbse_tools_grid {
        grid-template-columns: 1fr;
        gap: 4vw;
    }

    .tool_card {
        padding: 5vw;
    }

    .tool_card h4 {
        font-size: 5vw;
    }

    .tool_card p {
        font-size: 3vw;
    }

    .tool_method {
        font-size: 2.8vw;
        padding: 1.5vw 3vw;
    }

    /* CTA Section */
    .mbse_cta_section {
        padding: 10vw 5vw;
    }

    .mbse_cta_content {
        max-width: 100%;
    }

    .mbse_cta_content h2 {
        font-size: 7vw;
    }

    .mbse_cta_content p {
        font-size: 3.5vw;
    }

    .mbse_cta_primary,
    .mbse_cta_secondary {
        padding: 4vw 8vw;
        font-size: 4vw;
        width: 100%;
        text-align: center;
    }

    /* Badges */
    .section_badge,
    .section_badge_dark {
        font-size: 3vw;
        padding: 1.5vw 4vw;
        margin-bottom: 3vw;
    }
}
