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

:root {
  --primary: #2563eb;
  --primary-dark: #1e40af;
  --primary-light: #60a5fa;
  --dark-bg: #020617;
  --dark-bg-secondary: #0f172a;
  --dark-bg-tertiary: #1e293b;
  --text-primary: #f8fafc;
  --text-secondary: #cbd5e1;
  --accent-cyan: #22d3ee;
  --accent-blue: #3b82f6;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
  background-color: var(--dark-bg);
  color: var(--text-primary);
  line-height: 1.6;
  overflow-x: hidden;
}

img {
  max-width: 100%;
}

.container {
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 1.5rem;
}

/* Header */
.header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  background: rgba(2, 6, 23, 0.85);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(59, 130, 246, 0.2);
}

.header-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 1rem 1.5rem;
}

.logo {
  font-weight: 700;
  font-size: 1.25rem;
  letter-spacing: -0.025em;
}

.logo span {
  color: var(--accent-cyan);
}

.nav-links {
  display: flex;
  gap: 2rem;
  align-items: center;
}

.nav-links a {
  color: var(--text-secondary);
  text-decoration: none;
  font-size: 0.875rem;
  font-weight: 500;
  transition: color 0.2s;
}

.nav-links a:hover {
  color: var(--accent-cyan);
}

.btn {
  padding: 0.5rem 1.25rem;
  border-radius: 0.375rem;
  font-weight: 600;
  font-size: 0.875rem;
  border: none;
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: linear-gradient(to right, var(--primary), var(--primary-dark));
  color: white;
}

.btn-primary:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 25px rgba(37, 99, 235, 0.4);
}

.mobile-menu-btn {
  display: none;
  background: none;
  border: none;
  color: white;
  font-size: 1.5rem;
  cursor: pointer;
}

/* Hero */
.hero {
  padding: 8rem 0 2rem;
  position: relative;
  overflow: hidden;
  background: linear-gradient(135deg, #020617 0%, #0f172a 100%);
}

.hero::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  width: 60%;
  height: 100%;
  background: radial-gradient(ellipse at center, rgba(37, 99, 235, 0.15) 0%, transparent 70%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  line-height: 1.1;
  font-weight: 800;
  letter-spacing: -0.025em;
  margin-bottom: 1.5rem;
}

.hero-text h1 span {
  background: linear-gradient(to right, var(--accent-cyan), var(--accent-blue));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  color: var(--text-secondary);
  font-size: 1.125rem;
  margin-bottom: 2rem;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.btn-secondary {
  background: transparent;
  border: 1px solid rgba(148, 163, 184, 0.5);
  color: var(--text-primary);
}

.btn-secondary:hover {
  border-color: var(--accent-cyan);
  color: var(--accent-cyan);
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

/* Sections */
.section {
  padding: 3rem 0;
}

.section-alt {
  background: var(--dark-bg-secondary);
}

.section-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 1rem;
}

.section-subtitle {
  color: rgba(34, 211, 238, 0.8);
  color: var(--accent-cyan);
  font-size: 0.875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-weight: 600;
  margin-bottom: 0rem;
  margin-top: 1rem;
}

/* Cards Grid */
.cards-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 1.5rem;
  margin-top: 2rem;
}

.card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.75rem;
  padding: 1.5rem;
  transition: all 0.3s;
}

.card:hover {
  border-color: var(--primary-light);
  transform: translateY(-4px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
}

.card-icon {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  font-size: 1.5rem;
}

.card h3 {
  font-size: 1.125rem;
  margin-bottom: 0.5rem;
}

.card p {
  color: var(--text-secondary);
  font-size: 0.875rem;
}

/* About */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.about-image {
  border-radius: 1rem;
  overflow: hidden;
  border: 1px solid rgba(59, 130, 246, 0.3);
}

.about-image img {
  width: 100%;
  height: auto;
  display: block;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem;
  margin-top: 2rem;
}

.stat {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.5rem;
  padding: 1rem;
  text-align: center;
}

.stat-number {
  font-size: 1.75rem;
  font-weight: 700;
  color: var(--accent-cyan);
}

.stat-label {
  font-size: 0.75rem;
  color: var(--text-secondary);
}

/* Ventures */
.ventures-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

.venture-card-left,
.venture-card-right {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 1rem;
  padding: 2rem;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  align-items: center;
}

@media (max-width: 1024px) {
  .ventures-grid {
    grid-template-columns: 1fr;
  }
  
  .venture-card-left,
  .venture-card-right {
    grid-template-columns: 1fr;
  }
  
  .venture-card-right {
    order: 1;
  }
  
  .venture-card-right div:first-child {
    order: 2;
  }
  
  .venture-card-right div:last-child {
    order: 1;
  }
}

.venture-badge {
  display: inline-block;
  background: rgba(37, 99, 235, 0.2);
  color: var(--accent-blue);
  padding: 0.25rem 0.75rem;
  border-radius: 9999px;
  font-size: 0.75rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

/* Careers */
.careers-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}

.job-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.job-item {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.75rem;
  padding: 1.25rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  transition: all 0.2s;
}

.job-item:hover {
  border-color: var(--accent-cyan);
}

.job-details h4 {
  margin-bottom: 0.25rem;
}

.job-meta {
  display: flex;
  gap: 1rem;
  color: var(--text-secondary);
  font-size: 0.75rem;
}

/* Contact */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.contact-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}

.contact-item-icon {
  width: 40px;
  height: 40px;
  background: rgba(37, 99, 235, 0.2);
  border-radius: 0.5rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.contact-form {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(59, 130, 246, 0.2);
  border-radius: 0.75rem;
  padding: 2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

.form-full {
  grid-column: 1 / -1;
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.form-group label {
  font-size: 0.75rem;
  color: var(--text-secondary);
  font-weight: 500;
}

.form-group input,
.form-group textarea {
  padding: 0.75rem;
  background: var(--dark-bg);
  border: 1px solid rgba(148, 163, 184, 0.3);
  border-radius: 0.375rem;
  color: var(--text-primary);
  font-size: 0.875rem;
}

.form-group input:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--accent-blue);
}

/* Footer */
.footer {
  padding: 0rem 0 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.2);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr;
  gap: 2rem;
  margin-top: 4rem;
}

