<style>

/* BREAKOUT FORCE */
.module-body, 
.row-fluid, 
.span12 {
  width: 100% !important;
  max-width: 100% !important;
  padding: 0 !important;
  margin: 0 !important;
}

/* Widen Container Logic */
.container {
  width: 94% !important;
  max-width: 1600px !important;
  margin: 0 auto;
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  background-color: #0B0E11;
  color: #94A3B8;
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   LINKS - PURPLE LINK KILLER
   ============================================ */

a {
  color: #00E5FF;
  text-decoration: none;
  transition: all 0.3s ease;
}

a:hover {
  color: #FFFFFF;
}

a:visited {
  color: inherit;
}

/* ============================================
   CONTAINER - AGGRESSIVE WIDTH
   Default: 1400px | Large screens: 90vw
   ============================================ */

.container {
  width: 90%;
  max-width: 1400px;
  margin: 0 auto;
  padding: 0;
}

/* Large desktops - use viewport percentage */
@media (min-width: 1440px) {
  .container {
    width: 88%;
    max-width: 1600px;
  }
}

/* Ultra-wide screens - maximize space */
@media (min-width: 1920px) {
  .container {
    width: 85%;
    max-width: 1800px;
  }
}

/* ============================================
   TYPOGRAPHY
   Headlines: FULL WIDTH
   Paragraphs: Constrained for readability
   ============================================ */

h1, h2, h3, h4, h5, h6 {
  color: #FFFFFF;
  font-weight: 700;
  line-height: 1.2;
  margin-bottom: 1rem;
  width: 100%;
  max-width: 100%;
}

h1 { font-size: 3.5rem; }
h2 { font-size: 2.5rem; }
h3 { font-size: 1.75rem; }
h4 { font-size: 1.25rem; }

/* Paragraphs - constrained for readability */
p {
  color: #94A3B8;
  margin-bottom: 1rem;
  max-width: 700px;
}

/* Section descriptions get slightly more width */
.section-description,
.hero-description {
  max-width: 800px;
}

/* Centered sections: center the paragraph constraint */
.about-hero p,
.values-header p,
.team-header p {
  margin-left: auto;
  margin-right: auto;
}

.tagline {
  color: #00E5FF !important;
  font-size: 0.875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 1rem;
}

/* ============================================
   BUTTONS
   ============================================ */

.btn {
  padding: 0.875rem 1.75rem;
  border-radius: 4px;
  font-weight: 600;
  font-size: 1rem;
  cursor: pointer;
  transition: all 0.3s ease;
  border: none;
  display: inline-block;
  text-align: center;
}

.btn-primary {
  background: #00E5FF;
  color: #0B0E11;
  border: 1px solid #00E5FF;
}

.btn-primary:hover {
  background: transparent;
  color: #00E5FF;
  box-shadow: 0 0 25px rgba(0, 229, 255, 0.5);
}

.btn-secondary {
  background: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.2);
}

.btn-secondary:hover {
  border-color: #00E5FF;
  color: #00E5FF;
  box-shadow: 0 0 20px rgba(0, 229, 255, 0.3);
}

.btn-link {
  background: transparent;
  border: none;
  color: #FFFFFF;
  padding: 0;
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}

.btn-link:hover {
  color: #00E5FF;
}

.btn-link svg {
  width: 1.25em;
  height: 1.25em;
}

.button-group {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}

/* ============================================
   GLASS CARD - FULL WIDTH RESPONSIVE
   ============================================ */

.glass-card {
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  border-radius: 12px;
  padding: 2.5rem;
  transition: all 0.3s ease;
  width: 100%;
  max-width: 100%;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.05);
  border-color: rgba(0, 229, 255, 0.4);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

/* ============================================
   HERO SECTION
   Matrix Grid Background Preserved
   ============================================ */

