/* RESET & GLOBAL */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: 'Inter', sans-serif;
  background-color: #0a0c12;
  color: #ededee;
  overflow-x: hidden;
  line-height: 1.5;
  cursor: none; /* hide default cursor */
}

/* CUSTOM SCROLLBAR */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #0f1720;
  border-radius: 10px;
}
::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, #4facfe, #2b6ef0);
  border-radius: 10px;
}
::-webkit-scrollbar-thumb:hover {
  background: linear-gradient(180deg, #6fc3ff, #3f7ef5);
}

/* CANVAS BACKGROUND */
#bg-canvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 0;
  pointer-events: none;
  opacity: 0.6;
}

.site-content {
  position: relative;
  z-index: 2;
}

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

/* PRELOADER */
#preloader {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #05070c;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 9999;
  transition: opacity 0.6s ease, visibility 0.6s ease;
}
.loader-container {
  text-align: center;
}
.loader-ring {
  width: 70px;
  height: 70px;
  border: 3px solid rgba(0, 255, 255, 0.2);
  border-top: 3px solid #00f2fe;
  border-radius: 50%;
  animation: spin 1s linear infinite;
  margin: 0 auto 20px;
}
.loader-text {
  font-family: 'Space Grotesk', monospace;
  letter-spacing: 4px;
  font-weight: 600;
  font-size: 1.2rem;
  background: linear-gradient(135deg, #aaffff, #4facfe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}

/* CUSTOM CURSOR GLOW */
.cursor-glow {
  position: fixed;
  width: 24px;
  height: 24px;
  background: radial-gradient(circle, rgba(79, 172, 254, 0.9) 0%, rgba(79, 172, 254, 0.2) 70%);
  border-radius: 50%;
  pointer-events: none;
  z-index: 9998;
  transform: translate(-50%, -50%);
  transition: width 0.1s, height 0.1s, opacity 0.2s;
  opacity: 1;
  will-change: transform;
  filter: blur(1px);
}
@media (max-width: 768px) {
  .cursor-glow { display: none; }
  body { cursor: auto; }
}

/* TYPOGRAPHY & SECTIONS */
.section {
  padding: 100px 0;
}
@media (max-width: 768px) {
  .section { padding: 70px 0; }
}

.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  padding-top: 80px;
}
.hero-badge {
  display: inline-block;
  background: rgba(79, 172, 254, 0.12);
  backdrop-filter: blur(4px);
  padding: 6px 16px;
  border-radius: 40px;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: #7bc5ff;
  margin-bottom: 1.5rem;
}
.company-name {
  font-size: 5rem;
  font-weight: 800;
  background: linear-gradient(135deg, #FFFFFF, #7bc5ff, #4facfe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  letter-spacing: -0.02em;
  margin-bottom: 0.5rem;
}
.tagline {
  font-size: 1.8rem;
  font-weight: 500;
  font-family: 'Space Grotesk', monospace;
  color: #b0c4ff;
  margin-bottom: 1rem;
}
.hero-description {
  max-width: 650px;
  margin: 0 auto 2rem;
  font-size: 1.1rem;
  color: #b9c7d9;
}
.coming-soon-badge {
  margin: 2rem 0 1.5rem;
}
.glow-text {
  font-size: 1.2rem;
  font-weight: 600;
  background: rgba(0, 242, 254, 0.2);
  padding: 6px 18px;
  border-radius: 100px;
  backdrop-filter: blur(4px);
  letter-spacing: 1px;
  border: 1px solid rgba(79, 172, 254, 0.5);
  color: #b3f0ff;
}

/* COUNTDOWN */
.countdown-wrapper {
  margin: 2rem 0 2rem;
}
.timer-grid {
  display: flex;
  justify-content: center;
  gap: 2rem;
  flex-wrap: wrap;
}
.time-card {
  background: rgba(10, 20, 30, 0.6);
  backdrop-filter: blur(12px);
  border-radius: 28px;
  padding: 1.2rem 1rem;
  min-width: 100px;
  text-align: center;
  border: 1px solid rgba(79, 172, 254, 0.3);
  transition: transform 0.2s ease;
}
.time-card:hover {
  transform: translateY(-5px);
  border-color: #4facfe;
}
.time-card span:first-child {
  display: block;
  font-size: 2.8rem;
  font-weight: 800;
  font-family: 'Space Grotesk', monospace;
  background: linear-gradient(145deg, #fff, #4facfe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.label {
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #9bb5e0;
}

/* SUBSCRIBE */
.subscribe-area {
  max-width: 550px;
  margin: 2rem auto 0;
}
.subscribe-text {
  font-size: 0.9rem;
  margin-bottom: 1rem;
  opacity: 0.8;
}
.notify-form .input-group {
  display: flex;
  background: rgba(15, 25, 35, 0.7);
  backdrop-filter: blur(10px);
  border-radius: 60px;
  border: 1px solid rgba(79, 172, 254, 0.4);
  padding: 4px 4px 4px 20px;
  align-items: center;
}
.input-group i {
  color: #4facfe;
  font-size: 1.1rem;
}
.input-group input {
  flex: 1;
  background: transparent;
  border: none;
  padding: 14px 12px;
  font-size: 1rem;
  color: white;
  outline: none;
  font-family: 'Inter', sans-serif;
}
.input-group input::placeholder {
  color: #9aaec9;
}
.btn-primary {
  background: linear-gradient(95deg, #2b6ef0, #1a4cbb);
  border: none;
  padding: 10px 24px;
  border-radius: 50px;
  font-weight: 600;
  color: white;
  cursor: none;
  transition: all 0.2s ease;
  font-size: 0.9rem;
  display: flex;
  align-items: center;
  gap: 8px;
}
.btn-primary:hover {
  transform: scale(1.02);
  background: linear-gradient(95deg, #3f7ef5, #2a5acf);
  box-shadow: 0 8px 20px rgba(43, 110, 240, 0.3);
}
.form-message {
  margin-top: 12px;
  font-size: 0.8rem;
  text-align: center;
  color: #8bcbff;
}

/* SCROLL INDICATOR */
.hero-scroll-indicator {
  position: absolute;
  bottom: 30px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
  font-size: 0.75rem;
  letter-spacing: 2px;
  color: #8aa9d9;
  animation: bounce 2s infinite;
}
@keyframes bounce {
  0%, 100% { transform: translateX(-50%) translateY(0); }
  50% { transform: translateX(-50%) translateY(8px); }
}

/* SECTION HEADER */
.section-header {
  text-align: center;
  margin-bottom: 3.5rem;
}
.section-tag {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 3px;
  background: rgba(79, 172, 254, 0.2);
  padding: 5px 12px;
  border-radius: 30px;
  display: inline-block;
}
.section-header h2 {
  font-size: 2.5rem;
  margin: 1rem 0 0.8rem;
  font-weight: 700;
}
.gradient-text {
  background: linear-gradient(120deg, #b4e6ff, #4facfe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.divider {
  width: 70px;
  height: 3px;
  background: linear-gradient(90deg, #4facfe, transparent);
  margin: 1rem auto 0;
}

/* ABOUT GRID */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
}
.about-text p {
  margin-bottom: 1rem;
  color: #cdddf5;
  font-size: 1rem;
}
.services-preview {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(180px, 1fr));
  gap: 1.2rem;
}
.service-card {
  background: rgba(20, 30, 44, 0.5);
  backdrop-filter: blur(8px);
  border-radius: 24px;
  padding: 1.2rem;
  transition: all 0.25s ease;
  border: 1px solid rgba(79, 172, 254, 0.2);
}
.service-card i {
  font-size: 1.8rem;
  color: #4facfe;
  margin-bottom: 0.8rem;
}
.service-card h4 {
  font-weight: 600;
  margin-bottom: 0.4rem;
}
.service-card p {
  font-size: 0.75rem;
  opacity: 0.8;
}
.service-card:hover {
  transform: translateY(-6px);
  border-color: #4facfe;
  background: rgba(30, 45, 65, 0.6);
}
@media (max-width: 850px) {
  .about-grid { grid-template-columns: 1fr; gap: 2rem; }
  .services-preview { grid-template-columns: repeat(auto-fill, minmax(160px, 1fr)); }
}

/* CONTACT */
.contact-grid {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  align-items: center;
  gap: 2rem;
  background: rgba(12, 18, 28, 0.6);
  backdrop-filter: blur(10px);
  border-radius: 48px;
  padding: 2rem 2.5rem;
  border: 1px solid rgba(79, 172, 254, 0.3);
}
.contact-info {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
}
.contact-item {
  display: flex;
  align-items: center;
  gap: 1rem;
}
.contact-item i {
  font-size: 1.6rem;
  color: #4facfe;
}
.contact-item h4 {
  font-size: 0.9rem;
  font-weight: 500;
  color: #b1c8f0;
}
.contact-item p {
  font-weight: 500;
}
.social-links {
  display: flex;
  gap: 1.5rem;
}
.social-icon {
  background: rgba(255,255,255,0.05);
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 60px;
  font-size: 1.4rem;
  color: #c7deff;
  transition: all 0.2s ease;
  text-decoration: none;
  cursor: none;
}
.social-icon:hover {
  background: #2b6ef0;
  color: white;
  transform: scale(1.05);
}
@media (max-width: 760px) {
  .contact-grid { flex-direction: column; align-items: flex-start; }
  .contact-info { flex-direction: column; gap: 1.2rem; }
  .social-links { margin-top: 1rem; }
}

/* FOOTER */
.footer {
  padding: 2rem 0;
  border-top: 1px solid rgba(79, 172, 254, 0.2);
  margin-top: 2rem;
}
.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-logo {
  font-weight: 800;
  font-size: 1.5rem;
  background: linear-gradient(135deg, #fff, #4facfe);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.footer-tagline {
  font-size: 0.8rem;
  margin-left: 0.5rem;
  color: #6e8bb8;
}
.footer-copy p {
  font-size: 0.8rem;
  color: #7f95bd;
}

/* SCROLL ANIMATIONS (fade-up) */
.fade-up {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s cubic-bezier(0.2, 0.9, 0.4, 1.1), transform 0.8s ease;
}
.fade-up.appear {
  opacity: 1;
  transform: translateY(0);
}