.footer-bottom {
  margin-top: 3rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(59, 130, 246, 0.1);
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 0.75rem;
  color: var(--text-secondary);
}

.footer-social {
  display: flex;
  gap: 1rem;
}

.footer-social a {
  width: 36px;
  height: 36px;
  background: rgba(30, 41, 59, 0.5);
  border-radius: 0.375rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-secondary);
  transition: all 0.2s;
}

.footer-social a:hover {
  background: var(--primary);
  color: white;
}

/* Responsive Styles */
@media (max-width: 1024px) {
  .hero-grid,
  .about-grid,
  .contact-grid,
  .careers-grid {
    grid-template-columns: 1fr !important;
  }

  .about-grid{
    gap: 0rem;
  }
  
  .venture-card {
    grid-template-columns: 1fr;
  }
  
  .stats-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  
  .footer-grid {
    grid-template-columns: repeat(2, 1fr);
    margin-top: 0rem;
  }

  .ventures-grid,
  .innovation-grid {
    grid-template-columns: 1fr !important;
  }

  .cards-grid,
  .innovation-cards {
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .contact-grid {
    gap: 1.5rem !important;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 1rem;
  }

  .header-content {
    padding: 0.75rem 1rem !important;
  }

  .logo img {
    height: 64px !important;
  }

  .nav-links {
    display: none !important;
    max-height: calc(100vh - 88px);
    overflow-y: auto;
  }

  .nav-links.active {
    display: flex !important;
  }
  
  .mobile-menu-btn {
    display: block !important;
  }
  
  .hero {
    padding-top: 7rem;
  }

  .hero-grid {
    gap: 2rem;
  }

  .hero-text h1,
  .section-title,
  #contact .section-title,
  #careers .section-title {
    font-size: 2.25rem !important;
    line-height: 1.15 !important;
  }

  .hero-text p,
  #contact > .container > p,
  #careers p {
    font-size: 1rem !important;
  }
  
  .section {
    padding: 3rem 0;
  }

  section[style*="padding-top: 8rem"] {
    padding-top: 7rem !important;
  }
  
  .stats-grid {
    grid-template-columns: 1fr 1fr;
  }
  
  .form-grid,
  .contact-form .form-grid {
    grid-template-columns: 1fr !important;
  }

  .form-group,
  .form-full {
    grid-column: 1 / -1 !important;
  }
  
  .footer-grid {
    grid-template-columns: 1fr !important;
  }
  
  .footer-bottom {
    flex-direction: column;
    gap: 1rem;
    text-align: center;
  }

  .hero-visual {
    justify-content: center !important;
  }

  .hero-visual img {
    height: auto !important;
    max-height: 360px;
    object-fit: cover;
  }

  .about-grid[style],
  .careers-grid[style],
  .contact-grid[style],
  .innovation-grid[style] {
    grid-template-columns: 1fr !important;
  }

  .cards-grid,
  .innovation-cards {
    grid-template-columns: 1fr !important;
    gap: 1rem !important;
  }

  .card,
  .contact-info,
  .contact-form {
    padding: 1.25rem !important;
  }

  .venture-card-left,
  .venture-card-right {
    padding: 1.25rem !important;
    border-radius: 0.75rem;
  }

  .venture-card-left img,
  .venture-card-right img,
  .innovation-grid img {
    max-width: min(100%, 320px) !important;
    margin: 0 auto;
  }

  .more-ventures-banner {
    align-items: flex-start !important;
    padding: 1.25rem !important;
  }

  .more-ventures-banner > div:first-child {
    display: none;
  }

  .contact-item {
    min-width: 0;
  }

  .contact-item p,
  .contact-item a {
    overflow-wrap: anywhere;
  }

  #contact > div[style*="position: absolute"],
  #careers div[style*="position: absolute"][style*="width: 50%"] {
    width: 100% !important;
    opacity: 0.16 !important;
  }

  #contact .cards-grid {
    grid-template-columns: 1fr !important;
  }

  .job-item {
    flex-direction: column;
    align-items: flex-start !important;
    gap: 1rem;
  }

  .job-meta {
    flex-wrap: wrap;
    gap: 0.4rem 0.75rem !important;
  }

  .view-role-btn {
    width: 100%;
    justify-content: center;
    border: 1px solid rgba(34, 211, 238, 0.35) !important;
    border-radius: 0.5rem !important;
    padding: 0.75rem !important;
  }

  .modal {
    align-items: flex-start !important;
    padding: 1rem;
    overflow-y: auto;
  }

  .modal-content {
    width: 100% !important;
    max-height: none !important;
    margin: 0 auto;
  }

  .modal-content > div,
  #role-details-content {
    padding: 1.5rem !important;
  }

  .modal form > div[style*="grid-template-columns"],
  .modal form > div[style*="display: grid"] {
    grid-template-columns: 1fr !important;
  }

  .modal form > div[style*="display: flex"] {
    flex-direction: column !important;
  }

  .modal .btn {
    width: 100%;
  }
}

