/* ============================================
   RESET & BASE STYLES
   ============================================ */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

/* Screen reader only class for accessibility */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border-width: 0;
}

/* Skip to main content link */
.skip-to-main-content {
    position: absolute;
    top: -100px;
    left: 0;
    background: #dc2626;
    color: #ffffff;
    padding: 12px 24px;
    text-decoration: none;
    font-weight: 700;
    z-index: 10000;
    outline: 2px solid #ffffff;
    outline-offset: 2px;
    transition: top 0.3s ease;
}

.skip-to-main-content:focus {
    top: 0;
}
  html {
    scroll-behavior: smooth;
}
  body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background-color: #ffffff;
    background-image: 
repeating-linear-gradient(45deg, transparent, transparent 10px, rgba(220, 38, 38, 0.02) 10px, rgba(220, 38, 38, 0.02) 20px);
    overflow-x: hidden;
    width: 100%;
    max-width: 100vw;
}
  /* Military-style Custom Scrollbar */
::-webkit-scrollbar {
    width: 14px;
}
  ::-webkit-scrollbar-track {
    background: #f5f5f5;
    border-left: 1px solid rgba(220, 38, 38, 0.2);
}
  ::-webkit-scrollbar-thumb {
    background: linear-gradient(180deg, #dc2626, #ef4444, #dc2626);
    border: 2px solid #f5f5f5;
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
    transition: all 0.3s ease;
}
  ::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(180deg, #ef4444, #dc2626, #ef4444);
    box-shadow: 0 0 20px rgba(220, 38, 38, 0.6);
}
  /* Smooth scroll padding for fixed navbar */
html {
    scroll-padding-top: 100px;
}
  /* Page load animation */
@keyframes pageLoad {
    0% {
opacity: 0;
    }
    100% {
opacity: 1;
    }
}
  body {
    animation: pageLoad 0.5s ease-in;
}
  /* Navbar */
  .navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(250, 250, 250, 0.95) 100%);
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1), 0 2px 0 rgba(220, 38, 38, 0.3);
    z-index: 1000;
    padding: 15px 30px;
    display: flex;
    align-items: center;
    transition: box-shadow 0.3s ease;
    will-change: transform, opacity;
    border-bottom: 2px solid rgba(220, 38, 38, 0.2);
    backface-visibility: hidden;
    opacity: 0;
    transform: translate3d(0, -100%, 0);
  }
  
  .navbar.loaded {
    opacity: 1;
    transform: translate3d(0, 0, 0);
  }
  .navbar::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}
  .navbar.scrolled {
    background: linear-gradient(180deg, rgba(255, 255, 255, 0.98) 0%, rgba(245, 245, 245, 0.98) 100%);
    box-shadow: 0 6px 30px rgba(0, 0, 0, 0.15), 0 2px 0 rgba(220, 38, 38, 0.4);
}
  .navbar-logo-link {
    display: inline-block;
    text-decoration: none;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.navbar-logo-link:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

  .navbar-logo {
    height: 50px;
    width: auto;
    transition: transform 0.3s ease-out;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    display: block;
}
  .navbar-logo-link:hover .navbar-logo {
    transform: translateZ(0) scale(1.08);
}
  .navbar-nav {
    margin-left: auto;
    display: flex;
    gap: 30px;
    align-items: center;
}
  .nav-link {
    color: #000000;
    text-decoration: none;
    font-weight: 700;
    font-size: 16px;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.3s ease-out;
    position: relative;
    padding: 8px 16px;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
    background: transparent;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.nav-link:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}
  .nav-link::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(220, 38, 38, 0.1), rgba(220, 38, 38, 0.05));
    opacity: 0;
    transition: opacity 0.3s ease;
    clip-path: polygon(8px 0, 100% 0, calc(100% - 8px) 100%, 0 100%);
}
  .nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    width: 0;
    height: 2px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    transition: all 0.3s ease-out;
    transform: translateX(-50%);
    box-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}
  .nav-link:hover {
    color: #991b1b;
    transform: translate3d(0, -2px, 0);
}
  .nav-link:hover::before {
    opacity: 1;
}
  .nav-link:hover::after {
    width: 100%;
}
  /* Hero Section */
.hero-section {
    position: relative;
    width: 100%;
    height: 100vh;
    min-height: 600px;
    background-image: url('media/hero.png');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

/* Performance: Use will-change only when needed */
@media (prefers-reduced-motion: no-preference) {
    .hero-section {
        will-change: transform;
    }
}
  .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(250, 250, 250, 0.8) 100%);
    z-index: 1;
}
  .hero-overlay::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: 
repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(220, 38, 38, 0.02) 2px, rgba(220, 38, 38, 0.02) 4px),
repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(220, 38, 38, 0.02) 2px, rgba(220, 38, 38, 0.02) 4px);
    opacity: 0.5;
}
  .hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 0 20px;
    max-width: 1200px;
    width: 100%;
    transform: translate3d(0, 0, 0) !important;
    opacity: 1 !important;
}
  .hero-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: clamp(42px, 8vw, 96px);
    font-weight: 700;
    color: #000000;
    text-transform: uppercase;
    letter-spacing: 4px;
    margin-bottom: 30px;
    line-height: 1.1;
    text-shadow: 
0 0 20px rgba(220, 38, 38, 0.3),
0 0 40px rgba(220, 38, 38, 0.2);
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 15px), calc(100% - 15px) 100%, 0 100%);
    opacity: 0;
    transform: translateY(50px);
    will-change: opacity, transform;
}
  .hero-tagline {
    font-size: clamp(18px, 2.5vw, 32px);
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 20px;
    line-height: 1.4;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
  }
  
  .hero-tagline.animated {
    animation: taglineGlow 3s ease-in-out infinite;
  }
  
  @keyframes taglineGlow {
    0%, 100% {
      text-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
    }
    50% {
      text-shadow: 0 0 25px rgba(220, 38, 38, 0.8), 0 0 35px rgba(220, 38, 38, 0.6);
    }
  }
  .hero-subtitle {
    font-size: clamp(14px, 1.8vw, 22px);
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
    opacity: 0;
    transform: translateY(30px);
    will-change: opacity, transform;
}
  .container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
    padding: 80px 20px 60px;
    position: relative;
}
  .container::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #dc2626, transparent);
    opacity: 0.3;
}
  .container::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, transparent, #dc2626, transparent);
    opacity: 0.3;
}
  .title-section {
    text-align: center;
    margin-bottom: 60px;
}
  .title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 3px;
    text-transform: uppercase;
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.3);
    position: relative;
    display: inline-block;
}
  .title-underline {
    width: 200px;
    height: 4px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
    margin: 0 auto;
    position: relative;
    overflow: hidden;
    clip-path: polygon(10px 0, calc(100% - 10px) 0, 100% 100%, 0 100%);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.6);
}
  .title-underline::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 10px;
    height: 100%;
    background: #ef4444;
}
  .title-underline::after {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    width: 10px;
    height: 100%;
    background: #ef4444;
}
  .leadership-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}
  .profile-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 40px;
    text-align: center;
    transition: outline-color 0.3s ease-out, transform 0.3s ease-out, box-shadow 0.3s ease-out;
    box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: visible;
    border: 2px solid rgba(220, 38, 38, 0.15);
    outline: 2px solid transparent;
    outline-offset: -2px;
    backface-visibility: hidden;
}
  .profile-card .border-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
  .profile-card .border-line path {
    fill: none;
    stroke: #dc2626;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
  .profile-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
    transition: height 0.3s ease-out, box-shadow 0.3s ease-out;
  }
  .profile-card:hover::before {
    height: 6px;
    box-shadow: 0 0 25px rgba(220, 38, 38, 1);
  }
  .profile-card::after {
    display: none;
  }
  .profile-card:hover {
    outline-color: #dc2626;
    transform: translate3d(0, -5px, 0);
    box-shadow: 
0 8px 30px rgba(220, 38, 38, 0.2),
0 4px 15px rgba(0, 0, 0, 0.15),
inset 0 0 0 1px rgba(220, 38, 38, 0.3);
  }
  .headshot-container {
    width: 180px;
    height: 180px;
    margin: 0 auto 25px;
    position: relative;
    overflow: hidden;
    border-radius: 50%;
    background-color: #e5e5e5;
    transition: transform 0.3s ease-out;
}
  .profile-card:hover .headshot-container {
    transform: scale(1.02);
}
  .headshot {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    transform: translateZ(0) scale(1);
    backface-visibility: hidden;
    will-change: transform;
    transition: box-shadow 0.3s ease-out;
}
  .profile-card:hover .headshot {
    box-shadow: 0 8px 20px rgba(220, 38, 38, 0.3);
}
  .name {
    font-size: 28px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 8px;
    line-height: 1.2;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease-out, text-shadow 0.3s ease-out;
}
  .profile-card:hover .name {
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.3);
}
  .title-text {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 15px;
    line-height: 1.3;
    position: relative;
    z-index: 1;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: color 0.3s ease-out, text-shadow 0.3s ease-out;
}
  .profile-card:hover .title-text {
    color: #991b1b;
    text-shadow: 0 0 15px rgba(220, 38, 38, 0.5);
}
  .biography {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    text-align: left;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease-out;
}
  .profile-card:hover .biography {
    color: #000000;
}
  @keyframes simpleFadeIn {
    0% {
opacity: 0;
transform: translate3d(0, 20px, 0);
    }
    100% {
opacity: 1;
transform: translate3d(0, 0, 0);
    }
}
  /* Scroll-triggered fade-in animations */
  .fade-in-element {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease-out, transform 0.6s ease-out;
  }
  
  .fade-in-element.fade-in-left {
    transform: translateX(-30px);
  }
  
  .fade-in-element.fade-in-right {
    transform: translateX(30px);
  }
  
  .fade-in-element.fade-in-up {
    transform: translateY(30px);
  }
  
  .fade-in-element.fade-in-down {
    transform: translateY(-30px);
  }
  
  .fade-in-element.animated {
    opacity: 1;
    transform: translate(0, 0);
  }
  
  /* Universal visible class for all animated elements - now handled individually above */
  @keyframes pulse {
    0%, 100% {
transform: translateZ(0) scale(1);
    }
    50% {
transform: translateZ(0) scale(1.05);
    }
}
  @keyframes float {
    0%, 100% {
transform: translate3d(0, 0, 0);
    }
    50% {
transform: translate3d(0, -10px, 0);
    }
}
  /* Crisis Section */
