/* HarmonicSoft Brand Styles */

:root {
  /* Font Family */
  --hs-font-primary: "Segoe UI", Arial, sans-serif;
  
  /* Font Weights */
  --hs-font-regular: 400;
  --hs-font-semibold: 600;
  
  /* Primary Colors */
  --hs-emerald: #10B981;
  --hs-blue: #3B82F6;
  
  /* Text Colors */
  --hs-text-primary: #1E293B;
  --hs-text-secondary: #64748B;
  
  /* Background Colors */
  --hs-bg-light: #F8FAFC;
  --hs-bg-white: #FFFFFF;
  
  /* Gradient */
  --hs-gradient: linear-gradient(135deg, #10B981 0%, #3B82F6 100%);
  
  /* Shadows */
  --hs-shadow-sm: 0 1px 2px rgba(30, 41, 59, 0.05);
  --hs-shadow-md: 0 4px 6px rgba(30, 41, 59, 0.1);
  --hs-shadow-lg: 0 10px 25px rgba(30, 41, 59, 0.15);
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--hs-font-primary);
  font-size: 16px;
  font-weight: var(--hs-font-regular);
  line-height: 1.6;
  color: var(--hs-text-primary);
  background: var(--hs-bg-white);
}

/* Navigation */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 60px;
  background: var(--hs-bg-white);
  box-shadow: var(--hs-shadow-sm);
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
}

.logo img {
  height: 95px;
  width: auto;
}

.nav-links {
  display: flex;
  gap: 40px;
  list-style: none;
}

.nav-links a {
  font-family: var(--hs-font-primary);
  font-weight: var(--hs-font-semibold);
  color: var(--hs-text-secondary);
  text-decoration: none;
  font-size: 25px;
  transition: color 0.3s ease;
  position: relative;
}

.nav-links a:hover,
.nav-links a.active {
  color: var(--hs-emerald);
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: -8px;
  left: 0;
  right: 0;
  height: 2px;
  background: var(--hs-gradient);
  border-radius: 1px;
}

/* Hero Section */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px;
  background: var(--hs-bg-light);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 70%;
  height: 150%;
  background: var(--hs-gradient);
  opacity: 0.05;
  border-radius: 50%;
  filter: blur(80px);
}

.hero-content {
  max-width: 1200px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  position: relative;
  z-index: 1;
}

.hero-text h1 {
  font-size: 3.5rem;
  font-weight: var(--hs-font-semibold);
  color: var(--hs-text-primary);
  line-height: 1.2;
  margin-bottom: 24px;
}

.hero-text h1 .gradient-text {
  background: var(--hs-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-text p {
  font-size: 1.25rem;
  color: var(--hs-text-secondary);
  margin-bottom: 40px;
  max-width: 500px;
}

.hero-buttons {
  display: flex;
  gap: 16px;
}

.btn-primary {
  font-family: var(--hs-font-primary);
  font-weight: var(--hs-font-semibold);
  font-size: 15px;
  background: var(--hs-gradient);
  color: white;
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
}

.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: var(--hs-shadow-lg);
}

.btn-secondary {
  font-family: var(--hs-font-primary);
  font-weight: var(--hs-font-semibold);
  font-size: 15px;
  background: transparent;
  color: var(--hs-emerald);
  border: 2px solid var(--hs-emerald);
  padding: 12px 30px;
  border-radius: 8px;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  text-decoration: none;
}

.btn-secondary:hover {
  background: var(--hs-emerald);
  color: white;
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-icon {
  width: 350px;
  height: 350px;
  animation: float 6s ease-in-out infinite;
}

@keyframes float {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-20px); }
}

/* Features Section */
.features {
  padding: 100px 60px;
  background: var(--hs-bg-white);
}

.section-header {
  text-align: center;
  margin-bottom: 60px;
}

.section-header h2 {
  font-size: 2.5rem;
  font-weight: var(--hs-font-semibold);
  color: var(--hs-text-primary);
  margin-bottom: 16px;
}

