/* src/client/styles.css */
body {
  font-family:
    "Raleway",
    "Helvetica Neue",
    sans-serif;
  font-size: 16px;
  line-height: 1.5;
  color: #e0e6ff;
  background-color: #05101f;
  text-align: center;
  margin: 0;
  padding: 0;
  overflow-x: hidden;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-family: "Raleway", sans-serif;
  font-weight: 600;
  line-height: 1.25;
  margin-top: 0;
  margin-bottom: 1rem;
  color: #ffffff;
}
h1 {
  font-size: 2.5rem;
  font-weight: 700;
  margin-bottom: 1rem;
}
h2 {
  font-size: 2rem;
  margin-top: 2rem;
  color: #4cc9ff;
}
h3 {
  font-size: 1.5rem;
  color: #5ce5a8;
}
p {
  margin-bottom: 1.5rem;
  line-height: 1.7;
}
b {
  color: white;
  font-weight: bold;
}
a {
  color: #5ce5a8;
  text-decoration-line: underline;
  text-underline-offset: 3px;
  text-decoration-color: #5ce5a899;
  transition: all 0.3s ease;
}
a:hover {
  color: #4cc9ff;
  text-decoration-color: #4cc9ff;
}
.container {
  width: 100%;
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}
.hero {
  min-height: 85vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 1rem 0;
}
.hero-content {
  z-index: 10;
  padding: 1rem;
  text-align: center;
  width: 100%;
  max-width: 800px;
  margin-bottom: 2rem;
}
.hero h1 {
  font-size: 3.2rem;
  font-weight: 700;
  margin-bottom: 1rem;
  line-height: 1.2;
}
.hero p {
  font-size: 1.4rem;
  margin-bottom: 1.5rem;
  line-height: 1.5;
}
.hero .btn {
  font-size: 1.1rem;
  padding: 0.9rem 1.8rem;
}
.globe-container {
  width: 100%;
  height: 580px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  margin: 0 auto;
  overflow: visible;
}
.globe-wrapper {
  position: relative;
  width: 600px;
  height: 600px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
}
canvas {
  display: block;
  margin: 0 auto;
  width: 600px !important;
  height: 600px !important;
  max-width: 100%;
  position: relative;
}
.connected-info {
  position: absolute;
  bottom: -40px;
  left: 0;
  right: 0;
  text-align: center;
  z-index: 10;
  font-size: 0.9rem;
  color: rgba(255, 255, 255, 0.7);
  margin: 0;
  padding: 0.5rem;
}
.glow {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background:
    radial-gradient(
      circle,
      rgba(76, 201, 255, 0.1) 0%,
      rgba(92, 229, 168, 0.05) 50%,
      rgba(5, 16, 31, 0) 70%);
  z-index: 1;
  pointer-events: none;
}
.section {
  padding: 6rem 1rem;
  position: relative;
}
.section-alt {
  background:
    linear-gradient(
      to bottom,
      #071630,
      #0a1f3e);
}
.ai-engine {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.ai-card {
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  padding: 2rem;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 201, 255, 0.1);
}
.ai-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(76, 201, 255, 0.1);
  border-color: rgba(76, 201, 255, 0.3);
}
.products {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-top: 3rem;
}
.product-card {
  background: rgba(255, 255, 255, 0.03);
  border-radius: 10px;
  padding: 1.5rem;
  text-align: center;
  transition: all 0.3s ease;
}
.product-card:hover {
  background: rgba(255, 255, 255, 0.07);
}
.product-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  color: #4cc9ff;
}
.partners {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin: 3rem 0;
}
.partner-logo {
  width: 180px;
  height: 100px;
  background: rgba(255, 255, 255, 0.05);
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  transition: all 0.3s ease;
  border: 1px solid rgba(76, 201, 255, 0.1);
  overflow: hidden;
  padding: 1rem;
}
.partner-logo:hover {
  transform: translateY(-5px);
  box-shadow: 0 10px 20px rgba(76, 201, 255, 0.1);
  border-color: rgba(76, 201, 255, 0.3);
  background: rgba(255, 255, 255, 0.08);
}
.partner-logo img {
  max-width: 100%;
  max-height: 80px;
  object-fit: contain;
  filter: grayscale(30%) brightness(1.2);
  transition: all 0.3s ease;
}
.partner-logo:hover img {
  filter: grayscale(0) brightness(1.3);
}
.partner-info {
  margin-top: 2rem;
  text-align: center;
}
.partner-cta {
  display: inline-block;
  padding: 0.5rem 1rem;
  background:
    linear-gradient(
      135deg,
      rgba(76, 201, 255, 0.1),
      rgba(92, 229, 168, 0.1));
  border-radius: 20px;
  margin-left: 0.5rem;
  transition: all 0.3s ease;
}
.partner-cta:hover {
  background:
    linear-gradient(
      135deg,
      rgba(76, 201, 255, 0.2),
      rgba(92, 229, 168, 0.2));
  transform: translateY(-2px);
}
.team {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 2rem;
  margin-top: 3rem;
}
.team-member {
  width: 200px;
  text-align: center;
}
.team-avatar {
  width: 120px;
  height: 120px;
  border-radius: 50%;
  margin: 0 auto 1rem;
  background: rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}