@media (max-width: 480px) {
  .hero-text h1,
  .section-title,
  #contact .section-title,
  #careers .section-title {
    font-size: 1.9rem !important;
  }
  
  .hero-buttons,
  .innovation-actions {
    flex-direction: column;
  }
  
  .hero-buttons .btn,
  .innovation-actions .btn {
    width: 100%;
  }
  
  .stats-grid {
    grid-template-columns: 1fr;
  }

  .section-subtitle {
    letter-spacing: 0.08em !important;
    margin-top: 0rem;
  }

  .card h3 {
    font-size: 1rem;
  }

  .footer {
    padding-top: 3rem;
  }
}
/* Migrated component styles */
/* Migrated from src/components/About.astro */
.leadership-approach {
    display: grid;
    grid-template-columns: minmax(0, 0.95fr) minmax(320px, 1fr);
    gap: 3rem;
    align-items: center;
    margin-top: 4rem;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 0.5rem;
    background: rgba(15, 23, 42, 0.42);
  }

  .leadership-copy .section-subtitle {
    color: rgba(34, 211, 238, 0.8);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 0.8rem;
  }

  .leadership-copy h2 {
    color: white;
    font-size: clamp(2rem, 4vw, 3.2rem);
    line-height: 1.1;
    margin-bottom: 2rem;
  }

  .leadership-copy p:not(.section-subtitle) {
    max-width: 540px;
    color: #94a3b8;
    font-size: 1.12rem;
    line-height: 1.8;
    margin-bottom: 1.4rem;
  }

  .leadership-visual {
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 0.5rem;
    background: rgba(2, 6, 23, 0.45);
  }

  .leadership-visual img {
    display: block;
    width: 100%;
    aspect-ratio: 4 / 3;
    object-fit: cover;
    filter: saturate(0.92) brightness(0.78);
  }

  @media (max-width: 900px) {
    .leadership-approach {
      grid-template-columns: 1fr;
      gap: 1.5rem;
      padding: 1.5rem;
    }

    .leadership-copy p:not(.section-subtitle) {
      max-width: none;
      font-size: 1rem;
    }
  }

/* Migrated from src/components/Footer.astro */
.footer-legal-links {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    justify-content: flex-end;
  }

  .footer-legal-links a {
    color: var(--text-secondary);
    font-size: 0.75rem;
    text-decoration: none;
    transition: color 0.2s;
  }

  .footer-legal-links a:hover {
    color: var(--accent-cyan);
  }

  @media (max-width: 768px) {
    .footer-legal-links {
      justify-content: center;
    }
  }

/* Migrated from src/components/Header.astro */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(2, 6, 23, 0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(59, 130, 246, 0.2);
  }
  
  .header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 1.5rem;
  }
  
  .logo {
    display: flex;
    align-items: center;
  }
  
  .nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
  }
  
  .nav-links a.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    transition: color 0.2s;
    position: relative;
    padding-bottom: 0.25rem;
  }
  
  .nav-links a.nav-link:hover,
  .nav-links a.nav-link.active {
    color: var(--accent-cyan);
  }
  
  .nav-links a.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent-cyan);
    transition: width 0.2s;
  }
  
  .nav-links a.nav-link:hover::after,
  .nav-links a.nav-link.active::after {
    width: 100%;
  }
  
  .mobile-menu-btn {
    display: none;
    background: transparent;
    border: none;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
  }
  
  @media (max-width: 768px) {
    .nav-links {
      display: none;
      position: absolute;
      top: 100%;
      left: 0;
      right: 0;
      background: rgba(2, 6, 23, 0.98);
      flex-direction: column;
      gap: 1rem;
      padding: 1.5rem;
      border-bottom: 1px solid rgba(59, 130, 246, 0.2);
    }
    
    .nav-links.active {
      display: flex;
    }
    
    .mobile-menu-btn {
      display: block;
    }
  }

/* Migrated from src/components/Hero.astro */
.tech-logo-strip {
    display: grid;
    grid-template-columns: repeat(5, minmax(0, 1fr));
    gap: 1rem;
    align-items: stretch;
    margin-top: 1.5rem;
  }

  .tech-logo-tile {
    min-height: 84px;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    border: 1px solid rgba(59, 130, 246, 0.18);
    border-radius: 0.5rem;
    background: rgba(15, 23, 42, 0.38);
  }

  .tech-logo {
    width: auto;
    max-width: 145px;
    max-height: 42px;
    object-fit: contain;
    opacity: 0.74;
  }

  .landing-ventures-heading {
    display: flex;
    justify-content: space-between;
    gap: 2rem;
    align-items: flex-end;
  }

  .landing-venture-cards {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 1.25rem;
    margin-top: 1.75rem;
  }

  .landing-venture-card {
    min-height: 245px;
    display: flex;
    flex-direction: column;
    padding: 1.5rem;
    border-radius: 0.75rem;
    border: 1px solid rgba(59, 130, 246, 0.22);
    background: rgba(30, 41, 59, 0.48);
    color: inherit;
    text-decoration: none;
    transition: border-color 0.2s, transform 0.2s, background 0.2s;
  }

  .landing-venture-card:hover {
    border-color: rgba(34, 211, 238, 0.6);
    background: rgba(30, 41, 59, 0.68);
    transform: translateY(-3px);
  }

  .landing-venture-card span {
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.75rem;
  }

  .landing-venture-card h3 {
    color: white;
    font-size: 1.35rem;
    margin-bottom: 0.75rem;
  }

  .landing-venture-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.65;
  }

  .landing-venture-card strong {
    color: var(--accent-cyan);
    font-size: 0.875rem;
    margin-top: auto;
    padding-top: 1.25rem;
  }

  .what-we-do-section {
    margin-top: 4rem;
    padding-top: 1.75rem;
    border-top: 1px solid rgba(59, 130, 246, 0.2);
  }

  .what-we-do-section .section-subtitle {
    color: rgba(34, 211, 238, 0.8);
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 600;
    margin-bottom: 0.75rem;
  }

  .what-we-do-section h2 {
    max-width: 760px;
    color: white;
    font-size: clamp(1.5rem, 3vw, 1.8rem);
    line-height: 1.2;
    margin-bottom: 1.75rem;
  }

  .what-we-do-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1rem;
  }

  .what-we-do-card {
    min-height: 230px;
    padding: 1.45rem;
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 0.5rem;
    background: rgba(15, 23, 42, 0.58);
  }

  .what-we-do-icon {
    width: 2.5rem;
    height: 2.5rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.2rem;
    border: 1px solid rgba(34, 211, 238, 0.26);
    border-radius: 0.5rem;
    color: var(--accent-cyan);
    font-size: 1.35rem;
    line-height: 1;
    background: rgba(37, 99, 235, 0.12);
  }

  .what-we-do-card h3 {
    color: white;
    font-size: 1.05rem;
    margin-bottom: 0.75rem;
  }

  .what-we-do-card p {
    color: #94a3b8;
    font-size: 0.9rem;
    line-height: 1.7;
  }

  @media (max-width: 1024px) {
    .what-we-do-grid {
      grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .tech-logo-strip {
      grid-template-columns: repeat(3, minmax(0, 1fr));
    }
  }

  @media (max-width: 768px) {
    .landing-ventures {
      margin-top: 3rem !important;
      padding-top: 2rem !important;
    }

    .landing-ventures-heading {
      flex-direction: column;
      align-items: flex-start;
      gap: 1.25rem;
    }

    .landing-ventures-heading .btn {
      width: 100%;
    }

    .landing-venture-cards {
      grid-template-columns: 1fr;
      gap: 1rem;
    }

    .landing-venture-card {
      min-height: auto;
      padding: 1.25rem;
    }

    .what-we-do-section {
      margin-top: 3rem;
      padding-top: 1.5rem;
    }

    .what-we-do-grid {
      grid-template-columns: 1fr;
    }

    .what-we-do-card {
      min-height: auto;
      padding: 1.25rem;
    }

    .tech-stack-section {
      margin-top: 3rem !important;
      padding-top: 1.5rem;
    }

    .tech-logo-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.75rem;
      margin-top: 1.25rem;
    }

    .tech-logo-tile {
      min-height: 76px;
      padding: 0.85rem;
    }

    .tech-logo {
      max-width: 118px;
      max-height: 34px;
      opacity: 0.78;
    }
  }

  @media (max-width: 420px) {
    .tech-logo-strip {
      grid-template-columns: repeat(2, minmax(0, 1fr));
      gap: 0.65rem;
    }

    .tech-logo {
      max-width: 105px;
      max-height: 30px;
    }
  }

