/* Reset and Base Styles */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
  line-height: 1.6;
  color: #e0e0e0;
  background: radial-gradient(circle at 20% 20%, #1b2750 0%, #0a0e27 45%, #020411 100%);
  background-attachment: fixed;
  font-size: 16px;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  background-image: radial-gradient(circle at 25% 30%, rgba(88, 166, 255, 0.15) 0%, transparent 60%), radial-gradient(circle at 80% 10%, rgba(121, 192, 255, 0.12) 0%, transparent 50%), radial-gradient(circle at 40% 75%, rgba(143, 255, 187, 0.08) 0%, transparent 35%);
  pointer-events: none;
  z-index: -1;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='160' height='160' viewBox='0 0 160 160'%3E%3Ccircle cx='20' cy='20' r='1.2' fill='rgba(255,255,255,0.18)'/%3E%3Ccircle cx='110' cy='50' r='1.1' fill='rgba(255,255,255,0.14)'/%3E%3Ccircle cx='50' cy='110' r='1.4' fill='rgba(255,255,255,0.12)'/%3E%3Ccircle cx='130' cy='130' r='1' fill='rgba(255,255,255,0.16)'/%3E%3C/svg%3E");
  opacity: 0.64;
  pointer-events: none;
  z-index: -1;
  animation: stars-drift 30s linear infinite;
}

@keyframes stars-drift {
  from { transform: translate(0, 0); }
  to { transform: translate(-80px, 70px); }
}

a {
  color: #58a6ff;
  text-decoration: none;
  transition: color 0.3s ease;
}

a:hover {
  color: #79c0ff;
}

/* Navigation */
nav {
  background-color: rgba(15, 21, 48, 0.7);
  backdrop-filter: blur(8px);
  border-bottom: 1px solid rgba(88, 166, 255, 0.15);
  position: sticky;
  top: 0;
  z-index: 100;
  box-shadow: 0 4px 18px rgba(0, 0, 0, 0.35);
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0.75rem 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.nav-logo img {
  height: 160px;
  width: auto;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.nav-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(88, 166, 255, 0.8));
}

.nav-links {
  list-style: none;
  display: flex;
  gap: 2.5rem;
}

.nav-links a {
  color: #cbd5e0;
  font-weight: 500;
  font-size: 0.95rem;
  position: relative;
  transition: color 0.3s ease;
}

.nav-links a::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: -5px;
  width: 0;
  height: 2px;
  background: linear-gradient(90deg, #58a6ff, #5bffa0);
  transition: width 0.3s ease;
  border-radius: 2px;
}

.nav-links a:hover {
  color: #58a6ff;
}

.nav-links a:hover::after {
  width: 100%;
}

/* Hero Section */
.hero {
  position: relative;
  overflow: hidden;
  background: linear-gradient(125deg, rgba(23, 32, 70, 0.9) 0%, rgba(12, 17, 37, 0.95) 45%, rgba(27, 36, 66, 0.9) 100%);
  padding: 6rem 2rem;
  text-align: center;
  border-bottom: 1px solid rgba(88, 166, 255, 0.15);
  transform-style: preserve-3d;
}

.hero::before,
.hero::after,
.hero .hero-light {
  content: "";
  position: absolute;
  border-radius: 50%;
  filter: blur(16px);
  opacity: 0.55;
  pointer-events: none;
}

.hero::before {
  width: 240px;
  height: 240px;
  top: -90px;
  left: -70px;
  background: radial-gradient(circle, rgba(93, 194, 255, 0.75) 0%, transparent 70%);
  animation: floatGlow 15s ease-in-out infinite;
}

.hero::after {
  width: 200px;
  height: 200px;
  bottom: -85px;
  right: -75px;
  background: radial-gradient(circle, rgba(96, 221, 180, 0.62) 0%, transparent 75%);
  animation: floatGlow 19s ease-in-out infinite reverse;
}