.crisis-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 80px 20px;
    position: relative;
}
  .crisis-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}
  .crisis-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
  .crisis-title-section {
    text-align: center;
    margin-bottom: 60px;
}
  .crisis-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
  .crisis-title-underline {
    width: 200px;
    height: 3px;
    background-color: #dc2626;
    margin: 0 auto;
    border-radius: 2px;
}
  .crisis-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
  .crisis-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 40px;
    transition: outline-color 0.3s ease-out, transform 0.3s ease-out;
    box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: visible;
    border: 2px solid rgba(220, 38, 38, 0.15);
    outline: 2px solid transparent;
    outline-offset: -2px;
    backface-visibility: hidden;
}
  .crisis-card .border-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
  .crisis-card .border-line path {
    fill: none;
    stroke: #dc2626;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
  .crisis-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}
  .crisis-card::after {
    display: none;
}
  .crisis-card:hover {
    outline-color: #dc2626;
    transform: translate3d(0, -3px, 0);
  }
  .crisis-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 30px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}
  .stat-item {
    margin-bottom: 30px;
}
  .stat-item:last-child {
    margin-bottom: 0;
}
  .stat-number {
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    line-height: 1.1;
    margin-bottom: 8px;
    transition: color 0.3s ease-out;
}
  .crisis-card:hover .stat-number {
    color: #991b1b;
}
  .stat-description {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.5;
    transition: color 0.3s ease;
}
  .crisis-card:hover .stat-description {
    color: #000000;
}
  .bottleneck-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
  .bottleneck-item {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 30px;
    position: relative;
    transition: color 0.3s ease;
}
  .crisis-card:hover .bottleneck-item {
    color: #000000;
}
  .bottleneck-item:last-child {
    margin-bottom: 0;
}
  .bottleneck-item::before {
    content: '';
    position: absolute;
    left: 0;
    width: 24px;
    height: 24px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dc2626'%3E%3Cpath d='M19 6.41L17.59 5 12 10.59 6.41 5 5 6.41 10.59 12 5 17.59 6.41 19 12 13.41 17.59 19 19 17.59 13.41 12z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
}
  /* Workflow Section */