/* Migrated from src/components/Innovation.astro */
.innovation-page {
    padding: 9rem 0 4rem;
    background:
      radial-gradient(circle at 85% 10%, rgba(34, 211, 238, 0.12), transparent 32rem),
      linear-gradient(135deg, #020617 0%, #0f172a 45%, #020617 100%);
  }

  .innovation-hero {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
    gap: 4rem;
    align-items: center;
  }

  .innovation-hero-copy h1 {
    color: var(--text-primary);
    font-size: clamp(2.25rem, 5vw, 4.2rem);
    line-height: 1.05;
    font-weight: 800;
    margin-bottom: 1.5rem;
    max-width: 760px;
  }

  .innovation-hero-copy > p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    line-height: 1.8;
    max-width: 650px;
    margin-bottom: 2rem;
  }

  .innovation-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .innovation-actions a,
  .innovation-cta a {
    text-decoration: none;
    display: inline-flex;
    align-items: center;
  }

  .innovation-hero-media {
    position: relative;
    min-height: 440px;
    border-radius: 1rem;
    overflow: hidden;
    border: 1px solid rgba(59, 130, 246, 0.3);
    background: rgba(15, 23, 42, 0.7);
  }

  .innovation-hero-media img {
    width: 100%;
    height: 100%;
    min-height: 440px;
    object-fit: cover;
    display: block;
  }

  .innovation-hero-media::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(2, 6, 23, 0.05), rgba(2, 6, 23, 0.68));
  }

  .hero-metric {
    position: absolute;
    z-index: 1;
    left: 1.25rem;
    right: 1.25rem;
    padding: 1rem;
    border: 1px solid rgba(148, 163, 184, 0.28);
    border-radius: 0.75rem;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(10px);
  }

  .hero-metric-top {
    top: 1.25rem;
  }

  .hero-metric-bottom {
    bottom: 1.25rem;
  }

  .hero-metric span,
  .innovation-strip span,
  .roadmap-card p {
    display: block;
    color: var(--accent-cyan);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.25rem;
  }

  .hero-metric strong {
    color: var(--text-primary);
    font-size: 1rem;
  }

  .innovation-strip {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
    margin: 4rem 0;
  }

  .innovation-strip > div,
  .innovation-focus-card,
  .roadmap-card {
    background: rgba(30, 41, 59, 0.5);
    border: 1px solid rgba(59, 130, 246, 0.2);
    border-radius: 0.75rem;
    padding: 1.5rem;
  }

  .innovation-strip strong {
    display: block;
    color: var(--text-primary);
    font-size: 1.2rem;
    margin-bottom: 0.5rem;
  }

  .innovation-strip p,
  .innovation-section-heading p,
  .innovation-focus-card p,
  .innovation-model p,
  .principle-item p,
  .roadmap-card span:last-child {
    color: var(--text-secondary);
  }

  .innovation-section-heading {
    max-width: 720px;
    margin-bottom: 1.75rem;
  }

  .innovation-section-heading h2,
  .innovation-model h2,
  .innovation-cta h2 {
    color: var(--text-primary);
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    line-height: 1.2;
    margin-bottom: 0.75rem;
  }

  .innovation-focus-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
  }

  .innovation-focus-card {
    min-height: 260px;
  }

  .focus-icon {
    width: 52px;
    height: 52px;
    border-radius: 0.75rem;
    background: rgba(34, 211, 238, 0.12);
    border: 1px solid rgba(34, 211, 238, 0.26);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
  }

  .focus-icon img {
    width: 32px;
    height: 32px;
    object-fit: contain;
  }

  .innovation-focus-card h3,
  .roadmap-card h3 {
    color: var(--accent-cyan);
    font-size: 1.1rem;
    margin-bottom: 0.75rem;
  }

  .innovation-model {
    display: grid;
    grid-template-columns: 0.85fr 1fr;
    gap: 3rem;
    align-items: start;
    margin-top: 4rem;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.25);
    border-radius: 1rem;
    background:
      linear-gradient(90deg, rgba(15, 23, 42, 0.92), rgba(30, 41, 59, 0.55)),
      url('/images/digital.jpg') center / cover;
  }

  .principles-list {
    display: grid;
    gap: 1rem;
  }

  .principle-item {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 1rem;
    align-items: center;
    padding: 1rem;
    border-radius: 0.75rem;
    background: rgba(2, 6, 23, 0.62);
    border: 1px solid rgba(148, 163, 184, 0.16);
  }

  .principle-item span,
  .roadmap-phase {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--accent-cyan));
    display: inline-flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-weight: 800;
    font-size: 0.85rem;
  }

  .roadmap-heading {
    margin-top: 4rem;
  }

  .innovation-roadmap {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
  }

  .roadmap-card {
    position: relative;
    overflow: hidden;
  }

  .roadmap-phase {
    margin-bottom: 1.25rem;
  }

  .innovation-cta {
    margin-top: 4rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    padding: 2rem;
    border-radius: 1rem;
    border: 1px solid rgba(34, 211, 238, 0.28);
    background:
      linear-gradient(90deg, rgba(2, 6, 23, 0.9), rgba(15, 23, 42, 0.72)),
      url('/images/world.avif') center / cover;
  }

  .innovation-cta h2 {
    max-width: 760px;
    margin-bottom: 0;
  }

  @media (max-width: 1100px) {
    .innovation-hero,
    .innovation-model {
      grid-template-columns: 1fr;
    }

    .innovation-focus-grid {
      grid-template-columns: repeat(2, 1fr);
    }
  }

  @media (max-width: 768px) {
    .innovation-page {
      padding-top: 7rem;
    }

    .innovation-hero {
      gap: 2rem;
    }

    .innovation-hero-copy h1 {
      font-size: 2.25rem !important;
      line-height: 1.15 !important;
    }

    .innovation-actions {
      width: 100%;
    }

    .innovation-hero-media,
    .innovation-hero-media img {
      min-height: 340px;
    }

    .innovation-strip,
    .innovation-focus-grid,
    .innovation-roadmap {
      grid-template-columns: 1fr;
    }

    .innovation-model,
    .innovation-cta {
      padding: 1.5rem;
    }

    .innovation-cta {
      align-items: flex-start;
      flex-direction: column;
    }
  }

  @media (max-width: 480px) {
    .innovation-hero-copy h1 {
      font-size: 1.9rem !important;
    }

    .innovation-actions a {
      width: 100%;
      justify-content: center;
    }

    .principle-item {
      grid-template-columns: 1fr;
    }
  }