.about-hero {
  position: relative;
  padding: 10rem 5% 8rem;
  text-align: center;
  overflow: hidden;
  background-color: #0B0E11;
  background-image: 
    radial-gradient(circle at center, rgba(0, 229, 255, 0.1) 0%, transparent 70%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: 100% 100%, 40px 40px, 40px 40px;
  background-position: center top;
}

.about-hero .container {
  width: 100%;
  max-width: 1200px;
}

.hero-heading {
  font-size: 4.5rem;
  font-weight: 700;
  line-height: 1.1;
  margin-top: 4rem;
  margin-bottom: 1.5rem;
  letter-spacing: -0.03em;
  background: linear-gradient(135deg, #FFFFFF 0%, #00E5FF 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-description {
  font-size: 1.25rem;
  line-height: 1.8;
  margin-bottom: 2.5rem;
  color: #94A3B8;
}

.about-hero .button-group {
  justify-content: center;
}

/* ============================================
   MISSION SECTION - FULL WIDTH GRID
   ============================================ */

.mission-section {
  padding: 6rem 5%;
}

.mission-grid {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4rem;
  align-items: center;
  width: 100%;
  max-width: 100%;
}

.mission-content {
  width: 100%;
  max-width: 100%;
}

.mission-content .button-group {
  justify-content: flex-start;
}

.icon-wrapper {
  width: 5rem;
  height: 5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 2rem;
}

.mission-icon {
  width: 100%;
  height: 100%;
}

.section-heading {
  font-size: 3rem;
  margin-bottom: 1.5rem;
  width: 100%;
  max-width: 100%;
}

.section-description {
  font-size: 1.125rem;
  margin-bottom: 2rem;
  line-height: 1.8;
}

/* Mission Animated Graphic */
.mission-graphic {
  width: 100%;
  max-width: 100%;
  min-height: 350px;
  position: relative;
}

.graphic-container {
  width: 100%;
  height: 100%;
  min-height: 350px;
  background: radial-gradient(circle at center, rgba(0, 229, 255, 0.05) 0%, transparent 70%);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  transition: all 0.4s ease;
}

.graphic-container:hover {
  border-color: rgba(0, 229, 255, 0.3);
  box-shadow: 0 0 40px rgba(0, 229, 255, 0.1);
}

/* Subtle background grid pattern */
.graphic-container::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-image: 
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 30px 30px;
  pointer-events: none;
}

.network-svg {
  position: relative;
  z-index: 1;
  max-width: 100%;
  height: auto;
}

/* Responsive adjustments */
@media (min-width: 768px) {
  .mission-graphic {
    min-height: 400px;
  }
  
  .graphic-container {
    min-height: 400px;
  }
}

@media (min-width: 1200px) {
  .mission-graphic {
    min-height: 450px;
  }
  
  .graphic-container {
    min-height: 450px;
  }
}

/* ============================================
   VALUES SECTION - AUTO-FIT GRID
   ============================================ */

.values-section {
  padding: 6rem 5%;
  background: linear-gradient(180deg, transparent 0%, rgba(0, 229, 255, 0.02) 50%, transparent 100%);
}

.values-header {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 4rem;
}

.values-header .section-heading {
  max-width: 100%;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 100%;
}

.value-icon {
  width: 3.5rem;
  height: 3.5rem;
  margin-bottom: 1.5rem;
}

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

.value-title {
  font-size: 1.5rem;
  margin-bottom: 1rem;
  color: #FFFFFF;
}

.value-description {
  font-size: 1rem;
  line-height: 1.7;
  color: #94A3B8;
  max-width: 100%;
}

/* ============================================
   TEAM SECTION - AUTO-FIT GRID
   ============================================ */

.team-section {
  padding: 6rem 5%;
}

.team-header {
  text-align: center;
  width: 100%;
  max-width: 100%;
  margin-bottom: 4rem;
}

.team-header .section-heading {
  max-width: 100%;
}

.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 2rem;
  width: 100%;
  max-width: 100%;
}

.team-member {
  text-align: center;
}

.member-avatar {
  width: 7rem;
  height: 7rem;
  margin: 0 auto 1.5rem;
}

.member-avatar img {
  width: 100%;
  height: 100%;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid rgba(0, 229, 255, 0.3);
}

.member-info {
  margin-bottom: 1rem;
}

.member-name {
  font-size: 1.25rem;
  color: #FFFFFF;
  margin-bottom: 0.25rem;
}

.member-role {
  font-size: 1rem;
  color: #94A3B8;
  font-weight: 400;
}

.member-bio {
  font-size: 1rem;
  line-height: 1.7;
  margin-bottom: 1.5rem;
  max-width: 100%;
}

.social-links {
  display: flex;
  gap: 1rem;
  justify-content: center;
}