footer {
  background-color: #030b15;
  padding: 3rem 0;
  margin-top: 3rem;
}
.footer-content {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
  gap: 2rem;
  text-align: left;
}
.footer-column h4 {
  margin-bottom: 1rem;
  color: #5ce5a8;
}
.footer-bottom {
  margin-top: 2rem;
  padding-top: 1rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}
.btn {
  display: inline-block;
  padding: 0.8rem 1.5rem;
  background:
    linear-gradient(
      135deg,
      #4cc9ff,
      #5ce5a8);
  color: #05101f;
  border: none;
  border-radius: 30px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: all 0.3s ease;
  margin: 0.5rem;
}
.btn:hover {
  transform: translateY(-3px);
  box-shadow: 0 10px 20px rgba(76, 201, 255, 0.2);
  color: #05101f;
  text-decoration: none;
}
.btn-outline {
  background: transparent;
  border: 2px solid #4cc9ff;
  color: #4cc9ff;
}
.btn-outline:hover {
  background: rgba(76, 201, 255, 0.1);
}
@keyframes float {
  0% {
    transform: translateY(0px);
  }
  50% {
    transform: translateY(-10px);
  }
  100% {
    transform: translateY(0px);
  }
}
.float {
  animation: float 6s ease-in-out infinite;
}
@media (max-width: 992px) {
  h1 {
    font-size: 2rem;
  }
  h2 {
    font-size: 1.8rem;
  }
  .globe-container {
    height: 500px;
  }
  .globe-wrapper {
    width: 450px;
    height: 450px;
  }
  canvas {
    width: 450px !important;
    height: 450px !important;
  }
  .glow {
    width: 500px;
    height: 500px;
  }
  .hero h1 {
    font-size: 2.8rem;
  }
  .hero p {
    font-size: 1.3rem;
  }
  .partner-logo {
    width: 160px;
    height: 90px;
  }
}
@media (max-width: 768px) {
  h1 {
    font-size: 1.8rem;
  }
  .globe-container {
    height: 450px;
  }
  .globe-wrapper {
    width: 350px;
    height: 350px;
  }
  canvas {
    width: 350px !important;
    height: 350px !important;
  }
  .section {
    padding: 4rem 1rem;
  }
  .glow {
    width: 400px;
    height: 400px;
  }
  .hero h1 {
    font-size: 2.4rem;
  }
  .hero p {
    font-size: 1.2rem;
  }
  .partners {
    gap: 1.5rem;
  }
  .partner-logo {
    width: 140px;
    height: 80px;
  }
  .partner-logo img {
    max-height: 60px;
  }
}
@media (max-width: 576px) {
  .globe-container {
    height: 380px;
  }
  .globe-wrapper {
    width: 300px;
    height: 300px;
  }
  canvas {
    width: 300px !important;
    height: 300px !important;
  }
  .glow {
    width: 350px;
    height: 350px;
  }
  .hero h1 {
    font-size: 2rem;
  }
  .hero p {
    font-size: 1.1rem;
  }
  .partners {
    gap: 1rem;
  }
  .partner-logo {
    width: 120px;
    height: 70px;
  }
  .partner-logo img {
    max-height: 50px;
  }
}
/*# sourceMappingURL=index.css.map */