/* Migrated from src/components/Ventures.astro */
@media (max-width: 1024px) {
    .innovation-grid,
    .hero-section .container,
    .footer-grid {
      grid-template-columns: 1fr !important;
    }
  }

/* Migrated from src/pages/legal.astro */
.legal-page {
    padding-top: 5rem;
  }

  .legal-page .container {
    max-width: 980px;
  }

  .legal-eyebrow,
  .legal-label {
    color: rgba(34, 211, 238, 0.8);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    margin-bottom: 0.75rem;
    margin-top: 3rem;
    text-transform: uppercase;
  }

  .legal-page h1 {
    color: white;
    font-size: clamp(2.4rem, 5vw, 4.25rem);
    line-height: 1.05;
    margin-bottom: 1rem;
  }

  .legal-intro {
    max-width: 720px;
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 2rem;
  }

  .legal-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-bottom: 2.5rem;
  }

  .legal-nav a {
    color: var(--text-primary);
    text-decoration: none;
    border: 1px solid rgba(59, 130, 246, 0.24);
    border-radius: 0.5rem;
    padding: 0.7rem 1rem;
    background: rgba(30, 41, 59, 0.48);
  }

  .legal-section {
    scroll-margin-top: 7rem;
    margin-top: 2rem;
    padding: 2rem;
    border: 1px solid rgba(59, 130, 246, 0.22);
    border-radius: 0.5rem;
    background: rgba(15, 23, 42, 0.52);
  }

  .legal-section h2 {
    color: white;
    font-size: clamp(1.55rem, 3vw, 2.1rem);
    margin-bottom: 1rem;
  }

  .legal-section p {
    color: #94a3b8;
    line-height: 1.8;
    margin-bottom: 1rem;
  }

  .legal-section a {
    color: var(--accent-cyan);
  }

  .legal-updated {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-top: 1.5rem;
  }

  @media (max-width: 768px) {
    .legal-page {
      padding-top: 4rem;
    }

    .legal-section {
      padding: 1.25rem;
    }

    .legal-nav {
      flex-direction: column;
    }
  }