.workflow-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 80px 20px;
    position: relative;
}
  .workflow-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}
  .workflow-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
  .workflow-title-section {
    text-align: center;
    margin-bottom: 60px;
}
  .workflow-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
  .workflow-panels {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin-bottom: 40px;
}
  .workflow-panel {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 40px;
    transition: outline-color 0.3s ease-out, transform 0.3s ease-out;
    box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: visible;
    border: 2px solid rgba(220, 38, 38, 0.15);
    outline: 2px solid transparent;
    outline-offset: -2px;
    backface-visibility: hidden;
}
  .workflow-panel .border-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
  .workflow-panel .border-line path {
    fill: none;
    stroke: #dc2626;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
  .workflow-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}
  .workflow-panel::after {
    display: none;
}
  .workflow-panel:hover {
    outline-color: #dc2626;
    transform: translate3d(0, -3px, 0);
}
  .workflow-panel-header {
    font-family: 'Rajdhani', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 25px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}
  .workflow-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
  .workflow-item {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
    transition: color 0.3s ease;
}
  .workflow-panel:hover .workflow-item {
    color: #000000;
}
  .workflow-item:last-child {
    margin-bottom: 0;
}
  .workflow-item-icon {
    position: absolute;
    left: 0;
    top: 2px;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .workflow-item-icon svg {
    width: 100%;
    height: 100%;
}
  .workflow-item-icon.clipboard svg {
    fill: #dc2626;
}
  .workflow-item-icon.magnifying-glass svg {
    fill: #dc2626;
}
  .workflow-item-icon.checkmark svg {
    fill: #22c55e;
}
  .workflow-time {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}
  .workflow-time-label {
    font-weight: 700;
    color: #dc2626;
    font-size: 16px;
    margin-bottom: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
  .workflow-time-value {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}
  .workflow-result {
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid #e5e5e5;
}
  .workflow-result-label {
    font-weight: 700;
    color: #22c55e;
    font-size: 16px;
    margin-bottom: 5px;
}
  .workflow-result-value {
    font-size: 18px;
    font-weight: 600;
    color: #000000;
}
  .global-problem {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    border-left: 5px solid #dc2626;
    padding: 25px 30px;
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(220, 38, 38, 0.2),
-2px 0 0 #ef4444;
    transition: outline-color 0.3s ease-out;
    position: relative;
    overflow: visible;
    clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
    border: 2px solid rgba(220, 38, 38, 0.25);
    border-left: none;
    backface-visibility: hidden;
}
    .global-problem::before {
    content: '';
    position: absolute;
    left: -5px;
    top: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(180deg, #ef4444, #dc2626, #ef4444);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}
  .global-problem {
    outline: 2px solid transparent;
    outline-offset: -2px;
    transition: outline-color 0.3s ease-out;
}
  .global-problem:hover {
    outline-color: #dc2626;
}
  .global-problem-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .global-problem-icon svg {
    width: 100%;
    height: 100%;
    fill: #dc2626;
}
  .global-problem-text {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
}
  .global-problem-text strong {
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.4);
}
  /* Grid Problem Section */
.grid-problem-section {
    background-color: #ffffff;
    padding: 80px 20px;
}
  .grid-problem-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
  .grid-problem-title-section {
    text-align: center;
    margin-bottom: 60px;
}
  .grid-problem-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
  .grid-problem-title-underline {
    width: 200px;
    height: 3px;
    background-color: #dc2626;
    margin: 0 auto;
    border-radius: 2px;
}
  .grid-problem-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
  .grid-problem-column {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 40px;
    transition: outline-color 0.3s ease-out, transform 0.3s ease-out;
    box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: visible;
    border: 2px solid rgba(220, 38, 38, 0.15);
    outline: 2px solid transparent;
    outline-offset: -2px;
    backface-visibility: hidden;
}
  .grid-problem-column .border-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
  .grid-problem-column .border-line path {
    fill: none;
    stroke: #dc2626;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
  .grid-problem-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}
  .grid-problem-column::after {
    display: none;
}
  .grid-problem-column:hover {
    outline-color: #dc2626;
    transform: translate3d(0, -3px, 0);
}
  .grid-problem-column-title {
    font-size: 24px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 25px;
    line-height: 1.2;
}
  .grid-problem-list {
    list-style: none;
    padding: 0;
    margin: 0 0 20px 0;
}
  .grid-problem-item {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 12px;
    padding-left: 25px;
    position: relative;
}
  .grid-problem-item::before {
    content: '•';
    position: absolute;
    left: 0;
    color: #000000;
    font-size: 20px;
    font-weight: 700;
    line-height: 1.2;
}
  .grid-problem-note {
    font-size: 15px;
    font-style: italic;
    color: #333333;
    line-height: 1.6;
    margin-top: 15px;
}
  /* Solution Pipeline Section */
.solution-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 80px 20px;
    position: relative;
}
  .solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}
  .solution-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
  .solution-title-section {
    text-align: center;
    margin-bottom: 60px;
}
  .solution-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
  .solution-title-underline {
    width: 200px;
    height: 3px;
    background-color: #dc2626;
    margin: 0 auto;
    border-radius: 2px;
}
  .solution-pipeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    margin-bottom: 40px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
}
  .solution-panel {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 40px;
    transition: outline-color 0.3s ease-out, transform 0.3s ease-out;
    text-align: center;
    box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: visible;
    border: 2px solid rgba(220, 38, 38, 0.15);
    outline: 2px solid transparent;
    outline-offset: -2px;
    backface-visibility: hidden;
}
  .solution-panel .border-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
  .solution-panel .border-line path {
    fill: none;
    stroke: #dc2626;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
  .solution-panel::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}
  .solution-panel::after {
    display: none;
}
  .solution-panel:hover {
    outline-color: #dc2626;
    transform: translate3d(0, -3px, 0);
}
  .solution-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease-out;
    position: relative;
    z-index: 1;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}
  .solution-icon svg {
    width: 100%;
    height: 100%;
    fill: #dc2626;
    transition: fill 0.3s ease, transform 0.5s cubic-bezier(0.34, 1.56, 0.64, 1);
}
  .solution-panel:hover .solution-icon {
    transform: translateZ(0) scale(1.05) rotate(5deg);
}
  .solution-panel:hover .solution-icon svg {
    fill: #ef4444;
    animation: pulse 1s infinite;
}
  .solution-panel-title {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    line-height: 1.3;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    z-index: 1;
}
  .solution-panel:hover .solution-panel-title {
    color: #dc2626;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}
  .solution-panel-description {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    position: relative;
    z-index: 1;
    transition: color 0.3s ease;
}
  .solution-panel:hover .solution-panel-description {
    color: #000000;
}
  .solution-conclusion {
    background-color: #ffffff;
    border-left: 5px solid #dc2626;
    padding: 25px 30px;
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    max-width: 1400px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease-out;
    position: relative;
    overflow: visible;
}
  .solution-conclusion::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #ef4444, #dc2626);
    transition: height 0.3s ease-out;
}
  .solution-conclusion:hover::before {
    height: 100%;
}
  .solution-conclusion::after {
    content: '';
    position: absolute;
    inset: -2px;
    border: 2px solid transparent;
    border-left: none;
    opacity: 0;
    transition: opacity 0.3s ease-out;
    pointer-events: none;
    z-index: 1;
}
  .solution-conclusion:hover::after {
    opacity: 1;
    border-color: #dc2626;
}
  .solution-conclusion:hover {
    transform: translateX(3px);
}
  .solution-conclusion-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .solution-conclusion-icon svg {
    width: 100%;
    height: 100%;
    fill: #dc2626;
}
  .solution-conclusion-text {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}
  .solution-conclusion-text strong {
    font-weight: 700;
    color: #000000;
}
  /* Impact Comparison Section */
.impact-section {
    background-color: #ffffff;
    padding: 80px 20px;
}
  .impact-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
  .impact-title-section {
    text-align: center;
    margin-bottom: 60px;
}
  .impact-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
  .impact-title-underline {
    width: 200px;
    height: 3px;
    background-color: #dc2626;
    margin: 0 auto;
    border-radius: 2px;
}
  .impact-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}
  .impact-column {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 40px;
    transition: outline-color 0.3s ease-out, transform 0.3s ease-out;
    box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: visible;
    border: 2px solid rgba(220, 38, 38, 0.15);
    outline: 2px solid transparent;
    outline-offset: -2px;
    backface-visibility: hidden;
}
  .impact-column .border-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
  .impact-column .border-line path {
    fill: none;
    stroke: #dc2626;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
  .impact-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}
  .impact-column::after {
    display: none;
}
  .impact-column:hover {
    outline-color: #dc2626;
    transform: translate3d(0, -3px, 0);
}
  .impact-column-title {
    font-size: 24px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 30px;
    line-height: 1.2;
}
  .impact-list {
    list-style: none;
    padding: 0;
    margin: 0 0 30px 0;
}
  .impact-item {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
    margin-bottom: 20px;
    padding-left: 35px;
    position: relative;
}
  .impact-item:last-child {
    margin-bottom: 0;
}
  .impact-item-icon {
    position: absolute;
    left: 0;
    top: 2px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .impact-item-icon svg {
    width: 100%;
    height: 100%;
}
  .impact-item-icon.negative svg {
    fill: #dc2626;
}
  .impact-item-icon.positive svg {
    fill: #22c55e;
}
  .impact-timeframe {
    text-align: center;
    margin-top: 30px;
    padding-top: 30px;
    border-top: 2px solid #e5e5e5;
}
  .impact-timeframe-value {
    font-size: 48px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.1;
    margin-bottom: 8px;
    transition: transform 0.3s ease-out;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}
  .impact-column:hover .impact-timeframe-value {
    transform: translateZ(0) scale(1.05);
}
  .impact-timeframe-unit {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.5;
    transition: color 0.3s ease;
}
  .impact-column:hover .impact-timeframe-unit {
    color: #dc2626;
}
  /* Accessibility: Respect user's motion preferences */
  @media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
      animation-duration: 0.01ms !important;
      animation-iteration-count: 1 !important;
      transition-duration: 0.01ms !important;
      scroll-behavior: auto !important;
    }
    
    html {
      scroll-behavior: auto !important;
    }
  }

/* Performance: Optimize rendering */
img {
    max-width: 100%;
    height: auto;
    image-rendering: -webkit-optimize-contrast;
    image-rendering: crisp-edges;
}

/* Performance: Contain layout shifts */
.headshot,
.navbar-logo {
    aspect-ratio: attr(width) / attr(height);
}
  /* Mobile Menu Toggle Button */
  .mobile-menu-toggle {
    display: none;
    flex-direction: column;
    justify-content: space-around;
    width: 30px;
    height: 30px;
    background: transparent;
    border: none;
    cursor: pointer;
    padding: 0;
    z-index: 1001;
    position: relative;
    outline: 2px solid transparent;
    outline-offset: 2px;
  }