.social-links a {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0.5rem;
  border-radius: 50%;
  transition: all 0.3s ease;
}

.social-links a:hover {
  transform: translateY(-3px);
  background: rgba(0, 229, 255, 0.1);
}

.social-links svg {
  width: 1.5rem;
  height: 1.5rem;
}

/* ============================================
   TECH STACK MANIFEST
   ============================================ */

.logo-section {
  padding: 5rem 5%;
  overflow: hidden;
  border-top: 1px solid rgba(255, 255, 255, 0.05);
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
  background: rgba(255, 255, 255, 0.01);
}

.logo-section-title {
  text-align: center;
  margin-bottom: 3rem;
}

.logo-section-title h2 {
  font-size: 1rem;
  font-weight: 500;
  color: #00E5FF;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.tech-manifest {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 50px;
  flex-wrap: wrap;
  width: 100%;
  max-width: 1600px;
  margin: 0 auto;
}

.tech-logo {
  height: 48px;
  width: auto;
  color: #FFFFFF;
  opacity: 0.5;
  transition: all 0.3s ease;
  cursor: pointer;
}

.tech-logo:hover {
  color: #00E5FF;
  opacity: 1;
  transform: translateY(-3px);
  filter: drop-shadow(0 0 12px rgba(0, 229, 255, 0.5));
}

.tech-divider {
  font-size: 1.5rem;
  color: #00E5FF;
  opacity: 0.3;
  font-weight: 300;
  font-family: 'Courier New', Courier, monospace;
  line-height: 1;
  display: flex;
  align-items: center;
}

/* ============================================
   RESPONSIVE - DESKTOP (768px+)
   ============================================ */

@media (min-width: 768px) {
  .mission-grid {
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
  }
  
  .values-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
  
  .team-grid {
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
  }
}

/* ============================================
   RESPONSIVE - LARGE DESKTOP (1200px+)
   ============================================ */

@media (min-width: 1200px) {
  .mission-grid {
    gap: 6rem;
  }
  
  .values-grid,
  .team-grid {
    gap: 3rem;
  }
  
  .glass-card {
    padding: 3rem;
  }
}

/* ============================================
   RESPONSIVE - TABLET (max 1024px)
   ============================================ */

@media (max-width: 1024px) {
  .hero-heading {
    font-size: 3.5rem;
  }
  
  .section-heading {
    font-size: 2.5rem;
  }
  
  .mission-grid {
    grid-template-columns: 1fr;
    gap: 3rem;
  }
  
  .mission-content .button-group {
    justify-content: center;
  }
}

/* ============================================
   RESPONSIVE - MOBILE (max 768px)
   ============================================ */

@media (max-width: 768px) {
  h1 { font-size: 2.5rem; }
  h2 { font-size: 2rem; }
  
  p {
    max-width: 100%;
  }
  
  .about-hero {
    padding: 5rem 5% 4rem;
  }
  
  .hero-heading {
    font-size: 2.5rem;
  }
  
  .hero-description {
    font-size: 1.0625rem;
    max-width: 100%;
  }
  
  .mission-section,
  .values-section,
  .team-section {
    padding: 4rem 5%;
  }
  
  .section-heading {
    font-size: 2rem;
  }
  
  .section-description {
    font-size: 1rem;
    max-width: 100%;
  }
  
  .values-header,
  .team-header {
    margin-bottom: 3rem;
  }
  
  .values-grid,
  .team-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .glass-card {
    padding: 2rem;
  }
  
  .logo-section {
    padding: 3rem 5%;
  }
  
  .logo-section-title h2 {
    font-size: 0.875rem;
  }
  
  .tech-manifest {
    gap: 30px;
  }
  
  .tech-logo {
    height: 36px;
  }
  
  .tech-divider {
    font-size: 1.25rem;
  }
}

/* ============================================
   RESPONSIVE - SMALL MOBILE (max 480px)
   ============================================ */

@media (max-width: 480px) {
  .hero-heading {
    font-size: 2rem;
  }
  
  .section-heading {
    font-size: 1.75rem;
  }
  
  .btn {
    width: 100%;
    justify-content: center;
  }
  
  .button-group {
    flex-direction: column;
    width: 100%;
  }
  
  .glass-card {
    padding: 1.5rem;
  }
}
</style>