/* Migrated inline style utilities */
.u-style-001 { margin-top: 5rem; }
.u-style-002 { color: rgba(34, 211, 238, 0.8) !important; font-size: 0.8rem !important; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; }
.u-style-003 { color: white; font-size: 1.3rem; line-height: 1.4; margin-bottom: 1.5rem; }
.u-style-004 { color: #22d1ee; }
.u-style-005 { color: white; font-size: 1.3rem; line-height: 1.2; margin-bottom: 0.5rem; }
.u-style-006 { color: #94a3b8; line-height: 1.8; margin-bottom: 1.5rem; }
.u-style-007 { margin-top: 3rem; }
.u-style-008 { width: 100%; border-radius: 1rem; }
.u-style-009 { margin-top: 2rem; }
.u-style-010 { display: flex; align-items: center; gap: 0.75rem; margin-bottom: 0.5rem; }
.u-style-011 { font-size: 1.5rem; }
.u-style-012 { width: 40px; height: 40px; }
.u-style-013 { color: #ffffff; margin: 0; font-size: 2.25rem; }
.u-style-014 { color: #64748b; font-size: 0.875rem; }
.u-style-015 { color: white; font-size: 1.73rem; margin-bottom: 0.75rem; }
.u-style-016 { margin-top: 4rem; }
.u-style-017 { margin-top: 1.5rem; }
.u-style-018 { color: #22d1ee; margin: 0; }
.u-style-019 { color: #94a3b8; font-size: 0.875rem; margin-bottom: 0.75rem; }
.u-style-020 { color: #ffffff; }
.u-style-021 { color: #94a3b8; font-size: 0.875rem; }
.u-style-022 { color: white; font-size: 1.75rem; margin: 1rem 0; }
.u-style-023 { color: #94a3b8; margin-bottom: 2rem; }
.u-style-024 { gap: 2rem; }
.u-style-025 { width: 40px; height: 40px; background: linear-gradient(135deg, #2563eb, #3b82f6); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.u-style-026 { color: white; font-weight: 700; }
.u-style-027 { color: white; }
.u-style-028 { color: #64748b; font-size: 1rem; }
.u-style-029 { color: #22d1ee; margin-bottom: 0rem; margin-top: 1rem; }
.u-style-030 { color: #64748b; font-size: 0.95rem; }
.u-style-031 { width: 40px; height: 40px; background: linear-gradient(135deg, #22d1ee, #60a5fa); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.u-style-032 { width: 40px; height: 40px; background: linear-gradient(135deg, #10b981, #34d399); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.u-style-033 { padding: 0.5rem 1.5rem; font-size: 0.875rem; }
.u-style-034 { margin-top: 4rem; background: rgba(30, 41, 59, 0.5); border: 1px solid rgba(59, 130, 246, 0.3); border-radius: 1rem; padding: 2rem; }
.u-style-035 { color: white; font-size: 1.75rem !important; margin-bottom: 0.5rem; }
.u-style-036 { color: #94a3b8; margin-bottom: 1.5rem; }
.u-style-037 { padding-top: 8rem; background: linear-gradient(135deg, #020617 0%, #0f172a 100%); }
.u-style-038 { grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; margin-bottom: 4rem; }
.u-style-039 { color: rgba(34, 211, 238, 0.8); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; margin-bottom: 0.5rem; }
.u-style-040 { font-size: 3.5rem; margin-bottom: 0.5rem; line-height: 1.1; }
.u-style-041 { color: var(--accent-cyan); }
.u-style-042 { color: var(--text-secondary); margin-bottom: 2rem; font-size: 1.125rem; line-height: 1.6; }
.u-style-043 { text-align: center; }
.u-style-044 { width: 100%; border-radius: 1rem; max-height: 500px; object-fit: cover; margin-top: 2rem; }
.u-style-045 { margin-bottom: 4rem; }
.u-style-046 { font-size: 1.75rem; margin-bottom: 2rem; color: var(--accent-cyan); }
.u-style-047 { grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }
.u-style-048 { background: rgba(30,41,59,0.5); border: 1px solid rgba(59,130,246,0.2); border-radius: 1rem; padding: 2rem; }
.u-style-049 { width: 48px; height: 48px; background: rgba(34, 211, 238, 0.1); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin-bottom: 1rem; }
.u-style-050 { font-size: 1.125rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.u-style-051 { font-size: 0.875rem; color: var(--text-secondary); line-height: 1.6; }
.u-style-052 { font-size: 1.75rem; margin-bottom: 1rem; color: var(--accent-cyan); }
.u-style-053 { color: var(--text-secondary); margin-bottom: 2rem; max-width: 1000px; }
.u-style-054 { display: flex; flex-direction: column; gap: 1rem; }
.u-style-055 { background: rgba(30,41,59,0.5); border: 1px solid rgba(59,130,246,0.2); border-radius: 0.75rem; padding: 1.5rem; display: flex; justify-content: space-between; align-items: center; }
.u-style-056 { display: flex; gap: 1rem; color: var(--text-secondary); font-size: 0.875rem; }
.u-style-057 { color: var(--accent-cyan); font-size: 0.875rem; text-decoration: none; display: flex; align-items: center; gap: 0.25rem; background: none; border: none; cursor: pointer; }
.u-style-058 { background: rgba(30,41,59,0.5); border: 1px solid rgba(59,130,246,0.2); border-radius: 0.75rem; padding: 2rem; position: relative; overflow: hidden; }
.u-style-059 { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; opacity: 0.3; pointer-events: none; }
.u-style-060 { width: 100%; height: 100%; object-fit: cover; }
.u-style-061 { position: relative; z-index: 1; }
.u-style-062 { font-size: 1.25rem; margin-bottom: 0.5rem; color: var(--accent-cyan); }
.u-style-063 { color: var(--text-secondary); font-size: 0.875rem; margin-bottom: 1.5rem; }
.u-style-064 { background: transparent; border: 1px solid rgba(148, 163, 184, 0.5); color: var(--text-primary); padding: 0.75rem 1.5rem; border-radius: 0.5rem; cursor: pointer; }
.u-style-065 { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); z-index: 1000; justify-content: center; align-items: center; }
.u-style-066 { background: var(--dark-bg-secondary); border: 1px solid rgba(59,130,246,0.2); border-radius: 1rem; max-width: 800px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; }
.u-style-067 { position: absolute; top: 1.5rem; right: 1.5rem; background: none; border: none; color: var(--text-secondary); font-size: 1.5rem; cursor: pointer; z-index: 10; }
.u-style-068 { padding: 3rem; }
.u-style-069 { display: none; position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.8); z-index: 1001; justify-content: center; align-items: center; }
.u-style-070 { background: var(--dark-bg-secondary); border: 1px solid rgba(59,130,246,0.2); border-radius: 1rem; max-width: 600px; width: 90%; max-height: 90vh; overflow-y: auto; position: relative; }
.u-style-071 { font-size: 1.5rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.u-style-072 { color: var(--accent-cyan); margin-bottom: 2rem; }
.u-style-073 { display: flex; flex-direction: column; gap: 1.5rem; }
.u-style-074 { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.u-style-075 { display: block; color: var(--text-secondary); margin-bottom: 0.5rem; font-size: 0.875rem; }
.u-style-076 { width: 100%; padding: 0.75rem; background: rgba(30,41,59,0.5); border: 1px solid rgba(59,130,246,0.2); border-radius: 0.5rem; color: var(--text-primary); }
.u-style-077 { border: 2px dashed rgba(59,130,246,0.3); border-radius: 0.75rem; padding: 2rem; text-align: center; cursor: pointer; }
.u-style-078 { display: none; }
.u-style-079 { color: var(--text-secondary); }
.u-style-080 { width: 100%; padding: 0.75rem; background: rgba(30,41,59,0.5); border: 1px solid rgba(59,130,246,0.2); border-radius: 0.5rem; color: var(--text-primary); resize: vertical; }
.u-style-081 { display: flex; gap: 1rem; margin-top: 1rem; }
.u-style-082 { flex: 1; background: transparent; border: 1px solid rgba(148, 163, 184, 0.5); color: var(--text-primary); padding: 0.75rem 1.5rem; border-radius: 0.5rem; cursor: pointer; }
.u-style-083 { flex: 1; background: linear-gradient(to right, var(--primary), var(--primary-dark)); color: white; padding: 0.75rem 1.5rem; border-radius: 0.5rem; cursor: pointer; display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem; }
.u-style-084 { color: var(--text-secondary); margin-bottom: 2rem; }
.u-style-085 { display: flex; gap: 0.75rem; color: var(--text-secondary); }
.u-style-086 { font-size: 2rem; margin-bottom: 0.5rem; color: var(--text-primary); }
.u-style-087 { display: flex; gap: 1rem; color: var(--text-secondary); margin-bottom: 2rem; }
.u-style-088 { color: var(--text-secondary); margin-bottom: 2rem; line-height: 1.6; }
.u-style-089 { margin-bottom: 2rem; }
.u-style-090 { font-size: 1.125rem; margin-bottom: 1rem; color: var(--accent-cyan); }
.u-style-091 { list-style: none; display: flex; flex-direction: column; gap: 0.75rem; }
.u-style-092 { display: flex; gap: 1rem; margin-top: 2rem; }
.u-style-093 { padding-top: 8rem; position: relative; overflow: hidden; }
.u-style-094 { position: absolute; right: 0; top: 0; bottom: 0; width: 50%; opacity: 0.4; pointer-events: none; }
.u-style-095 { font-size: 3rem; margin-bottom: 0.5rem; line-height: 1.2; }
.u-style-096 { color: var(--text-secondary); margin-bottom: 3rem; font-size: 1.125rem; max-width: 600px; }
.u-style-097 { display: grid; grid-template-columns: 1fr 2fr; gap: 2rem; }
.u-style-098 { background: rgba(30,41,59,0.7); border: 1px solid rgba(59,130,246,0.2); border-radius: 0.75rem; padding: 2rem; }
.u-style-099 { display: flex; gap: 1rem; margin-bottom: 2rem; }
.u-style-100 { width: 48px; height: 48px; background: rgba(34, 211, 238, 0.1); border: 1px solid rgba(34, 211, 238, 0.3); border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; }
.u-style-101 { width: 24px; height: 24px; object-fit: contain; }
.u-style-102 { font-size: 1rem; margin-bottom: 0.25rem; color: var(--text-primary); }
.u-style-103 { display: flex; flex-direction: column; gap: 0.45rem; }
.u-style-104 { color: var(--text-secondary); font-size: 0.875rem; }
.u-style-105 { color: var(--text-primary); font-weight: 600; }
.u-style-106 { color: var(--text-secondary); text-decoration: none; }
.u-style-107 { font-size: 1rem; margin-bottom: 0rem; color: var(--text-primary); }
.u-style-108 { grid-column: span 1; }
.u-style-109 { width: 100%; padding: 0.75rem 1rem; background: rgba(30,41,59,0.5); border: 1px solid rgba(59,130,246,0.2); border-radius: 0.5rem; color: var(--text-primary); }
.u-style-110 { grid-column: span 2; }
.u-style-111 { width: 100%; padding: 0.75rem 1rem; background: rgba(30,41,59,0.5); border: 1px solid rgba(59,130,246,0.2); border-radius: 0.5rem; color: var(--text-primary); resize: vertical; }
.u-style-112 { text-align: right; margin-top: 1.5rem; }
.u-style-113 { background: linear-gradient(to right, var(--primary), var(--primary-dark)); color: white; padding: 0.75rem 1.5rem; border-radius: 0.5rem; cursor: pointer; display: inline-flex; align-items: center; gap: 0.5rem; }
.u-style-114 { margin-top: 4rem; background: rgba(30,41,59,0.5); border: 1px solid rgba(59,130,246,0.2); border-radius: 0.75rem; padding: 2.5rem; }
.u-style-115 { color: var(--accent-cyan); margin-bottom: 2rem; font-size: 1.75rem; }
.u-style-116 { margin-top: 0; display: grid; grid-template-columns: repeat(5, 1fr); gap: 1.5rem; }
.u-style-117 { background: transparent; border: 1px solid rgba(59,130,246,0.2); border-radius: 0.75rem; padding: 1.5rem; text-align: center; }
.u-style-118 { background: transparent; border: 1px solid var(--accent-cyan); width: 48px; height: 48px; border-radius: 0.5rem; display: flex; align-items: center; justify-content: center; margin: 0 auto 1rem; }
.u-style-119 { width: 38px; height: 38px; object-fit: contain; }
.u-style-120 { font-size: 1rem; color: var(--text-primary); }
.u-style-121 { width: 38px; height: 42px; object-fit: contain; }
.u-style-122 { margin-bottom: 1rem; display: inline-block; }
.u-style-123 { height: 100px; }
.u-style-124 { margin-bottom: 1rem; font-size: 0.875rem; color: var(--accent-cyan); text-transform: uppercase; letter-spacing: 0.05em; }
.u-style-125 { color: var(--text-secondary); font-size: 0.875rem; text-decoration: none; transition: color 0.2s; }
.u-style-126 { display: flex; align-items: center; gap: 0.75rem; }
.u-style-127 { width: 20px; height: 20px; object-fit: contain; }
.u-style-128 { color: var(--text-secondary); text-decoration: none; font-size: 0.9rem; transition: color 0.2s; }
.u-style-129 { color: rgba(34, 211, 238, 0.8); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; margin-top: 2rem; margin-bottom: 1rem; }
.hero-text .section-subtitle.u-style-129 {
  color: rgba(34, 211, 238, 0.8);
  font-size: 0.8rem !important;
  text-transform: uppercase;
  letter-spacing: 0.15em;
  font-weight: 600;
  margin-top: 2rem;
  margin-bottom: 1rem;
}
.u-style-130 { color: #ffffff; font-size: 3rem !important; line-height: 1.2 !important; }
.hero-text h1.u-style-130 {
  font-size: 3rem !important;
  line-height: 1.2 !important;
}

.u-style-015 { color: white; font-size: 1.73rem; margin-bottom: 0.75rem ; }
.leadership-copy h2.u-style-015 {
  font-size: 2.25rem !important;
  line-height: 1.3 !important;
}


.u-style-131 { color: #94a3b8; }
.u-style-132 { display: flex; justify-content: flex-end; align-items: center; }
.u-style-133 { max-width: 100%; width: 100%; height: 480px; border-radius: 1rem; }
.u-style-134 { color: #64748b; }
.u-style-135 { color: white; font-size: 1.75rem; margin-bottom: 1.5rem; }
.u-style-136 { display: flex; flex-direction: column; justify-content: center; }
.u-style-137 { color: #94a3b8; line-height: 1.8; }
.u-style-138 { color: #94a3b8; line-height: 1.8; margin-top: 1rem; }
.u-style-139 { color: #94a3b8; line-height: 1.8; margin-top: 1rem; }
.u-style-140 { color: white; font-size: 1.75rem; margin-bottom: 0.75rem; }
.u-style-141 { width: 60px; height: 60px; }
.u-style-142 { margin-top: 4rem; border-top: 1px solid rgba(59, 130, 246, 0.2); padding-top: 1rem; }
.u-style-143 { margin-top: 4rem; border-top: 1px solid rgba(59, 130, 246, 0.2); }
.u-style-144 { color: rgba(34, 211, 238, 0.8); font-size: 0.8rem; text-transform: uppercase; letter-spacing: 0.15em; font-weight: 600; text-align: left; }
.u-style-145 { font-size: 2.5rem; margin-bottom: 0.5rem; }
.u-style-146 { color: var(--text-secondary); margin-bottom: 2rem; max-width: 500px; }
.u-style-147 { display: inline-block; background: rgba(37, 99, 235, 0.3); color: var(--accent-cyan); padding: 0.4rem 1rem; border-radius: 0.5rem; font-size: 0.75rem; font-weight: 600; margin-bottom: 1rem; text-transform: uppercase; letter-spacing: 0.05em; }
.u-style-148 { font-size: 1.75rem; margin-bottom: 0.75rem; color: var(--text-primary); }
.u-style-149 { color: var(--accent-cyan); font-size: 1rem; margin-bottom: 0.75rem; }
.u-style-150 { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 1.5rem; }
.u-style-151 { color: var(--accent-cyan); font-size: 1rem; margin-bottom: 0rem; }
.u-style-152 { font-size: 0.9rem; margin-bottom: 1rem; }
.u-style-153 { color: var(--accent-cyan); font-size: 0.9rem; text-decoration: none; display: inline-flex; align-items: center; gap: 0.5rem; }
.u-style-154 { display: flex; justify-content: center; align-items: center; }
.u-style-155 { max-width: 450px; width: 100%; }
.u-style-156 { color: var(--text-secondary); font-size: 0.9rem; line-height: 1.6; margin-bottom: 0.5rem; }
.u-style-157 { font-size: 0.9rem; margin-bottom: 2rem; }
.u-style-158 { margin-top: 3rem; background: rgba(30, 41, 59, 0.5); border: 1px solid rgba(59, 130, 246, 0.3); border-radius: 0.75rem; padding: 2rem; display: flex; gap: 1.5rem; align-items: center; position: relative; overflow: hidden; }
.u-style-159 { position: absolute; right: 0; top: 0; bottom: 0; width: 40%; opacity: 0.3; pointer-events: none; }
.u-style-160 { font-size: 3rem; z-index: 1; }
.u-style-161 { z-index: 1; }
.u-style-162 { font-weight: 600; font-size: 1.25rem; margin-bottom: 0.25rem; }
.u-style-163 { color: var(--text-secondary); font-size: 0.9rem; }
.u-style-164 { background: var(--dark-bg-secondary); }
.u-style-165 { align-items: center; }
.u-style-166 { font-size: 2.25rem; margin-bottom: 1rem; }
.u-style-167 { color: var(--text-secondary); margin-bottom: 2rem; max-width: 450px; }
.u-style-168 { display: grid; grid-template-columns: 1fr 1fr; gap: 1.5rem; }
.u-style-169 { display: flex; align-items: center; gap: 1rem; }
.u-style-170 { width: 28px; height: 28px; background: rgba(34, 211, 238, 0.15); border: 1px solid rgba(34, 211, 238, 0.3); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.u-style-171 { width: 16px; height: 16px; object-fit: contain; }
.u-style-172 { color: var(--text-secondary); font-size: 1rem; }
.u-style-173 { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 3rem; }
.u-style-174 { color: white; font-size: 2.5rem; margin-bottom: 0.75rem; }
.u-style-175 { color: white; font-size: 1.6rem; margin-bottom: 0.75rem; }
/* End migrated component styles */