.mobile-menu-toggle:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}
  
  .mobile-menu-toggle span {
    width: 100%;
    height: 3px;
    background-color: #000000;
    border-radius: 3px;
    transition: all 0.3s ease;
    transform-origin: center;
  }
  
  .mobile-menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(8px, 8px);
  }
  
  .mobile-menu-toggle.active span:nth-child(2) {
    opacity: 0;
  }
  
  .mobile-menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(8px, -8px);
  }

  @media (max-width: 768px) {
    /* Prevent horizontal scrolling and ensure proper page flow */
    html, body {
      overflow-x: hidden;
      overflow-y: auto;
      max-width: 100vw;
      width: 100%;
      height: auto;
      min-height: 100vh;
      position: relative;
    }
    
    * {
      max-width: 100%;
      box-sizing: border-box;
    }
    
    /* Reset all height constraints that cause individual scrolling */
    section,
    .container,
    .crisis-container,
    .workflow-container,
    .grid-problem-container,
    .solution-container,
    .impact-container,
    .thesis-container,
    .competitive-container,
    .business-model-container,
    .validation-container,
    .contact-container,
    .hero-content,
    .crisis-section,
    .workflow-section,
    .grid-problem-section,
    .solution-section,
    .impact-section,
    .thesis-section,
    .competitive-section,
    .business-model-section,
    .validation-section,
    .contact-section {
      height: auto !important;
      min-height: 0 !important;
      max-height: none !important;
      overflow: visible !important;
      position: relative !important;
    }
    
    /* Mobile Navbar - Logo Only, stays fixed at top */
    .navbar {
      padding: 15px 20px;
      justify-content: center;
      position: fixed;
      top: 0;
      left: 0;
      right: 0;
      max-width: 100vw;
    }
    
    .navbar-logo {
      height: 40px;
      margin: 0 auto;
    }
    
    .mobile-menu-toggle {
      display: none !important;
    }
    
    .navbar-nav {
      display: none !important;
    }
    
    /* Mobile Hero - Vertical Card Style */
    .hero-section {
      background-attachment: scroll;
      background-image: url('media/heromobile.png') !important;
      min-height: 600px;
      height: auto;
      padding: 180px 20px 120px;
      background-size: cover;
      background-position: center;
      background-repeat: no-repeat;
      display: flex;
      align-items: center;
      justify-content: center;
      position: relative;
    }
    
    .hero-section::before {
      display: none;
    }
    
    .hero-overlay {
      background: linear-gradient(to bottom, rgba(255, 255, 255, 0.7) 0%, rgba(250, 250, 250, 0.8) 100%);
      position: absolute;
      top: 0;
      left: 0;
      right: 0;
      bottom: 0;
      z-index: 1;
    }
    
    .hero-overlay::before {
      display: none;
    }
    
    .hero-overlay::after {
      content: '';
      position: absolute;
      inset: 0;
      background-image: 
        repeating-linear-gradient(0deg, transparent, transparent 2px, rgba(220, 38, 38, 0.02) 2px, rgba(220, 38, 38, 0.02) 4px),
        repeating-linear-gradient(90deg, transparent, transparent 2px, rgba(220, 38, 38, 0.02) 2px, rgba(220, 38, 38, 0.02) 4px);
      opacity: 0.5;
    }
    
    .hero-content {
      padding: 0 20px;
      max-width: 100%;
      width: 100%;
      box-sizing: border-box;
      position: relative;
      z-index: 2;
    }
    
    .hero-title {
      font-size: clamp(28px, 9vw, 36px);
      letter-spacing: 2px;
      margin-bottom: 24px;
      line-height: 1.2;
      text-shadow: 
        2px 2px 4px rgba(255, 255, 255, 0.9),
        0 0 20px rgba(255, 255, 255, 0.8),
        0 0 2px rgba(0, 0, 0, 0.3);
      word-wrap: break-word;
      color: #000000;
      font-weight: 700;
    }
    
    .hero-tagline {
      font-size: clamp(18px, 5.5vw, 22px);
      margin-bottom: 18px;
      letter-spacing: 1px;
      line-height: 1.4;
      word-wrap: break-word;
      text-shadow: 
        1px 1px 3px rgba(255, 255, 255, 0.9),
        0 0 15px rgba(255, 255, 255, 0.7),
        0 0 2px rgba(0, 0, 0, 0.2);
      color: #dc2626;
      font-weight: 700;
    }
    
    .hero-subtitle {
      font-size: clamp(15px, 4.5vw, 18px);
      line-height: 1.6;
      word-wrap: break-word;
      text-shadow: 
        1px 1px 2px rgba(255, 255, 255, 0.9),
        0 0 10px rgba(255, 255, 255, 0.6),
        0 0 2px rgba(0, 0, 0, 0.15);
      color: #333333;
      font-weight: 400;
    }
    
    /* Mobile Container - Full Width Cards with Proper Spacing */
    .container {
      padding: 80px 15px 70px;
      max-width: 100vw;
      width: 100%;
    }
    
    .crisis-container,
    .workflow-container,
    .grid-problem-container,
    .solution-container,
    .impact-container,
    .thesis-container,
    .competitive-container,
    .business-model-container,
    .validation-container,
    .contact-container {
      max-width: 100vw;
      width: 100%;
      padding: 0 15px;
    }
    
    .crisis-section,
    .workflow-section,
    .grid-problem-section,
    .solution-section,
    .impact-section,
    .thesis-section,
    .competitive-section,
    .business-model-section,
    .validation-section,
    .contact-section {
      max-width: 100vw;
      width: 100%;
      padding: 80px 15px 70px;
    }
    
    .container::before,
    .container::after {
      display: none;
    }
    
    .title-section,
    .crisis-title-section,
    .workflow-title-section,
    .grid-problem-title-section,
    .solution-title-section,
    .impact-title-section,
    .thesis-title-section,
    .competitive-title-section,
    .business-model-title-section,
    .validation-title-section,
    .contact-title-section {
      margin-bottom: 40px;
    }
    
    .title {
      font-size: 28px;
      letter-spacing: 2px;
      margin-bottom: 12px;
      word-wrap: break-word;
    }
    
    .crisis-title,
    .workflow-title,
    .grid-problem-title,
    .solution-title,
    .impact-title,
    .thesis-title,
    .competitive-title,
    .business-model-title,
    .validation-title,
    .contact-title {
      word-wrap: break-word;
    }
    
    .title-underline {
      width: 120px;
      height: 3px;
    }
    
    /* Mobile Leadership - 2x2 Grid */
    .leadership-grid {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px !important;
      margin-top: 40px;
      margin-bottom: 30px;
      width: 100%;
      grid-auto-rows: auto;
    }
    
    .profile-card {
      padding: 12px 10px;
      border-radius: 0;
      clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
      background: #ffffff;
      width: 100%;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .profile-card::before {
      height: 3px;
      border-radius: 0;
    }
    
    .profile-card:active {
      transform: scale(0.98);
      box-shadow: 0 2px 6px rgba(0, 0, 0, 0.15);
    }
    
    .headshot-container {
      width: 70px;
      height: 70px;
      margin: 0 auto 8px;
      flex-shrink: 0;
    }
    
    .name {
      font-size: 14px;
      margin-bottom: 3px;
      text-align: center;
      line-height: 1.2;
    }
    
    .title-text {
      font-size: 11px;
      margin-bottom: 6px;
      text-align: center;
      line-height: 1.2;
    }
    
    .biography {
      font-size: 10px;
      text-align: center;
      line-height: 1.4;
    }
    
    /* Mobile Crisis Section */
    .crisis-section {
      padding: 60px 10px 50px;
      width: 100%;
      max-width: 100vw;
    }
    
    .crisis-title {
      font-size: 28px;
      margin-bottom: 12px;
      word-wrap: break-word;
    }
    
    .crisis-title-underline {
      width: 120px;
    }
    
    .crisis-cards {
      grid-template-columns: 1fr;
      gap: 25px;
      margin-top: 40px;
      width: 100%;
    }
    
    .crisis-card {
      padding: 25px 15px;
      border-radius: 0;
      clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
      width: 100%;
      box-sizing: border-box;
    }
    
    .crisis-card::before {
      height: 4px;
      border-radius: 0;
    }
    
    .crisis-card:active {
      transform: scale(0.98);
    }
    
    .crisis-card-title {
      font-size: 20px;
      margin-bottom: 20px;
      word-wrap: break-word;
    }
    
    .stat-item {
      margin-bottom: 25px;
      text-align: center;
    }
    
    .stat-number {
      font-size: 42px;
      margin-bottom: 6px;
      word-wrap: break-word;
    }
    
    .stat-description {
      font-size: 14px;
      word-wrap: break-word;
    }
    
    .bottleneck-item {
      font-size: 14px;
      margin-bottom: 15px;
      padding-left: 25px;
      word-wrap: break-word;
    }
    
    /* Mobile Workflow Section */
    .workflow-section {
      padding: 60px 10px 50px;
    }
    
    .workflow-title {
      font-size: 28px;
      margin-bottom: 12px;
    }
    
    .workflow-panels {
      grid-template-columns: 1fr;
      gap: 25px;
      margin-top: 40px;
      margin-bottom: 40px;
    }
    
    .workflow-panel {
      padding: 25px 20px;
      border-radius: 0;
      clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
    }
    
    .workflow-panel::before {
      height: 4px;
      border-radius: 0;
    }
    
    .workflow-panel:active {
      transform: scale(0.98);
    }
    
    .workflow-panel-header {
      font-size: 19px;
      margin-bottom: 20px;
    }
    
    .workflow-item {
      font-size: 14px;
      margin-bottom: 15px;
      padding-left: 30px;
    }
    
    .workflow-time,
    .workflow-result {
      margin-top: 20px;
      padding-top: 15px;
      text-align: center;
    }
    
    .global-problem {
      padding: 20px;
      flex-direction: column;
      border-radius: 0;
      clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
      margin-top: 30px;
      border-left: 4px solid #dc2626;
    }
    
    .global-problem-text {
      font-size: 15px;
    }
    
    /* Mobile Grid Problem Section */
    .grid-problem-section {
      padding: 50px 15px;
    }
    
    .grid-problem-title {
      font-size: 28px;
      margin-bottom: 12px;
    }
    
    .grid-problem-title-underline {
      width: 120px;
    }
    
    .grid-problem-columns {
      grid-template-columns: 1fr;
      gap: 25px;
      margin-top: 40px;
    }
    
    .grid-problem-column {
      padding: 25px 20px;
      border-radius: 0;
      clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
    }
    
    .grid-problem-column::before {
      height: 4px;
      border-radius: 0;
    }
    
    .grid-problem-column:active {
      transform: scale(0.98);
    }
    
    .grid-problem-column-title {
      font-size: 19px;
      margin-bottom: 20px;
    }
    
    .grid-problem-item {
      font-size: 14px;
      margin-bottom: 10px;
    }
    
    .grid-problem-note {
      font-size: 13px;
      margin-top: 12px;
    }
    
    /* Mobile Solution Section - 2x2 Grid */
    .solution-section {
      padding: 80px 15px 70px;
    }
    
    .solution-title {
      font-size: 28px;
      margin-bottom: 20px;
    }
    
    .solution-title-underline {
      width: 120px;
    }
    
    .solution-pipeline {
      display: grid !important;
      grid-template-columns: repeat(2, 1fr) !important;
      gap: 20px !important;
      margin-bottom: 40px;
      margin-top: 30px;
      width: 100%;
    }
    
    .solution-panel {
      padding: 25px 15px;
      border-radius: 0;
      clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
      text-align: center;
      width: 100%;
      min-width: 0;
      display: flex;
      flex-direction: column;
      align-items: center;
      min-height: auto;
    }
    
    .solution-panel::before {
      height: 3px;
      border-radius: 8px 8px 0 0;
    }
    
    .solution-panel:active {
      transform: scale(0.98);
    }
    
    .solution-icon {
      width: 40px;
      height: 40px;
      margin: 0 auto 15px;
      flex-shrink: 0;
    }
    
    .solution-icon svg {
      width: 100%;
      height: 100%;
    }
    
    .solution-panel-title {
      font-size: 14px;
      margin-bottom: 10px;
      line-height: 1.3;
    }
    
    .solution-panel-description {
      font-size: 12px;
      line-height: 1.5;
    }
    
    .solution-conclusion {
      padding: 25px 20px;
      flex-direction: column;
      border-radius: 0;
      clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
      margin-top: 40px;
      border-left: 4px solid #dc2626;
    }
    
    .solution-conclusion-text {
      font-size: 15px;
    }
    
    /* Mobile Impact Section */
    .impact-section {
      padding: 50px 15px;
    }
    
    .impact-title {
      font-size: 28px;
      margin-bottom: 12px;
    }
    
    .impact-title-underline {
      width: 120px;
    }
    
    .impact-comparison {
      grid-template-columns: 1fr;
      gap: 25px;
      margin-top: 40px;
      margin-bottom: 30px;
    }
    
    .impact-column {
      padding: 25px 20px;
      border-radius: 0;
      clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
    }
    
    .impact-column::before {
      height: 4px;
      border-radius: 0;
    }
    
    .impact-column:active {
      transform: scale(0.98);
    }
    
    .impact-column-title {
      font-size: 19px;
      margin-bottom: 20px;
      text-align: center;
    }
    
    .impact-item {
      font-size: 14px;
      margin-bottom: 15px;
      padding-left: 30px;
    }
    
    .impact-timeframe {
      margin-top: 25px;
      padding-top: 20px;
    }
    
    .impact-timeframe-value {
      font-size: 38px;
    }
    
    .impact-timeframe-unit {
      font-size: 15px;
    }
    
    /* Mobile Thesis Section */
    .thesis-section {
      padding: 60px 10px 50px;
    }
    
    .thesis-title {
      font-size: 28px;
      margin-bottom: 12px;
    }
    
    .thesis-title-underline {
      width: 120px;
    }
    
    .thesis-list {
      margin-bottom: 40px;
      margin-top: 30px;
    }
    
    .thesis-item {
      font-size: 15px;
      margin-bottom: 25px;
      padding-left: 30px;
      line-height: 1.7;
    }
    
    .thesis-item:active {
      transform: translateX(5px);
    }
    
    .thesis-item::before {
      width: 10px;
      height: 10px;
      top: 8px;
    }
    
    .thesis-conclusion {
      padding: 25px 20px;
      flex-direction: column;
      border-radius: 0;
      clip-path: polygon(0 0, calc(100% - 15px) 0, 100% 15px, 100% 100%, 0 100%);
      margin-top: 40px;
      border-left: 4px solid #dc2626;
    }
    
    .thesis-conclusion-text {
      font-size: 15px;
      line-height: 1.6;
    }
    
    /* Mobile Competitive Section - 1x4 grid with PLG on top */
    .competitive-section {
      padding: 50px 15px;
    }
    
    .competitive-title {
      font-size: 28px;
      margin-bottom: 12px;
    }
    
    .competitive-title-underline {
      width: 120px;
    }
    
    .competitive-matrix-wrapper {
      padding-left: 0;
      padding-bottom: 0;
    }
    
    .competitive-axis-label {
      display: none !important;
    }
    
    .competitive-matrix {
      display: grid !important;
      grid-template-columns: 1fr !important;
      grid-template-rows: repeat(4, auto) !important;
      gap: 16px !important;
      padding: 0;
      margin-top: 24px;
      margin-bottom: 30px;
      width: 100%;
    }
    
    .competitive-quadrant {
      padding: 14px 12px;
      border-radius: 0;
      clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
      width: 100%;
      min-width: 0;
      order: 0;
    }
    
    .competitive-quadrant.highlighted {
      order: -1;
      background: linear-gradient(135deg, #fee2e2 0%, #ffffff 100%);
      border: 2px solid #dc2626;
    }
    
    .competitive-quadrant::before {
      height: 3px;
      border-radius: 8px 8px 0 0;
    }
    
    .competitive-quadrant.highlighted::before {
      top: 6px;
      right: 6px;
      width: 18px;
      height: 18px;
    }
    
    .competitive-quadrant:active {
      transform: scale(0.98);
    }
    
    .competitive-category {
      font-size: 11px;
      margin-bottom: 5px;
      line-height: 1.2;
    }
    
    .competitive-technology {
      font-size: 13px;
      margin-bottom: 6px;
      line-height: 1.2;
    }
    
    .competitive-description {
      font-size: 11px;
      line-height: 1.35;
    }
    
    /* Mobile Business Model Section */
    .business-model-section {
      padding: 60px 10px 50px;
    }
    
    .business-model-title {
      font-size: 28px;
      margin-bottom: 12px;
    }
    
    .business-model-title-underline {
      width: 120px;
    }
    
    .business-model-columns {
      display: flex !important;
      flex-direction: column !important;
      gap: 25px;
      margin-top: 40px;
    }
    
    .business-model-column {
      padding: 0;
      border-radius: 0;
      clip-path: none;
      box-shadow: none;
      border: none;
      background: transparent;
      display: flex;
      flex-direction: column;
      gap: 15px;
    }
    
    .business-model-column::before {
      display: none;
    }
    
    .business-model-column:active {
      transform: none;
    }
    
    .business-model-column-title {
      font-size: 18px;
      font-weight: 700;
      color: #dc2626;
      margin-bottom: 12px;
      padding: 0 0 8px 0;
      background: transparent;
      border-radius: 0;
      box-shadow: none;
      border: none;
      border-bottom: 2px solid rgba(220, 38, 38, 0.35);
      position: relative;
    }
    
    .business-model-column-title::before {
      display: none;
    }
    
    .business-model-phase {
      margin-bottom: 0;
      padding: 15px 20px;
      background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
      border-radius: 10px;
      box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
      position: relative;
    }
    
    .business-model-phase::before {
      content: '';
      position: absolute;
      top: 0;
      left: 0;
      width: 100%;
      height: 4px;
      background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
      border-radius: 10px 10px 0 0;
    }
    
    .business-model-phase:active {
      transform: scale(0.98);
    }
    
    .business-model-phase-number {
      font-size: 16px;
      margin-bottom: 8px;
      font-weight: 700;
      color: #dc2626;
    }
    
    .business-model-phase-description {
      font-size: 14px;
      line-height: 1.5;
    }
    
    .business-model-revenue-list {
      display: flex;
      flex-direction: column;
      gap: 8px;
      margin: 0;
      padding: 0 0 0 24px;
      list-style: none;
      border: none;
      background: transparent;
    }
    
    .business-model-revenue-item {
      font-size: 14px;
      margin: 0;
      padding: 4px 0;
      background: transparent;
      border: none;
      border-radius: 0;
      box-shadow: none;
      border-bottom: none;
      position: relative;
      list-style: none;
    }
    
    .business-model-revenue-item::before {
      content: '$';
      position: absolute;
      left: -24px;
      top: 4px;
      color: #dc2626;
      font-size: 14px;
      font-weight: 700;
    }
    
    .business-model-revenue-item::after {
      display: none;
    }
    
    .business-model-revenue-item:active {
      background: transparent;
    }
    
    /* Mobile Contact Section */
    .contact-section {
      padding: 80px 15px 70px;
    }
    
    .contact-title {
      font-size: 28px;
      margin-bottom: 12px;
    }
    
    .contact-title-underline {
      width: 120px;
    }
    
    .contact-description {
      font-size: 16px;
      margin-bottom: 25px;
    }
    
    .contact-info {
      padding: 25px 20px;
      border-radius: 0;
      clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
    }
    
    .contact-info::before {
      height: 4px;
      border-radius: 0;
    }
    
    .contact-info:active {
      transform: scale(0.98);
    }
    
    .contact-text {
      font-size: 14px;
      margin-bottom: 12px;
    }

    .contact-email {
      font-size: 14px;
    }

    /* Mobile Validation Section */
    .validation-section {
      padding: 60px 15px 50px;
    }
    
    .validation-title {
      font-size: 28px;
      margin-bottom: 12px;
    }
    
    .validation-title-underline {
      width: 120px;
    }
    
    .validation-cards {
      grid-template-columns: 1fr;
      gap: 25px;
      margin-top: 40px;
    }
    
    .validation-card {
      padding: 25px 20px;
      border-radius: 0;
      clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
      box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
      border: 1px solid rgba(220, 38, 38, 0.2);
    }
    
    .validation-card::before {
      height: 4px;
      border-radius: 0;
    }
    
    .validation-card:active {
      transform: scale(0.98);
    }
    
    .validation-card-title {
      font-size: 19px;
      margin-bottom: 20px;
    }
    
    .validation-item {
      gap: 12px;
    }
    
    .validation-icon {
      width: 20px;
      height: 20px;
    }
    
    .validation-text {
      font-size: 14px;
    }

    /* Mobile Footer */
    .footer {
      padding: 36px 16px 24px;
      text-align: center;
    }
    
    .footer-container {
      max-width: 100%;
      padding: 0 4px;
    }
    
    .footer-content {
      grid-template-columns: 1fr;
      gap: 32px;
      margin-bottom: 28px;
    }
    
    .footer-logo-section {
      display: none !important;
    }
    
    .footer-logo {
      height: 120px;
      width: auto;
      margin: 0 auto;
    }
    
    .footer-tagline {
      font-size: 14px;
    }
    
    .footer-links {
      grid-template-columns: 1fr;
      gap: 24px;
      display: flex;
      flex-direction: column;
      align-items: center;
    }
    
    .footer-column {
      align-items: center;
      text-align: center;
      width: 100%;
      max-width: 280px;
    }
    
    .footer-heading {
      font-size: 15px;
      margin-bottom: 4px;
    }
    
    .footer-nav {
      align-items: center;
      gap: 10px;
    }
    
    .footer-link {
      font-size: 14px;
      padding: 6px 0;
      min-height: 44px;
      display: inline-flex;
      align-items: center;
      justify-content: center;
    }
    
    .footer-bottom {
      padding-top: 20px;
      border-top: 1px solid rgba(255, 255, 255, 0.15);
    }
    
    .footer-copyright {
      font-size: 9px;
      line-height: 1.4;
      padding: 0 4px;
      white-space: nowrap !important;
      overflow: visible !important;
      text-overflow: clip !important;
      margin-bottom: 8px;
      word-break: keep-all !important;
      word-wrap: normal !important;
      overflow-wrap: normal !important;
      hyphens: none !important;
      display: block !important;
      max-width: 100% !important;
    }
    
    /* Keep copyright symbol and year together on mobile */
    .footer-copyright > span {
      white-space: nowrap !important;
      display: inline !important;
    }
    
    /* Prevent breaking between copyright symbol and year */
    .footer-copyright > span::before,
    .footer-copyright > span::after {
      white-space: nowrap !important;
    }
    
    /* Ensure the year span inside doesn't break */
    .footer-copyright > span #currentYear {
      white-space: nowrap !important;
      display: inline !important;
    }
    
    /* Ensure all text content in copyright stays on one line */
    .footer-copyright,
    .footer-copyright * {
      white-space: nowrap !important;
    }
    
    .footer-credit {
      padding-top: 12px;
      margin-top: 12px;
      text-align: center;
    }
    
    .footer-credit-link {
      font-size: 12px;
      word-wrap: break-word;
      white-space: normal;
      text-decoration: underline;
    }
    
    /* Touch-friendly adjustments */
    * {
      -webkit-tap-highlight-color: rgba(220, 38, 38, 0.1);
    }
    
    /* Prevent text overflow and ensure content is visible - no mid-word hyphenation */
    p, h1, h2, h3, h4, h5, h6, li, span, div,
    .title, .crisis-title, .workflow-title, .grid-problem-title,
    .solution-title, .impact-title, .thesis-title, .competitive-title,
    .business-model-title, .validation-title, .contact-title {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      hyphens: none !important;
      white-space: normal !important;
      overflow: visible !important;
      text-overflow: clip !important;
      max-width: 100% !important;
      display: block !important;
    }
    
    /* Ensure list items and bullet points are visible */
    li, ul, ol,
    .bottleneck-item, .workflow-item, .grid-problem-item,
    .impact-item, .thesis-item,
    .business-model-revenue-item {
      white-space: normal !important;
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
    }
    
    /* Ensure all text boxes and cards show full content */
    .profile-card, .crisis-card, .workflow-panel,
    .grid-problem-column, .solution-panel, .impact-column,
    .competitive-quadrant, .business-model-column,
    .contact-info, .thesis-conclusion,
    .solution-conclusion, .global-problem {
      height: auto !important;
      min-height: 0 !important;
      max-height: none !important;
    }
    
    /* Prevent image overflow */
    img {
      max-width: 100%;
      height: auto;
    }
    
    /* Prevent grid and flex containers from scrolling */
    .leadership-grid,
    .crisis-cards,
    .workflow-panels,
    .grid-problem-columns,
    .solution-pipeline,
    .impact-comparison,
    .competitive-matrix,
    .business-model-columns,
    .title-section,
    .crisis-title-section,
    .workflow-title-section,
    .grid-problem-title-section,
    .solution-title-section,
    .impact-title-section,
    .thesis-title-section,
    .competitive-title-section,
    .business-model-title-section,
    .contact-title-section {
      max-height: none !important;
      height: auto !important;
      min-height: 0 !important;
    }
    
    /* Ensure all cards and panels don't have height constraints */
    .profile-card,
    .crisis-card,
    .workflow-panel,
    .grid-problem-column,
    .solution-panel,
    .impact-column,
    .competitive-quadrant,
    .business-model-column,
    .business-model-phase,
    .business-model-revenue-item,
    .validation-card,
    .crisis-card-title,
    .stat-item,
    .workflow-panel-header,
    .workflow-item,
    .global-problem,
    .grid-problem-column-title,
    .solution-panel-title,
    .solution-panel-description,
    .solution-conclusion,
    .impact-column-title,
    .thesis-conclusion,
    .competitive-category,
    .competitive-technology,
    .competitive-description,
    .validation-card-title,
    .validation-item,
    .validation-text,
    .contact-content,
    .contact-info,
    .contact-description {
      height: auto !important;
      min-height: 0 !important;
      max-height: none !important;
    }
    
    /* Ensure hero overlay doesn't create scroll */
    .hero-overlay {
      height: 100% !important;
    }
    
    /* Smooth scrolling for mobile */
    body {
      -webkit-overflow-scrolling: touch;
      overflow-y: auto;
      overflow-x: hidden;
    }
    
    html {
      overflow-y: auto;
      overflow-x: hidden;
    }
    
    /* Ensure proper text wrapping */
    h1, h2, h3, h4, h5, h6, p, span, li {
      word-wrap: break-word !important;
      overflow-wrap: break-word !important;
      white-space: normal !important;
      max-width: 100% !important;
    }
    
    /* Remove hover effects on mobile */
    .profile-card:hover,
    .crisis-card:hover,
    .workflow-panel:hover,
    .solution-panel:hover,
    .impact-column:hover,
    .grid-problem-column:hover,
    .competitive-quadrant:hover,
    .business-model-column:hover {
      transform: none;
      outline-color: transparent;
    }
  }
  /* Investor Thesis Section */
.thesis-section {
    background-color: #ffffff;
    padding: 80px 20px;
}
  .thesis-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
  .thesis-title-section {
    text-align: center;
    margin-bottom: 60px;
}
  .thesis-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
  .thesis-title-underline {
    width: 200px;
    height: 3px;
    background-color: #dc2626;
    margin: 0 auto;
    border-radius: 2px;
}
  .thesis-list {
    list-style: none;
    padding: 0;
    margin: 0 0 40px 0;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
  .thesis-item {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 25px;
    padding-left: 40px;
    position: relative;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
    transition: transform 0.3s ease;
}
  .thesis-item:hover {
    transform: translate3d(10px, 0, 0);
}
  .thesis-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background-color: #dc2626;
    transition: transform 0.3s ease-out;
    transform: translateZ(0);
    backface-visibility: hidden;
    will-change: transform;
}
  .thesis-item:hover::before {
    transform: translateZ(0) scale(1.5);
}
  .thesis-item strong {
    font-weight: 700;
    color: #000000;
}
  .thesis-item em {
    font-style: italic;
}
  .thesis-conclusion {
    background-color: #f5f5f5;
    border-left: 5px solid #dc2626;
    padding: 25px 30px;
    margin-top: 40px;
    display: flex;
    align-items: flex-start;
    gap: 15px;
    will-change: transform, opacity;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: opacity 0.8s ease-out !important, transform 0.8s ease-out !important;
    position: relative;
    overflow: visible;
}
  .thesis-conclusion::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 5px;
    height: 0;
    background: linear-gradient(180deg, #ef4444, #dc2626);
    transition: height 0.3s ease-out;
    transform: translateZ(0);
    will-change: height;
}
  .thesis-conclusion:hover::before {
    height: 100%;
}
  .thesis-conclusion:hover {
    transform: translate3d(3px, 0, 0);
}
  .thesis-conclusion-icon {
    flex-shrink: 0;
    margin-top: 2px;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
}
  .thesis-conclusion-icon svg {
    width: 100%;
    height: 100%;
    fill: #dc2626;
}
  .thesis-conclusion-text {
    font-size: 18px;
    font-weight: 400;
    color: #000000;
    line-height: 1.6;
}
  /* Competitive Landscape Section */
.competitive-section {
    background-color: #ffffff;
    padding: 80px 20px;
}
  .competitive-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
  .competitive-title-section {
    text-align: center;
    margin-bottom: 60px;
}
  .competitive-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
  .competitive-title-underline {
    width: 200px;
    height: 3px;
    background-color: #dc2626;
    margin: 0 auto;
    border-radius: 2px;
}
  .competitive-matrix-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
}
  .competitive-axis-label {
    position: absolute;
    font-size: 14px;
    font-weight: 600;
    color: #666666;
}
  .competitive-axis-label.vertical {
    left: -80px;
    top: 50%;
    transform: translateY(-50%) rotate(-90deg);
    transform-origin: center;
}
  .competitive-axis-label.horizontal {
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
}
  .competitive-axis-label.horizontal-left {
    left: 25%;
}
  .competitive-axis-label.horizontal-right {
    left: 75%;
}
  .competitive-matrix {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    grid-template-rows: repeat(2, 1fr);
    gap: 30px;
    padding-left: 20px;
    padding-bottom: 30px;
}
  .competitive-quadrant {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 40px;
    transition: outline-color 0.3s ease-out, transform 0.3s ease-out;
    position: relative;
    box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(220, 38, 38, 0.2);
    overflow: visible;
    border: 2px solid rgba(220, 38, 38, 0.15);
    outline: 2px solid transparent;
    outline-offset: -2px;
    backface-visibility: hidden;
}
  .competitive-quadrant .border-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
  .competitive-quadrant .border-line path {
    fill: none;
    stroke: #dc2626;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
  .competitive-quadrant::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}
  .competitive-quadrant::after {
    display: none;
}
  .competitive-quadrant:hover {
    outline-color: #dc2626;
    transform: translate3d(0, -3px, 0);
}
  .competitive-quadrant.highlighted {
    background-color: #fee2e2;
}
  .competitive-quadrant.highlighted::before {
    content: '';
    position: absolute;
    top: 15px;
    right: 15px;
    width: 28px;
    height: 28px;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='%23dc2626'%3E%3Cpath d='M12 2l3.09 6.26L22 9.27l-5 4.87 1.18 6.88L12 17.77l-6.18 3.25L7 14.14 2 9.27l6.91-1.01L12 2z'/%3E%3C/svg%3E");
    background-size: contain;
    background-repeat: no-repeat;
    z-index: 2;
    animation: pulse 2s infinite;
}
  .competitive-category {
    font-size: 16px;
    font-weight: 400;
    color: #666666;
    margin-bottom: 10px;
}
  .competitive-technology {
    font-size: 20px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
}
  .competitive-quadrant.highlighted .competitive-technology {
    color: #dc2626;
}
  .competitive-description {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
}
  /* Business Model Section */