@keyframes floatGlow {
  0% { transform: translate(0, 0) scale(1); }
  50% { transform: translate(12px, -20px) scale(1.1); }
  100% { transform: translate(0, 0) scale(1); }
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 30% 30%, rgba(88, 166, 255, 0.25), transparent 45%), radial-gradient(circle at 70% 20%, rgba(23, 255, 207, 0.20), transparent 40%);
  pointer-events: none;
  opacity: 0.85;
  animation: hero-lights 12s linear infinite;
}

@keyframes hero-lights {
  0% { transform: scale(1) translate(0, 0); }
  50% { transform: scale(1.1) translate(4%, 2%); }
  100% { transform: scale(1) translate(0, 0); }
}

.hero-content {
  max-width: 800px;
  margin: 0 auto;
}

.hero-logo {
  text-align: center;
  margin-bottom: 2rem;
}

.hero-logo img {
  height: 340px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(88, 166, 255, 0.5));
  transition: transform 0.3s ease, filter 0.3s ease;
}

.hero-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 25px rgba(88, 166, 255, 0.8));
}

.hero h1 {
  font-size: 3rem;
  font-weight: 800;
  background: linear-gradient(120deg, #58a6ff, #79c0ff, #5bffa0);
  background-size: 200% 200%;
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 1rem;
  line-height: 1.2;
  animation: textGradient 7s ease-in-out infinite, hero-title-glow 2.2s ease-in-out infinite;
}

@keyframes hero-title-glow {
  0%, 100% { text-shadow: 0 0 12px rgba(88, 166, 255, 0.65), 0 0 24px rgba(124, 207, 255, 0.28); }
  50% { text-shadow: 0 0 22px rgba(88, 166, 255, 0.82), 0 0 40px rgba(124, 207, 255, 0.42); }
}

@keyframes textGradient {
  0% { background-position: 0% 50%; }
  50% { background-position: 100% 50%; }
  100% { background-position: 0% 50%; }
}

.hero p {
  font-size: 1.2rem;
  color: #a0aec0;
  margin: 0;
  max-width: 760px;
  margin-left: auto;
  margin-right: auto;
  letter-spacing: 0.005em;
}

.hero p::after {
  content: "";
  position: absolute;
  left: 50%;
  bottom: -1.25rem;
  transform: translateX(-50%);
  width: 94px;
  height: 2px;
  background: linear-gradient(90deg, #58a6ff, #89e8ff);
  opacity: 0.8;
}

/* Main Content */
main {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 2rem;
}

section {
  position: relative;
  z-index: 1;
}

.about-section,
.apps-section,
.contact-section {
  backdrop-filter: blur(12px);
  background-color: rgba(9, 14, 35, 0.6);
  border-radius: 16px;
  border: 1px solid rgba(88, 166, 255, 0.2);
  box-shadow: 0 18px 38px rgba(0, 0, 0, 0.35);
  padding: 2.5rem;
  margin-bottom: 2rem;
  border-image: linear-gradient(118deg, #58a6ff, #62ffc7, #4bb7ff) 1;
  animation: sectionLittlePulse 11s ease-in-out infinite;
}

@keyframes sectionLittlePulse {
  0%, 100% { transform: translateY(0) scale(1); }
  50% { transform: translateY(-2px) scale(1.001); }
}

.app-showcase {
  padding: 2rem 1.5rem;
  background: linear-gradient(145deg, rgba(8, 13, 27, 0.55), rgba(16, 26, 58, 0.55));
  border-radius: 14px;
}

.nav-container {
  transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.nav-container:hover {
  transform: translateY(-2px);
}

/* Apps Section */
.apps-section {
  padding: 4rem 0;
}

.apps-section > h2 {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #58a6ff, #79c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
  text-align: center;
}

/* App Showcase */
.app-showcase {
  margin-bottom: 5rem;
  padding: 2rem 0;
  transition: transform 0.4s ease, filter 0.4s ease;
}

.app-showcase:hover {
  transform: translateY(-8px);
  filter: brightness(1.04) saturate(1.1);
}

.app-intro {
  margin-bottom: 3rem;
  text-align: center;
}

.app-intro h3 {
  font-size: 2rem;
  font-weight: 700;
  color: #ffffff;
  margin-bottom: 0.5rem;
}

.app-intro .tagline {
  font-size: 1.3rem;
  color: #58a6ff;
  font-weight: 600;
  margin-bottom: 1rem;
}

.app-intro .description {
  font-size: 1.05rem;
  color: #cbd5e0;
  max-width: 700px;
  margin: 0 auto;
  line-height: 1.8;
}

/* Features Grid */
.app-features {
  margin-bottom: 2.5rem;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  margin-bottom: 2rem;
}

.feature {
  padding: 1.5rem;
  background-color: rgba(30, 41, 59, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(88, 166, 255, 0.2);
  transition: all 0.3s ease;
  text-align: center;
}

.feature:hover {
  border-color: rgba(88, 166, 255, 0.5);
  box-shadow: 0 4px 12px rgba(88, 166, 255, 0.15);
  transform: translateY(-2px);
  background-color: rgba(30, 41, 59, 0.8);
}

.feature-icon {
  font-size: 2.5rem;
  margin-bottom: 1rem;
  display: block;
}

.feature h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 0.75rem;
}

.feature p {
  color: #a0aec0;
  font-size: 0.95rem;
  line-height: 1.6;
  margin: 0;
}

/* CTA Section */
.app-cta {
  text-align: center;
  padding: 2rem 0;
  border-top: 1px solid rgba(88, 166, 255, 0.15);
  border-bottom: 1px solid rgba(88, 166, 255, 0.15);
  margin-bottom: 3rem;
}

.app-cta p {
  color: #cbd5e0;
  margin-bottom: 1.5rem;
  font-size: 1rem;
}

.app-cta strong {
  color: #ffffff;
}

.cta-button {
  display: inline-block;
  padding: 0.85rem 2rem;
  margin: 0 0.5rem;
  border-radius: 10px;
  font-weight: 700;
  font-size: 0.98rem;
  letter-spacing: 0.01em;
  transition: all 0.3s ease;
  text-decoration: none;
  cursor: pointer;
  border: 2px solid #58a6ff;
  color: white;
  background-color: #58a6ff;
  box-shadow: 0 0 0 0 rgba(88, 166, 255, 0.45);
}

.cta-button:hover {
  background: linear-gradient(135deg, #58a6ff, #78d8ff);
  border-color: #79c0ff;
  animation: glowBorder 1.5s ease-in-out infinite;
  box-shadow: 0 0 20px rgba(88, 166, 255, 0.35), 0 8px 24px rgba(16, 27, 60, 0.45);
  transform: translateY(-2px);
}

.cta-button.secondary {
  color: #58a6ff;
  background-color: rgba(12, 20, 45, 0.55);
  border-color: #58a6ff;
  backdrop-filter: blur(8px);
}

.cta-button.secondary:hover {
  background-color: rgba(53, 83, 145, 0.35);
  color: #b1dbff;
  border-color: #79c0ff;
  box-shadow: 0 0 20px rgba(88, 166, 255, 0.3);
}

@keyframes glowBorder {
  0%, 100% { box-shadow: 0 0 20px rgba(88, 166, 255, 0.40), 0 10px 34px rgba(16, 27, 60, 0.45); }
  50% { box-shadow: 0 0 28px rgba(88, 166, 255, 0.55), 0 14px 42px rgba(16, 27, 60, 0.50); }
}

/* About Section */
.about-section {
  padding: 3rem 0;
  background: linear-gradient(135deg, rgba(30, 41, 59, 0.3) 0%, rgba(30, 41, 59, 0.6) 50%, rgba(30, 41, 59, 0.3) 100%);
  margin: 3rem 0;
  padding: 3rem 2rem;
  border-radius: 8px;
  border: 1px solid rgba(88, 166, 255, 0.15);
}

.about-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #58a6ff, #79c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 2rem;
  text-align: center;
}

.about-content {
  max-width: 700px;
  margin: 0 auto;
}

.about-content p {
  color: #cbd5e0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-content p:last-child {
  margin-bottom: 0;
}

.about-values {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(88, 166, 255, 0.2);
}

.about-values h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-values ul {
  list-style: none;
  padding: 0;
}

.about-values li {
  color: #cbd5e0;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-values li strong {
  color: #58a6ff;
}

.about-mission {
  margin-top: 2rem;
  padding-top: 2rem;
  border-top: 1px solid rgba(88, 166, 255, 0.2);
}

.about-mission h3 {
  color: #ffffff;
  font-size: 1.25rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.about-mission p {
  color: #cbd5e0;
  font-size: 1rem;
  line-height: 1.8;
  margin-bottom: 1.5rem;
}

.about-mission ul {
  list-style: none;
  padding: 0;
}

.about-mission li {
  color: #cbd5e0;
  margin-bottom: 1rem;
  line-height: 1.6;
}

.about-mission li strong {
  color: #58a6ff;
}

/* Contact Section */
.contact-section {
  padding: 4rem 0;
  text-align: center;
}

.contact-section h2 {
  font-size: 2.25rem;
  font-weight: 700;
  background: linear-gradient(135deg, #58a6ff, #79c0ff);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: 3rem;
}

.contact-links {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
  max-width: 600px;
  margin: 0 auto;
}

.contact-card {
  padding: 2rem;
  background-color: rgba(30, 41, 59, 0.6);
  border-radius: 8px;
  border: 1px solid rgba(88, 166, 255, 0.2);
  transition: all 0.3s ease;
}

.contact-card:hover {
  border-color: rgba(88, 166, 255, 0.5);
  box-shadow: 0 4px 12px rgba(88, 166, 255, 0.15);
  background-color: rgba(30, 41, 59, 0.8);
}

.contact-card h4 {
  font-size: 1.1rem;
  font-weight: 600;
  color: #ffffff;
  margin-bottom: 1rem;
}

.contact-card a {
  font-size: 1rem;
  font-weight: 500;
  color: #58a6ff;
}

/* Footer */
footer {
  background-color: #1a202c;
  color: #cbd5e0;
  margin-top: 4rem;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  padding: 3rem 2rem;
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
}

.footer-logo img {
  height: 120px;
  width: auto;
  margin-bottom: 1rem;
  transition: transform 0.3s ease, filter 0.3s ease;
}

.footer-logo img:hover {
  transform: scale(1.05);
  filter: drop-shadow(0 0 15px rgba(88, 166, 255, 0.8));
}

.footer-logo p {
  color: #a0aec0;
  font-size: 0.95rem;
  margin: 0;
}

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

.footer-links h5 {
  color: #ffffff;
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 1rem;
}

.footer-links ul {
  list-style: none;
}

.footer-links li {
  margin-bottom: 0.75rem;
}

.footer-links a {
  color: #a0aec0;
  font-size: 0.9rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: #ffffff;
}

.footer-bottom {
  background-color: #0f1419;
  padding: 1.5rem 2rem;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.footer-bottom p {
  color: #a0aec0;
  margin: 0;
  font-size: 0.9rem;
}

/* Responsive Design */
@media (max-width: 768px) {
  .hero h1 {
    font-size: 2rem;
  }

  .hero p {
    font-size: 1rem;
  }

  .nav-container {
    flex-direction: column;
    gap: 1rem;
    padding: 1rem;
  }

  .nav-links {
    gap: 1.5rem;
  }

  .apps-section > h2 {
    font-size: 1.75rem;
  }

  .app-intro h3 {
    font-size: 1.5rem;
  }

  .app-intro .tagline {
    font-size: 1.1rem;
  }

  .feature-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }

  .cta-button {
    display: block;
    margin: 0.5rem 0;
  }

  .footer-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .footer-links {
    grid-template-columns: 1fr;
  }
}

@media (max-width: 480px) {
  body {
    font-size: 14px;
  }

  .hero {
    padding: 3rem 1rem;
  }

  .hero h1 {
    font-size: 1.5rem;
  }

  .hero p {
    font-size: 0.95rem;
  }

  .app-showcase,
  .about-section,
  .contact-section {
    border-width: 1.8px;
  }

  .cta-button {
    font-size: 0.9rem;
    padding: 0.75rem 1.4rem;
  }

  .nav-links a {
    font-size: 0.82rem;
  }
}

@keyframes neonPulse {
  0%, 100% { box-shadow: 0 0 6px rgba(88, 166, 255, 0.35), 0 0 18px rgba(72, 207, 255, 0.25); }
  50% { box-shadow: 0 0 14px rgba(88, 166, 255, 0.6), 0 0 28px rgba(72, 207, 255, 0.4); }
}

@keyframes floatRing {
  0% { transform: rotate(0deg) translateX(0) scale(1); }
  50% { transform: rotate(35deg) translateX(12px) scale(1.04); }
  100% { transform: rotate(0deg) translateX(0) scale(1); }
}

/* Coolness boost: interactive parallax effect */
.app-showcase:hover {
  animation: neonPulse 2.6s ease-in-out infinite;
}

.app-showcase::before {
  content: "";
  position: absolute;
  inset: -15px;
  border-radius: 18px;
  border: 1px solid rgba(92, 178, 255, 0.3);
  pointer-events: none;
  opacity: 0.4;
  transform: scale(0.98);
  animation: floatRing 14s linear infinite;
  z-index: -1;
}

/* Global tweaking for dramatic polish */
h2, h3, h4, p {
  position: relative;
  color: #d9e2ff;
}

h2::before,
h3::before {
  content: "";
  position: absolute;
  left: 0;
  bottom: -0.45rem;
  width: 42px;
  height: 3px;
  background: linear-gradient(90deg, #58a6ff 0%, #41ffca 100%);
  opacity: 0.85;
  border-radius: 3px;
}

h2::before { width: 60px; }

@media (prefers-reduced-motion: reduce) {
  * {
    animation: none !important;
    transition: none !important;
  }
}


  main {
    padding: 0 1rem;
  }

  .apps-section {
    padding: 2rem 0;
  }

  .apps-section > h2 {
    font-size: 1.5rem;
    margin-bottom: 2rem;
  }

  .app-intro h3 {
    font-size: 1.25rem;
  }

  .app-intro .tagline {
    font-size: 1rem;
  }

  .app-features {
    margin-bottom: 1.5rem;
  }

  .feature {
    padding: 1rem;
  }

  .feature-icon {
    font-size: 2rem;
  }

  .feature h4 {
    font-size: 1rem;
  }

  .feature p {
    font-size: 0.9rem;
  }

  .cta-button {
    padding: 0.7rem 1.5rem;
    font-size: 0.9rem;
  }

  .contact-links {
    grid-template-columns: 1fr;
    gap: 1rem;
  }

  .footer-content {
    padding: 2rem 1rem;
  }

@media (max-width: 820px) {
  .hero {
    padding: 4rem 1.2rem;
  }

  .hero-logo img {
    height: 260px;
  }

  .nav-container {
    padding: 0.7rem 1rem;
    gap: 1rem;
    flex-wrap: wrap;
  }

  .nav-links {
    gap: 1rem;
    align-items: center;
    justify-content: center;
    width: 100%;
    margin-top: 0.5rem;
  }

  .nav-links a {
    font-size: 0.85rem;
  }
}