.section-header p {
  font-size: 1.1rem;
  color: var(--hs-text-secondary);
  max-width: 600px;
  margin: 0 auto;
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
}

.feature-card {
  background: var(--hs-bg-light);
  padding: 40px 32px;
  border-radius: 16px;
  transition: transform 0.3s, box-shadow 0.3s;
}

.feature-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--hs-shadow-lg);
}

.feature-icon {
  width: 60px;
  height: 60px;
  background: var(--hs-gradient);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 24px;
}

.feature-icon svg {
  width: 30px;
  height: 30px;
  stroke: white;
  fill: none;
  stroke-width: 2;
}

.feature-card h3 {
  font-size: 1.25rem;
  font-weight: var(--hs-font-semibold);
  color: var(--hs-text-primary);
  margin-bottom: 12px;
}

.feature-card p {
  color: var(--hs-text-secondary);
  font-size: 0.95rem;
}

/* CTA Section */
.cta {
  padding: 100px 60px;
  background: var(--hs-gradient);
  text-align: center;
}

.cta h2 {
  font-size: 2.5rem;
  font-weight: var(--hs-font-semibold);
  color: white;
  margin-bottom: 16px;
}

.cta p {
  font-size: 1.1rem;
  color: rgba(255, 255, 255, 0.9);
  margin-bottom: 32px;
  max-width: 500px;
  margin-left: auto;
  margin-right: auto;
}

.btn-white {
  font-family: var(--hs-font-primary);
  font-weight: var(--hs-font-semibold);
  font-size: 15px;
  background: white;
  color: var(--hs-emerald);
  border: none;
  padding: 14px 32px;
  border-radius: 8px;
  cursor: pointer;
  transition: transform 0.2s, box-shadow 0.2s;
  text-decoration: none;
  display: inline-block;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Footer */
.footer {
  padding: 60px;
  background: var(--hs-text-primary);
  color: white;
}

.footer-content {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.footer-logo img {
  height: 40px;
  filter: brightness(0) invert(1);
}

.footer-links {
  display: flex;
  gap: 32px;
  list-style: none;
}

.footer-links a {
  color: rgba(255, 255, 255, 0.7);
  text-decoration: none;
  font-size: 14px;
  transition: color 0.2s;
}

.footer-links a:hover {
  color: white;
}

.footer-copy {
  color: rgba(255, 255, 255, 0.5);
  font-size: 14px;
}

/* Coming Soon Page */
.coming-soon {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  padding: 120px 60px 80px;
  background: var(--hs-bg-light);
  text-align: center;
}

.coming-soon-icon {
  width: 150px;
  height: 150px;
  margin-bottom: 40px;
  opacity: 0.8;
}

.coming-soon h1 {
  font-size: 3rem;
  font-weight: var(--hs-font-semibold);
  color: var(--hs-text-primary);
  margin-bottom: 16px;
}

.coming-soon p {
  font-size: 1.2rem;
  color: var(--hs-text-secondary);
  max-width: 500px;
  margin-bottom: 40px;
}

/* Responsive */
@media (max-width: 968px) {
  .navbar {
    padding: 16px 30px;
  }
  
  .hero {
    padding: 100px 30px 60px;
  }
  
  .hero-content {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 50px;
  }
  
  .hero-text h1 {
    font-size: 2.5rem;
  }
  
  .hero-text p {
    margin-left: auto;
    margin-right: auto;
  }
  
  .hero-buttons {
    justify-content: center;
  }
  
  .hero-icon {
    width: 250px;
    height: 250px;
  }
  
  .features {
    padding: 60px 30px;
  }
  
  .features-grid {
    grid-template-columns: 1fr;
    max-width: 400px;
  }
  
  .cta {
    padding: 60px 30px;
  }
  
  .footer {
    padding: 40px 30px;
  }
  
  .footer-content {
    flex-direction: column;
    gap: 24px;
    text-align: center;
  }
}

@media (max-width: 600px) {
  .nav-links {
    gap: 24px;
  }
  
  .nav-links a {
    font-size: 14px;
  }
  
  .logo img {
    height: 40px;
  }
}
