* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Segoe UI', sans-serif; background: #0e0e0e; color: #f2f2f2; line-height: 1.6; }
header { background: rgba(25, 25, 25, 0.8); padding: 2rem; text-align: center; }
header h1 { font-size: 2.5rem; color: #e63946; }
header p { color: #aaa; }
section { padding: 4rem 2rem; max-width: 1000px; margin: auto; }
.section-title { font-size: 2rem; margin-bottom: 1rem; color: #f4f4f4; }
.features, .steps { display: grid; gap: 2rem; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
.card { background: #1f1f1f; padding: 2rem; border-radius: 8px; text-align: center; }
.card img { width: 50px; margin-bottom: 1rem; }
.cta { background: #e63946; color: #fff; text-align: center; padding: 2rem; border-radius: 8px; margin-top: 4rem; }
.cta a { background: #fff; color: #000; padding: 0.75rem 1.5rem; text-decoration: none; border-radius: 4px; margin-top: 1rem; display: inline-block; }
footer { background: #1a1a1a; color: #777; text-align: center; padding: 2rem; margin-top: 4rem; }
.siteLogo { max-width: 300px; }

/* Animations */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

.fade-in-up {
  animation: fadeInUp 0.8s ease-out both;
}

.card:hover {
  transform: translateY(-5px);
  /*box-shadow: 0 10px 20px rgba(255, 255, 255, 0.1);*/
  box-shadow: 0 10px 20px rgba(116, 189, 255, 0.1);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card, header, .section-title, .cta, footer {
  opacity: 0;
  animation: fadeInUp 0.8s ease-out forwards;
}

.card:nth-child(1) { animation-delay: 0.2s; }
.card:nth-child(2) { animation-delay: 0.4s; }
.card:nth-child(3) { animation-delay: 0.6s; }
.card:nth-child(4) { animation-delay: 0.8s; }
.section-title { animation-delay: 0.1s; }

#matrix-bg {
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
  opacity: 0.2;
  pointer-events: none;
}

.card {
  background: #1c1c1c;
  padding: 2rem;
  border-radius: 12px;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease;
  border: 1px solid #333;
}
.card:hover {
  transform: translateY(-5px);
  box-shadow: 0 0 20px rgba(160, 201, 231, 0.2);
}
.card strong {
  font-size: 1.8rem;
  display: block;
  margin: 1rem 0;
}
.cta-btn {
  background: #A0C9E7;
  color: #0F0F0F;
  padding: 0.5rem 1.25rem;
  border-radius: 6px;
  display: inline-block;
  text-decoration: none;
  font-weight: bold;
}
.popular {
  border: 2px solid #A0C9E7;
  background: #1e1e2f;
}
.full-width {
  grid-column: span 3;
}

.hidden-modal {
  display: none !important;
}

.client-link {
  display: inline-block;
  padding: 0.5rem 1rem;
  border: 1px solid #6D8DAA;
  border-radius: 999px;
  background: rgba(160, 201, 231, 0.05);
  color: #A0C9E7;
  font-weight: 500;
  text-decoration: none;
  transition: all 0.25s ease;
}
.client-link:hover {
  background: #A0C9E7;
  color: #0F0F0F;
  border-color: #A0C9E7;
}

#parallax-img{
	position: fixed;
	top: 0;
	left: 0;
	width: 100%;
	height: 150%;
	background: url('../images/future.png') center center / cover no-repeat;
	opacity: 0.4;
	z-index: -2;
	pointer-events: none;
}

.api-highlight{
	display: flex;
	flex-wrap: wrap;
	gap: 2rem;
	justify-content: center;
	align-items: flex-start;
	padding: 3rem 2rem;
	max-width: 1000px;
	margin: auto;
}
.api-text {flex: 1 1 300px; max-width: 480px;}
.api-text h3{color: #ffffff; font-size: 2rem; margin-bottom: 1rem;}
.api-text p{color: #CCE3F5; font-size: 1rem; line-height: 1.6;}

.api-code{
	background: #1A1A1A;
	padding: 1.5rem;
	border-radius: 12px;
	font-family: 'Courier New', monospace;
	color: #CCE3F5;
	flex: 1 1 300px;
	max-width: 500px;
	border-left: 4px solid #6D8DAA;
	box-shadow: 0 0 20px rgba(160, 201, 231, 0.05);
}
	
.api-code h4{color: #A0C9E7; font-size: 0.9rem; margin-bottom: 1rem;}
.api-code pre{overflow-x: auto; font-size: 0.9rem; line-height: 1.5; margin: 0;}

#stats, #trusted{
	padding: 4rem 2rem; text-align: center;
}

.rowBG{
	background: rgba(0, 0, 0, 0.6);
	padding: 3rem 2rem;
	border-radius: 12px;
	max-width: 960px;
	margin: auto;
	box-shadow: 0 0 30px rgba(0, 0, 0, 0.3);
}

.linkHolder{
	display: flex;
	flex-wrap: wrap;
	justify-content: center;
	gap: 1rem;
	margin-top: 2rem;
}

.modalCont{
	display: none;
    position: fixed;
    top: 0; left: 0;
    width: 100vw; height: 100vh;
    background: rgba(0,0,0,0.8);
    backdrop-filter: blur(5px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
}

.modalForm{
	background: #1f1f1f;
      padding: 2rem;
      border-radius: 12px;
      width: 90%;
      max-width: 400px;
      color: #fff;
      box-shadow: 0 0 20px rgba(255,255,255,0.1);
}

.modalBtn-send{
background: #A0C9E7; color: #0F0F0F; padding: 0.5rem 1rem; border: none; border-radius: 6px;
}
.modalBtn-cancel{
margin-left: 1rem; background: #444; color: #fff; padding: 0.5rem 1rem; border: none; border-radius: 6px;
}

#matrixToggle{
	position: fixed;
    bottom: 20px;
    left: 20px;
    padding: 0.5rem 1rem;
    background: #A0C9E7;
    color: #0F0F0F;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    z-index: 1000;
    font-weight: normal;
}

#loginBtn{
  position: fixed;
  top: 20px;
  right: 20px;
  padding: 0.5rem 1rem;
  background: #A0C9E7;
  color: #0F0F0F;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
}

#loginBtn:hover{
  background: #cbe7a0;
  color: #0F0F0F;

}

#loginBtnX{
  position: fixed;
  top: 20px;
  right: 100px;
  padding: 0.5rem 1rem;
  background: #6ea1ce;
  color: #0F0F0F;
  border: none;
  border-radius: 5px;
  font-weight: bold;
  cursor: pointer;
  z-index: 1000;
  font-weight: normal;
}

#loginBtnX:hover{
  background: #cf6f6f;
  color: #ffffff;

}