.business-model-section {
    background-color: #ffffff;
    padding: 80px 20px;
}
  .business-model-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}
  .business-model-title-section {
    text-align: center;
    margin-bottom: 60px;
}
  .business-model-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
  .business-model-title-underline {
    width: 200px;
    height: 3px;
    background-color: #dc2626;
    margin: 0 auto;
    border-radius: 2px;
}
  .business-model-columns {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}
  .business-model-column {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 40px;
    transition: outline-color 0.3s ease-out, transform 0.3s ease-out;
    box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: visible;
    border: 2px solid rgba(220, 38, 38, 0.15);
    outline: 2px solid transparent;
    outline-offset: -2px;
    backface-visibility: hidden;
}
  .business-model-column .border-line {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 10;
}
  .business-model-column .border-line path {
    fill: none;
    stroke: #dc2626;
    stroke-width: 2;
    stroke-dasharray: 1000;
    stroke-dashoffset: 1000;
}
  .business-model-column::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}
  .business-model-column::after {
    display: none;
}
  .business-model-column:hover {
    outline-color: #dc2626;
    transform: translate3d(0, -3px, 0);
}
  .business-model-column-title {
    font-size: 24px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 30px;
    line-height: 1.2;
}
  .business-model-phase {
    margin-bottom: 30px;
}
  .business-model-phase:last-child {
    margin-bottom: 0;
}
  .business-model-phase-number {
    font-size: 20px;
    font-weight: 700;
    color: #dc2626;
    margin-bottom: 8px;
}
  .business-model-phase-title {
    font-size: 18px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 10px;
}
  .business-model-phase-description {
    font-size: 15px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
}
  .business-model-revenue-list {
    list-style: none;
    padding: 0;
    margin: 0;
}
  .business-model-revenue-item {
    font-size: 16px;
    font-weight: 400;
    color: #000000;
    line-height: 1.8;
    margin-bottom: 15px;
    padding-left: 30px;
    position: relative;
}
  .business-model-revenue-item:last-child {
    margin-bottom: 0;
}
  .business-model-revenue-item::before {
    content: '$';
    position: absolute;
    left: 0;
    color: #dc2626;
    font-size: 20px;
    font-weight: 700;
}
  /* Contact Section */
