/* ============================================
   SESSION INVESTMENT - COMING SOON PAGE
   ============================================ */

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

:root {
  --primary-green: #10b981;
  --dark-green: #064e3b;
  --darker-green: #022c22;
  --gold: #d4af37;
  --gold-light: #f9e79f;
  --gold-dark: #aa8c2e;
  --text-white: #ffffff;
  --text-gray: #d1d5db;
  --text-dark-gray: #9ca3af;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: 'Montserrat', sans-serif;
  line-height: 1.6;
  color: var(--text-white);
  background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #064e3b 100%);
  min-height: 100vh;
  overflow-x: hidden;
  position: relative;
}

/* Background Animation */
.bg-animation {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: radial-gradient(circle at 20% 50%, rgba(16, 185, 129, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 80% 80%, rgba(212, 175, 55, 0.1) 0%, transparent 50%),
              radial-gradient(circle at 40% 20%, rgba(6, 78, 59, 0.15) 0%, transparent 50%);
  animation: pulse 15s ease-in-out infinite;
  z-index: 0;
}

@keyframes pulse {
  0%, 100% {
    opacity: 0.5;
    transform: scale(1);
  }
  50% {
    opacity: 0.8;
    transform: scale(1.1);
  }
}

/* Container */
.container {
  position: relative;
  z-index: 1;
  max-width: 1400px;
  margin: 0 auto;
  padding: 2rem;
  min-height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}

/* Logo */
.logo-container {
  margin-bottom: 2rem;
  animation: fadeInDown 1s ease-out;
}

.logo {
  height: 120px;
  width: auto;
  filter: drop-shadow(0 0 20px rgba(16, 185, 129, 0.3));
  transition: transform 0.3s ease;
}

.logo:hover {
  transform: scale(1.05);
}

@keyframes fadeInDown {
  from {
    opacity: 0;
    transform: translateY(-30px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Main Content */
.content {
  text-align: center;
  width: 100%;
  max-width: 1200px;
}

/* Main Title */
.main-title {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1.2;
  margin-bottom: 1.5rem;
  animation: fadeInUp 1s ease-out 0.3s both;
}

.title-line-1 {
  display: block;
  color: var(--text-white);
  text-shadow: 0 0 30px rgba(255, 255, 255, 0.3),
               0 0 50px rgba(16, 185, 129, 0.4),
               3px 3px 8px rgba(0, 0, 0, 0.9);
}

.title-line-2 {
  display: block;
  margin-top: 0.5rem;
}

/* Metallic Gold Text */
.metallic-gold {
  background: linear-gradient(135deg, 
    #d4af37 0%,
    #f9e79f 25%,
    #d4af37 50%,
    #aa8c2e 75%,
    #f9e79f 100%
  );
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  font-weight: 900;
  letter-spacing: 0.02em;
}

/* Tagline */
.tagline {
  font-size: 1.5rem;
  color: var(--text-gray);
  margin-bottom: 4rem;
  max-width: 800px;
  margin-left: auto;
  margin-right: auto;
  animation: fadeInUp 1s ease-out 0.6s both;
}

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

/* Countdown Section */
.countdown-section {
  margin-bottom: 5rem;
  animation: fadeInUp 1s ease-out 0.9s both;
}

.countdown-label {
  font-size: 1.8rem;
  font-weight: 700;
  color: var(--primary-green);
  margin-bottom: 1.5rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

.countdown {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-bottom: 1.5rem;
  flex-wrap: wrap;
}

.countdown-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: rgba(6, 78, 59, 0.3);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 15px;
  padding: 1.5rem 2rem;
  min-width: 140px;
  backdrop-filter: blur(10px);
  transition: all 0.3s ease;
}

.countdown-item:hover {
  background: rgba(6, 78, 59, 0.5);
  border-color: var(--primary-green);
  transform: translateY(-5px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.3);
}

.countdown-number {
  font-family: 'Playfair Display', serif;
  font-size: 4rem;
  font-weight: 900;
  line-height: 1;
  background: linear-gradient(135deg, #d4af37, #f9e79f);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  text-shadow: 0 0 20px rgba(212, 175, 55, 0.5);
}

.countdown-text {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: 0.5rem;
}

.countdown-separator {
  font-size: 3rem;
  font-weight: 700;
  color: var(--primary-green);
  margin: 0 0.5rem;
}

.launch-date {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--gold);
  text-transform: uppercase;
  letter-spacing: 0.1em;
}

/* Services Section */
.services-section {
  margin-bottom: 5rem;
  animation: fadeInUp 1s ease-out 1.2s both;
}

.services-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  margin-bottom: 3rem;
  color: var(--text-white);
}

.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 2rem;
  max-width: 1200px;
  margin: 0 auto;
}

.service-card {
  background: rgba(30, 41, 59, 0.5);
  border: 1px solid rgba(16, 185, 129, 0.2);
  border-radius: 20px;
  padding: 2.5rem 2rem;
  transition: all 0.3s ease;
  backdrop-filter: blur(10px);
}

.service-card:hover {
  background: rgba(30, 41, 59, 0.8);
  border-color: var(--primary-green);
  transform: translateY(-10px);
  box-shadow: 0 15px 40px rgba(16, 185, 129, 0.2);
}

.service-icon {
  font-size: 3.5rem;
  margin-bottom: 1rem;
  filter: drop-shadow(0 0 10px rgba(16, 185, 129, 0.3));
}

.service-name {
  font-size: 1.4rem;
  font-weight: 700;
  color: var(--gold);
  margin-bottom: 0.8rem;
}

.service-description {
  font-size: 1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  margin-bottom: 4rem;
  animation: fadeInUp 1s ease-out 1.5s both;
}

.cta-title {
  font-family: 'Playfair Display', serif;
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--text-white);
  margin-bottom: 1rem;
}

.cta-description {
  font-size: 1.2rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
}

.notify-form {
  display: flex;
  gap: 1rem;
  max-width: 600px;
  margin: 0 auto 1rem;
  flex-wrap: wrap;
  justify-content: center;
}

.email-input {
  flex: 1;
  min-width: 280px;
  padding: 1.2rem 1.5rem;
  font-size: 1rem;
  font-family: 'Montserrat', sans-serif;
  background: rgba(30, 41, 59, 0.8);
  border: 2px solid rgba(16, 185, 129, 0.3);
  border-radius: 50px;
  color: var(--text-white);
  outline: none;
  transition: all 0.3s ease;
}

.email-input::placeholder {
  color: var(--text-dark-gray);
}

.email-input:focus {
  border-color: var(--primary-green);
  box-shadow: 0 0 20px rgba(16, 185, 129, 0.3);
}

.notify-button {
  padding: 1.2rem 3rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--primary-green), #059669);
  color: var(--text-white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.notify-button:hover {
  background: linear-gradient(135deg, #059669, var(--primary-green));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

.notify-button:active {
  transform: translateY(0);
}

.form-note {
  font-size: 0.9rem;
  color: var(--text-dark-gray);
  font-style: italic;
}

/* Success Message */
.success-message {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.8);
  display: none;
  align-items: center;
  justify-content: center;
  z-index: 1000;
  backdrop-filter: blur(5px);
}

.success-message.show {
  display: flex;
  animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}

.success-content {
  background: linear-gradient(135deg, #1e293b 0%, #064e3b 100%);
  border: 2px solid var(--primary-green);
  border-radius: 20px;
  padding: 3rem 2.5rem;
  max-width: 500px;
  text-align: center;
  animation: slideUp 0.5s ease-out;
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.5);
}

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

.success-icon {
  font-size: 5rem;
  color: var(--primary-green);
  margin-bottom: 1rem;
  animation: scaleIn 0.5s ease-out 0.3s both;
}

@keyframes scaleIn {
  from {
    transform: scale(0);
  }
  to {
    transform: scale(1);
  }
}

.success-title {
  font-family: 'Playfair Display', serif;
  font-size: 2rem;
  font-weight: 900;
  color: var(--gold);
  margin-bottom: 1rem;
}

.success-text {
  font-size: 1.1rem;
  color: var(--text-gray);
  margin-bottom: 2rem;
  line-height: 1.6;
}

.success-close {
  padding: 1rem 2.5rem;
  font-size: 1rem;
  font-weight: 700;
  font-family: 'Montserrat', sans-serif;
  background: linear-gradient(135deg, var(--primary-green), #059669);
  color: var(--text-white);
  border: none;
  border-radius: 50px;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.success-close:hover {
  background: linear-gradient(135deg, #059669, var(--primary-green));
  transform: translateY(-2px);
  box-shadow: 0 10px 30px rgba(16, 185, 129, 0.4);
}

/* Footer */
.footer {
  margin-top: auto;
  padding-top: 3rem;
  text-align: center;
  border-top: 1px solid rgba(16, 185, 129, 0.2);
  animation: fadeInUp 1s ease-out 1.8s both;
}

.footer-text {
  font-size: 0.9rem;
  color: var(--text-dark-gray);
  margin-bottom: 0.5rem;
}

.footer-tagline {
  font-size: 1rem;
  font-weight: 700;
}

/* Responsive Design */
@media (max-width: 768px) {
  .main-title {
    font-size: 2.5rem;
  }
  
  .tagline {
    font-size: 1.1rem;
  }
  
  .countdown-item {
    min-width: 100px;
    padding: 1rem 1.5rem;
  }
  
  .countdown-number {
    font-size: 2.5rem;
  }
  
  .countdown-separator {
    font-size: 2rem;
    margin: 0 0.25rem;
  }
  
  .services-grid {
    grid-template-columns: 1fr;
    gap: 1.5rem;
  }
  
  .cta-title {
    font-size: 2rem;
  }
  
  .notify-form {
    flex-direction: column;
    gap: 1rem;
  }
  
  .email-input {
    width: 100%;
  }
  
  .notify-button {
    width: 100%;
  }
  
  .logo {
    height: 80px;
  }
  
  .container {
    padding: 1.5rem;
  }
}

@media (max-width: 480px) {
  .main-title {
    font-size: 2rem;
  }
  
  .countdown-item {
    min-width: 70px;
    padding: 0.8rem 1rem;
  }
  
  .countdown-number {
    font-size: 2rem;
  }
  
  .countdown-text {
    font-size: 0.7rem;
  }
  
  .countdown-separator {
    display: none;
  }
  
  .services-title {
    font-size: 2rem;
  }
  
  .success-content {
    margin: 1rem;
    padding: 2rem 1.5rem;
  }
}
