* { box-sizing: border-box; }
html { -webkit-text-size-adjust: 100%; overflow-y: scroll; }

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  color: #e0e0e0;
  background: linear-gradient(135deg, #081022, #0b132b, #1a2947);
  min-height: 100vh;
  margin: 0;
  padding: 0;
  overflow-wrap: break-word;
  -webkit-font-smoothing: antialiased;
}

p, h1, h2, h3, .muted, .lead, .card, .site {
  -webkit-hyphens: auto;
  -ms-hyphens: auto;
  hyphens: auto;
  overflow-wrap: break-word;
  word-wrap: break-word;
  word-break: break-word;
}

.site {
  max-width: 1100px; 
  margin: 0 auto;
  padding-left: 20px;
  padding-right: 20px;
  overflow-x: hidden;
  min-width: 0;
}

h1, h2, h3 {
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 12px;
  line-height: 1.3;
}

h2 {
  font-size: 32px;
}

h3 {
  font-size: 22px;
}

.muted {
  color: #a0a0a0; 
  font-size: 15px;
  line-height: 1.5;
}



a {
  color: #ff9933; 
  text-decoration: none; 
}

a:hover {
  text-decoration: underline; 
}

.cta {
  background-color: #ff6600; 
  color: #081022; 
  padding: 12px 20px;
  border-radius: 8px;
  font-weight: 700; 
  display: inline-block; 
  transition: all 0.2s ease-in-out;
}

.cta:hover {
  background-color: #ff8822;
  text-decoration: none;
  color: #081022;
  
  transform: scale(1.05) translateY(-2px); 
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6)) brightness(1.15); 
}


header {
  display: flex;
  justify-content: space-between; 
  align-items: center; 
  padding-top: 24px;
  padding-bottom: 24px;
  border-bottom: 1px solid #1a2947; 
  margin-bottom: 48px; 
}

header .brand {
  display: flex; 
  align-items: center; 
  gap: 12px; 
  text-decoration: none;
}

header .logo {
  background-color: #1a2947;
  color: #e0e0e0;
  font-weight: 700;
  width: 40px;
  height: 40px;
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
}

header nav {
  display: flex; 
  gap: 24px; 
}

header nav a {
  font-weight: 500;
  font-size: 16px;
  color: #c0c0c0; 
  transition: color 0.2s ease-in-out; 
}

header nav a:hover {
  color: #ff9933; 
  text-decoration: none;
}

header nav a.active {
  color: #ffffff; 
  font-weight: 700;
}


.hero {
  display: flex; 
  align-items: center; 
  gap: 48px; 
  margin-bottom: 48px; 
}

.hero .left {
  flex: 1; 
}

.hero, .grid, .team, header {
  min-width: 0;
}
.hero > .left, .hero > .right {
  min-width: 0;
}

.hero .eyebrow {
  font-size: 14px;
  font-weight: 700;
  color: #ff9933; 
  text-transform: uppercase; 
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}

.hero h1 {
  font-size: 48px; 
  font-weight: 700;
  color: #ffffff;
  margin-top: 0;
  margin-bottom: 16px;
  line-height: 1.2; 
}

.hero .lead {
  font-size: 18px;
  color: #c0c0c0; 
  margin-bottom: 24px;
}

.hero .right div {
  padding: 24px;
  border-radius: 12px;
  border: 1px solid #1a2947;
  background: linear-gradient(180deg,#082032, #0b2740); 
}

.hero .right div[style*="font-weight:800"] {
  color: #ffffff; 
}


.card {
  background-image: linear-gradient(to bottom, #0f1a30, #0b132b);
  border: 1px solid #1a2947;
  padding: 24px;
  border-radius: 12px;
  transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out; 
}

.card:hover {
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 
  cursor: pointer;
}


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


footer {
  text-align: center;
  padding-top: 32px;
  padding-bottom: 32px;
  margin-top: 48px;
  border-top: 1px solid #1a2947; 
  color: #a0a0a0; 
  font-size: 14px;
}


.team {
  display: flex;
  gap: 30px; 
  margin-top: 20px;
}


img, picture, svg, video {
  max-width: 100%;
  height: auto;
  display: block;
}

.person {
  display: flex; 
  align-items: center; 
  gap: 12px;
}

.avatar {
  background-color: #ff6600; 
  color: #081022; 
  font-weight: 700;
  width: 44px;
  height: 44px;
  border-radius: 50%; 
  display: flex;
  align-items: center;
  justify-content: center;
}


.media {
  width: 100%;
  height: auto;
  max-width: 100%;
  object-fit: cover;
  border-radius: 8px;
  display: block;
}

.hero .right {
  
  min-width: 0 !important;
  width: 100%;
  max-width: 280px;
}

.hero .right img, 
.card img {
  transition: transform 0.3s ease-in-out; 
  max-width: 100%;
  height: auto;
  display: block;
}

.hero .right img:hover,
.card img:hover {
  transform: rotate(2deg) scale(1.02);
  cursor: pointer;
}
.cta {
  
  display: inline-block; 
  transition: all 0.2s ease-in-out; 
}

.cta:hover {
  
  transform: scale(1.05) translateY(-2px); 
  filter: drop-shadow(0 0 8px rgba(255, 102, 0, 0.6)) brightness(1.15); 
}

.card:hover {
  
  transform: scale(1.01) translateY(-5px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2); 
  cursor: pointer;
}



@media screen and (max-width: 768px) {
    
    .grid {
        grid-template-columns: 1fr; 
    }
    
    .hero {
        flex-direction: column; 
        gap: 32px; 
        margin-bottom: 32px;
    }

    .hero h1 {
        font-size: 38px;
    }
    
    .site {
        padding-left: 16px;
        padding-right: 16px;
    }
    
    header nav {
        flex-direction: column;
        align-items: flex-end; 
        gap: 12px;
        position: absolute; 
        top: 24px;
        right: 16px; 
    }
    
    .team {
        flex-direction: column;
        gap: 20px;
    }
}
@media screen and (max-width: 480px) {
    
    .hero h1 {
        font-size: 32px;
    }
    
    header nav {
        position: static; 
        align-items: center; 
    }
}