:root {
  --primary-color: #10b981;
  --secondary-color: #059669;
  --bg-color: #f8fafc;
  --text-dark: #1e293b;
  --text-muted: #5e6c7e;
  --white: #ffffff;
  --accent-light: #ecfdf5;
}

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

body {
  font-family: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
  background-color: var(--bg-color);
  color: var(--text-dark);
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.coming-soon-container {
  max-width: 1400px;
  width: 100%;
  margin: 0 auto;
  padding: 40px 60px;
  display: flex;
  flex-direction: column;
  flex-grow: 1;
}

/* Hero Wrapper - Split Layout on Desktop */
.hero-wrapper {
  display: grid;
  grid-template-columns: 1fr 1fr;
  align-items: center;
  gap: 80px;
  flex-grow: 1;
  animation: fadeIn 1s ease-out;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(20px); }
  to { opacity: 1; transform: translateY(0); }
}

/* Left: Hero Content */
.hero-content {
  display: flex;
  flex-direction: column;
  gap: 40px;
}

.header {
  display: flex;
  align-items: center;
  gap: 20px;
}

.logo-box {
  width: 60px;
  height: 60px;
  background: var(--white);
  border-radius: 18px;
  padding: 10px;
  box-shadow: 0 10px 15px -3px rgba(16, 185, 129, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
}

.main-logo {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.cs-badge {
  background-color: var(--accent-light);
  color: var(--primary-color);
  padding: 8px 16px;
  border-radius: 100px;
  font-weight: 800;
  font-size: 0.75rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  border: 1px solid rgba(16, 185, 129, 0.1);
}

/* Text Styling */
.text-group {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.main-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  font-weight: 800;
  line-height: 1.1;
  color: var(--text-dark);
}

.main-title .highlight {
  color: var(--primary-color);
}

.sub-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--text-dark);
  margin-top: 8px;
}

.description {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 500px;
}

.action-fallback {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  color: var(--primary-color);
  margin-top: 24px;
}

.pulse-dot {
  width: 12px;
  height: 12px;
  background-color: var(--primary-color);
  border-radius: 50%;
  position: relative;
}

.pulse-dot::after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  background-color: inherit;
  border-radius: inherit;
  animation: pulse 2s infinite;
}

@keyframes pulse {
  0% { transform: scale(1); opacity: 0.8; }
  100% { transform: scale(3); opacity: 0; }
}

/* Social Proof */
.social-proof {
  display: flex;
  align-items: center;
  gap: 20px;
  padding-top: 20px;
  border-top: 1px solid #e2e8f0;
  width: fit-content;
}

.avatar-group {
  display: flex;
}

.avatar-group img, .plus-more {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  border: 4px solid var(--white);
  margin-left: -15px;
}

.avatar-group img:first-child {
  margin-left: 0;
}

.plus-more {
  background-color: var(--accent-light);
  color: var(--primary-color);
  font-weight: 800;
  font-size: 0.875rem;
  display: flex;
  align-items: center;
  justify-content: center;
}

.rating-box {
  display: flex;
  flex-direction: column;
}

.stars {
  color: #fbbf24;
  letter-spacing: 2px;
  font-size: 0.875rem;
  margin-bottom: 4px;
}

.trust-text {
  font-weight: 700;
  font-size: 0.875rem;
  color: var(--text-muted);
}

/* Right: Visual Area */
.hero-visual {
  position: relative;
  display: flex;
  justify-content: center;
}

.image-frame {
  position: relative;
  width: 100%;
  max-width: 550px;
}

.hero-img {
  width: 100%;
  height: auto;
  border-radius: 32px;
  box-shadow: 0 40px 60px -15px rgba(0, 0, 0, 0.1);
  display: block;
}

.floating-benefit {
  position: absolute;
  bottom: 10%;
  left: -10%;
  background: var(--white);
  padding: 20px 24px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  gap: 16px;
  box-shadow: 0 20px 25px -5px rgba(16, 185, 129, 0.1);
  animation: float 6s ease-in-out infinite;
}

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

.icon-circle {
  background-color: var(--accent-light);
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.5rem;
}

.benefit-text {
  display: flex;
  flex-direction: column;
}

.ben-label {
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
}

.ben-value {
  font-size: 1rem;
  font-weight: 800;
  color: var(--primary-color);
}

.overlay-tag {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(16, 185, 129, 0.9);
  color: var(--white);
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 0.75rem;
  font-weight: 800;
  backdrop-filter: blur(4px);
  letter-spacing: 0.05em;
}

/* Footer */
.app-footer {
  padding-top: 60px;
  margin-top: auto;
  text-align: left;
  color: var(--text-muted);
  font-size: 0.875rem;
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-wrapper {
    grid-template-columns: 1fr;
    text-align: center;
    gap: 60px;
  }
  
  .hero-content {
    align-items: center;
    order: 2;
  }
  
  .hero-visual {
    order: 1;
    margin-top: 20px;
  }
  
  .header {
    flex-direction: column;
    gap: 16px;
  }
  
  .description {
    margin: 0 auto;
  }
  
  .social-proof {
    margin: 0 auto;
  }
  
  .floating-benefit {
    left: 5%;
    bottom: -5%;
  }
  
  .app-footer {
    text-align: center;
  }
}

@media (max-width: 640px) {
  .coming-soon-container {
    padding: 30px 20px;
  }
  
  .main-title {
    font-size: 2.5rem;
  }
  
  .sub-title {
    font-size: 1.25rem;
  }
  
  .image-frame {
    border-radius: 24px;
  }
  
  .hero-img {
    border-radius: 24px;
  }
}