.contact-section {
    background: linear-gradient(180deg, #ffffff 0%, #fafafa 100%);
    padding: 80px 20px;
    position: relative;
}

.contact-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.contact-container {
    max-width: 800px;
    width: 100%;
    margin: 0 auto;
}

.contact-title-section {
    text-align: center;
    margin-bottom: 40px;
}

.contact-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.contact-title-underline {
    width: 200px;
    height: 3px;
    background-color: #dc2626;
    margin: 0 auto;
    border-radius: 2px;
}

.contact-content {
    text-align: center;
}

.contact-description {
    font-size: 18px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    margin-bottom: 30px;
}

.contact-info {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 40px;
    box-shadow: 
0 4px 20px rgba(0, 0, 0, 0.1),
inset 0 0 0 1px rgba(220, 38, 38, 0.2);
    border: 2px solid rgba(220, 38, 38, 0.15);
    position: relative;
}

.contact-info::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}

.contact-text {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.8;
    margin-bottom: 15px;
}

.contact-text:last-child {
    margin-bottom: 0;
}

.contact-email {
    color: #dc2626;
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.contact-email:hover {
    color: #991b1b;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.contact-email:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
}

/* Validation Section */
.validation-section {
    background: linear-gradient(180deg, #fafafa 0%, #ffffff 100%);
    padding: 80px 20px;
    position: relative;
}

.validation-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.validation-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.validation-title-section {
    text-align: center;
    margin-bottom: 60px;
}

.validation-title {
    font-family: 'Rajdhani', sans-serif;
    font-size: 48px;
    font-weight: 700;
    color: #000000;
    margin-bottom: 15px;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.validation-title-underline {
    width: 200px;
    height: 3px;
    background-color: #dc2626;
    margin: 0 auto;
    border-radius: 2px;
}

.validation-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
}

.validation-card {
    background: linear-gradient(135deg, #ffffff 0%, #fafafa 100%);
    clip-path: polygon(20px 0, 100% 0, 100% calc(100% - 20px), calc(100% - 20px) 100%, 0 100%, 0 20px);
    padding: 40px;
    transition: outline-color 0.3s ease-out, transform 0.3s ease-out;
    box-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.1),
        inset 0 0 0 1px rgba(220, 38, 38, 0.2);
    position: relative;
    overflow: visible;
    border: 2px solid rgba(220, 38, 38, 0.15);
    outline: 2px solid transparent;
    outline-offset: -2px;
    backface-visibility: hidden;
}

.validation-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 5px;
    background: linear-gradient(90deg, #dc2626, #ef4444, #dc2626);
    box-shadow: 0 0 15px rgba(220, 38, 38, 0.8);
}

.validation-card:hover {
    outline-color: #dc2626;
    transform: translate3d(0, -3px, 0);
}

.validation-card-header {
    margin-bottom: 30px;
}

.validation-card-title {
    font-size: 24px;
    font-weight: 700;
    color: #dc2626;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.6);
}

.validation-card-content {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.validation-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
}

.validation-icon {
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    margin-top: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.validation-icon svg {
    width: 100%;
    height: 100%;
}

.validation-icon.checkmark svg {
    fill: #22c55e;
}

.validation-text {
    font-size: 16px;
    font-weight: 400;
    color: #333333;
    line-height: 1.6;
    flex: 1;
}

.validation-text strong {
    font-weight: 700;
    color: #000000;
}

.validation-card:hover .validation-text {
    color: #000000;
}

/* Footer */
.footer {
    background: linear-gradient(180deg, #1a1a1a 0%, #000000 100%);
    padding: 60px 20px 30px;
    position: relative;
    border-top: 3px solid #dc2626;
}

.footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, transparent, #dc2626, transparent);
}

.footer-container {
    max-width: 1400px;
    width: 100%;
    margin: 0 auto;
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-logo-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-logo {
    height: 180px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 12px rgba(255, 255, 255, 0.6)) drop-shadow(0 0 28px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 40px rgba(255, 255, 255, 0.25));
}

.footer-tagline {
    font-size: 18px;
    font-weight: 600;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
}

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

.footer-column {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.footer-heading {
    font-size: 18px;
    font-weight: 700;
    color: #dc2626;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin: 0;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.footer-nav {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer-link {
    color: #cccccc;
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    transition: color 0.3s ease, transform 0.3s ease;
    display: inline-block;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.footer-link:hover {
    color: #dc2626;
    transform: translateX(5px);
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.footer-link:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
    color: #dc2626;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 30px;
    text-align: center;
}

.footer-copyright {
    font-size: 14px;
    color: #888888;
    margin: 0 0 10px 0;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.footer-credit {
    margin: 0;
    padding-top: 15px;
}

.footer-credit-link {
    color: #dc2626;
    text-decoration: underline;
    font-size: 14px;
    font-weight: 400;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    display: inline-block;
    outline: 2px solid transparent;
    outline-offset: 2px;
}

.footer-credit-link:hover {
    color: #ef4444;
    text-shadow: 0 0 10px rgba(220, 38, 38, 0.5);
}

.footer-credit-link:focus-visible {
    outline: 2px solid #dc2626;
    outline-offset: 2px;
    color: #ef4444;
}

  @media (min-width: 769px) and (max-width: 1200px) {
    .leadership-grid {
grid-template-columns: repeat(2, 1fr);
    }
      .crisis-cards {
grid-template-columns: 1fr;
    }
      .workflow-panels {
grid-template-columns: 1fr;
    }
      .grid-problem-columns {
grid-template-columns: 1fr;
    }
      .solution-pipeline {
grid-template-columns: repeat(2, 1fr);
    }
      .competitive-matrix {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
    }
      .thesis-title {
font-size: 36px;
    }
      .thesis-item {
font-size: 16px;
    }
      .thesis-conclusion-text {
font-size: 16px;
    }
      .competitive-title {
font-size: 36px;
    }
      .competitive-matrix-wrapper {
padding-left: 0;
    }
      .competitive-axis-label {
        display: none !important;
      }
      .competitive-axis-label.vertical {
position: static;
transform: none;
margin-bottom: 20px;
text-align: center;
    }
      .competitive-axis-label.horizontal {
position: static;
transform: none;
margin-top: 20px;
text-align: center;
    }
      .competitive-axis-label.horizontal-left,
    .competitive-axis-label.horizontal-right {
position: static;
display: inline-block;
margin: 10px;
    }
      .competitive-matrix {
grid-template-columns: repeat(2, 1fr);
grid-template-rows: repeat(2, 1fr);
gap: 25px;
padding-left: 0;
padding-bottom: 0;
    }
      .competitive-quadrant {
padding: 25px;
      }
      .competitive-quadrant:hover {
transform: translate3d(0, -2px, 0);
    }
      .business-model-title {
font-size: 36px;
    }
      .business-model-columns {
grid-template-columns: 1fr;
gap: 25px;
    }
      .business-model-column {
padding: 30px;
      }
      .business-model-column:hover {
        transform: translate3d(0, -2px, 0);
      }
      .validation-title {
        font-size: 36px;
      }
      .validation-cards {
        grid-template-columns: 1fr;
        gap: 25px;
      }
      .validation-card {
        padding: 30px;
      }
      .footer-content {
        grid-template-columns: 1fr;
        gap: 40px;
      }
      .footer-links {
        grid-template-columns: 1fr;
        gap: 30px;
      }
}
