/* IBOS Enhanced Brand Guidelines CSS */
:root {
  /* Enhanced Color Palette */
  --primary-teal: #20B2AA;
  --primary-blue: #4682B4;
  --deep-navy: #1e3a8a;
  --accent-blue: #0ea5e9;
  --electric-blue: #00d4ff;
  --white: #ffffff;
  --light-gray: #f8fafc;
  --text-gray: #64748b;
  --dark-gray: #1a1a1a;
  --success: #22c55e;
  --warning: #f59e0b;
  --error: #ef4444;
  
  /* Enhanced Gradients */
  --gradient-primary: linear-gradient(135deg, #20B2AA 0%, #4682B4 50%, #0ea5e9 100%);
  --gradient-electric: linear-gradient(135deg, #00d4ff 0%, #20B2AA 50%, #4682B4 100%);
  --gradient-dark: linear-gradient(135deg, #1a1a1a 0%, #2d3748 100%);
  --gradient-glow: radial-gradient(circle, rgba(32, 178, 170, 0.3) 0%, transparent 70%);
  
  /* Typography */
  --font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  
  /* Spacing */
  --spacing-xs: 0.25rem;
  --spacing-sm: 0.5rem;
  --spacing-md: 1rem;
  --spacing-lg: 1.5rem;
  --spacing-xl: 2rem;
  --spacing-2xl: 3rem;
  --spacing-3xl: 4rem;
  
  /* Shadows */
  --shadow-glow: 0 0 30px rgba(32, 178, 170, 0.3);
  --shadow-intense: 0 20px 40px rgba(0, 0, 0, 0.3);
  --shadow-soft: 0 10px 25px rgba(0, 0, 0, 0.1);
  
  /* Transitions */
  --transition-smooth: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  --transition-bounce: all 0.6s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

/* Reset and Base */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: var(--font-family);
  background: var(--gradient-dark);
  color: var(--white);
  overflow: hidden;
  height: 100vh;
  position: relative;
}

/* Animated Background */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: var(--gradient-dark);
}

.floating-shapes {
  position: absolute;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.shape {
  position: absolute;
  border-radius: 50%;
  background: var(--gradient-glow);
  animation: float 20s infinite ease-in-out;
}

.shape-1 {
  width: 300px;
  height: 300px;
  top: 10%;
  left: 10%;
  animation-delay: 0s;
}

.shape-2 {
  width: 200px;
  height: 200px;
  top: 60%;
  right: 15%;
  animation-delay: -5s;
}

.shape-3 {
  width: 150px;
  height: 150px;
  bottom: 20%;
  left: 20%;
  animation-delay: -10s;
}

.shape-4 {
  width: 250px;
  height: 250px;
  top: 30%;
  right: 30%;
  animation-delay: -15s;
}

.shape-5 {
  width: 100px;
  height: 100px;
  top: 80%;
  left: 60%;
  animation-delay: -7s;
}

.shape-6 {
  width: 180px;
  height: 180px;
  top: 5%;
  right: 5%;
  animation-delay: -12s;
}

@keyframes float {
  0%, 100% { transform: translateY(0px) rotate(0deg); opacity: 0.3; }
  25% { transform: translateY(-20px) rotate(90deg); opacity: 0.5; }
  50% { transform: translateY(-40px) rotate(180deg); opacity: 0.3; }
  75% { transform: translateY(-20px) rotate(270deg); opacity: 0.5; }
}

/* Particle Canvas */
#particleCanvas {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  pointer-events: none;
}

/* Main Container */
.main-container {
  display: grid;
  grid-template-columns: 1fr 1fr;
  height: 100vh;
  position: relative;
  z-index: 1;
}

/* Hero Section */
.hero-section {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: flex-start;
  padding: var(--spacing-3xl);
  position: relative;
}

/* Logo Container */
.logo-container {
  position: relative;
  margin-bottom: var(--spacing-2xl);
  animation: slideInLeft 1s ease-out;
}

.logo-glow {
  position: absolute;
  top: -20px;
  left: -20px;
  right: -20px;
  bottom: -20px;
  background: var(--gradient-glow);
  border-radius: 50%;
  animation: pulse-glow 3s infinite;
}

.brand-logo {
  font-size: 5rem;
  font-weight: 900;
  background: var(--gradient-electric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
  z-index: 2;
  letter-spacing: -0.05em;
  text-shadow: 0 0 30px rgba(32, 178, 170, 0.5);
}

.logo-subtitle {
  font-size: 1.2rem;
  color: var(--primary-teal);
  font-weight: 500;
  margin-top: var(--spacing-sm);
  opacity: 0.9;
}

/* Headline Container */
.headline-container {
  margin-bottom: var(--spacing-2xl);
  animation: slideInLeft 1s ease-out 0.2s both;
}

.main-headline {
  font-size: 3.5rem;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: var(--spacing-lg);
}

.headline-line {
  display: block;
  color: var(--white);
}

.gradient-text {
  background: var(--gradient-electric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  position: relative;
}

.gradient-text::after {
  content: '';
  position: absolute;
  bottom: -5px;
  left: 0;
  width: 100%;
  height: 3px;
  background: var(--gradient-primary);
  border-radius: 2px;
}

/* Value Proposition */
.value-proposition {
  display: flex;
  gap: var(--spacing-lg);
  margin-top: var(--spacing-xl);
}

.value-item {
  display: flex;
  align-items: center;
  gap: var(--spacing-sm);
  padding: var(--spacing-sm) var(--spacing-md);
  background: rgba(255, 255, 255, 0.1);
  border-radius: 25px;
  backdrop-filter: blur(10px);
  border: 1px solid rgba(32, 178, 170, 0.3);
  transition: var(--transition-smooth);
}

.value-item:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-glow);
  background: rgba(32, 178, 170, 0.2);
}

.value-icon {
  font-size: 1.5rem;
}

.value-item span {
  font-weight: 600;
  font-size: 0.9rem;
}

/* Countdown Container */
.countdown-container {
  margin-bottom: var(--spacing-2xl);
  animation: slideInLeft 1s ease-out 0.4s both;
}

.countdown-label {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--primary-teal);
  margin-bottom: var(--spacing-lg);
  text-align: center;
}

.countdown-display {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--spacing-md);
  margin-bottom: var(--spacing-md);
}

.time-block {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(15px);
  border: 2px solid rgba(32, 178, 170, 0.3);
  border-radius: 15px;
  padding: var(--spacing-lg);
  text-align: center;
  min-width: 80px;
  transition: var(--transition-smooth);
  position: relative;
  overflow: hidden;
}

.time-block::before {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(32, 178, 170, 0.3), transparent);
  transition: left 0.5s;
}

.time-block:hover::before {
  left: 100%;
}

.time-block:hover {
  transform: scale(1.05);
  box-shadow: var(--shadow-glow);
  border-color: var(--primary-teal);
}

.time-number {
  font-size: 2.5rem;
  font-weight: 900;
  color: var(--white);
  display: block;
  line-height: 1;
}

.time-label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--primary-teal);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-top: var(--spacing-xs);
}

.time-separator {
  font-size: 2rem;
  font-weight: 900;
  color: var(--primary-teal);
  animation: blink 2s infinite;
}

.launch-date {
  text-align: center;
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--text-gray);
}

/* Stats Container */
.stats-container {
  display: flex;
  gap: var(--spacing-xl);
  animation: slideInLeft 1s ease-out 0.6s both;
}

.stat-item {
  text-align: center;
}

.stat-number {
  font-size: 3rem;
  font-weight: 900;
  background: var(--gradient-electric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
}

.stat-label {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-gray);
  margin-top: var(--spacing-xs);
}

/* Contact Section */
.contact-section {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--spacing-3xl);
  position: relative;
}

.contact-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  border-left: 1px solid rgba(32, 178, 170, 0.3);
}

.contact-container {
  position: relative;
  z-index: 2;
  width: 100%;
  max-width: 500px;
  animation: slideInRight 1s ease-out;
}

/* Contact Header */
.contact-header {
  text-align: center;
  margin-bottom: var(--spacing-2xl);
}

.contact-title {
  font-size: 2.5rem;
  font-weight: 800;
  background: var(--gradient-electric);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  margin-bottom: var(--spacing-md);
}

.contact-subtitle {
  font-size: 1.1rem;
  color: var(--text-gray);
  line-height: 1.6;
}

/* Contact Form */
.contact-form {
  display: flex;
  flex-direction: column;
  gap: var(--spacing-lg);
}

.form-group {
  position: relative;
}

.form-group input,
.form-group select {
  width: 100%;
  padding: var(--spacing-lg);
  background: rgba(255, 255, 255, 0.1);
  border: 2px solid rgba(255, 255, 255, 0.2);
  border-radius: 12px;
  color: var(--white);
  font-size: 1rem;
  font-weight: 500;
  transition: var(--transition-smooth);
  backdrop-filter: blur(10px);
}

.form-group input::placeholder {
  color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus {
  outline: none;
  border-color: var(--primary-teal);
  box-shadow: 0 0 0 4px rgba(32, 178, 170, 0.2);
  background: rgba(255, 255, 255, 0.15);
}

.form-group select option {
  background: var(--dark-gray);
  color: var(--white);
}

.input-highlight {
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--gradient-primary);
  transition: width 0.3s ease;
}

.form-group input:focus + .input-highlight,
.form-group select:focus + .input-highlight {
  width: 100%;
}

/* Submit Button */
.submit-btn {
  position: relative;
  padding: var(--spacing-lg) var(--spacing-2xl);
  background: var(--gradient-primary);
  border: none;
  border-radius: 12px;
  color: var(--white);
  font-size: 1.1rem;
  font-weight: 700;
  cursor: pointer;
  transition: var(--transition-smooth);
  overflow: hidden;
  margin-top: var(--spacing-md);
}

.submit-btn:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow);
}

.submit-btn:active {
  transform: translateY(-1px);
}

.btn-text {
  position: relative;
  z-index: 2;
}

.btn-glow {
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
  transition: left 0.5s;
}

.submit-btn:hover .btn-glow {
  left: 100%;
}

/* Success Message */
.success-message {
  display: none;
  text-align: center;
  padding: var(--spacing-2xl);
  background: rgba(34, 197, 94, 0.1);
  border: 2px solid var(--success);
  border-radius: 15px;
  backdrop-filter: blur(10px);
  margin-top: var(--spacing-lg);
}

.success-message.show {
  display: block;
  animation: successSlide 0.6s ease-out;
}

.success-icon {
  font-size: 3rem;
  color: var(--success);
  margin-bottom: var(--spacing-md);
}

.success-message h4 {
  color: var(--success);
  font-size: 1.5rem;
  font-weight: 700;
  margin-bottom: var(--spacing-sm);
}

.success-message p {
  color: var(--white);
  opacity: 0.9;
}

/* Trust Indicators */
.trust-indicators {
  display: flex;
  justify-content: space-between;
  margin-top: var(--spacing-xl);
  gap: var(--spacing-md);
}

.trust-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: var(--spacing-xs);
  padding: var(--spacing-md);
  background: rgba(255, 255, 255, 0.05);
  border-radius: 10px;
  backdrop-filter: blur(5px);
  transition: var(--transition-smooth);
  flex: 1;
}

.trust-item:hover {
  transform: translateY(-3px);
  background: rgba(32, 178, 170, 0.1);
}

.trust-icon {
  font-size: 1.5rem;
}

.trust-item span {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--text-gray);
  text-align: center;
}

/* Animations */
@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(50px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes pulse-glow {
  0%, 100% { opacity: 0.3; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.1); }
}

@keyframes blink {
  0%, 50% { opacity: 1; }
  51%, 100% { opacity: 0.3; }
}

@keyframes successSlide {
  from {
    opacity: 0;
    transform: translateY(20px) scale(0.9);
  }
  to {
    opacity: 1;
    transform: translateY(0) scale(1);
  }
}

/* Responsive Design */
@media (max-width: 1200px) {
  .main-container {
    grid-template-columns: 1fr;
    grid-template-rows: 1fr 1fr;
  }
  
  .hero-section,
  .contact-section {
    padding: var(--spacing-xl);
  }
  
  .brand-logo {
    font-size: 4rem;
  }
  
  .main-headline {
    font-size: 2.5rem;
  }
  
  .value-proposition {
    flex-direction: column;
    gap: var(--spacing-md);
  }
  
  .stats-container {
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .hero-section,
  .contact-section {
    padding: var(--spacing-lg);
  }
  
  .brand-logo {
    font-size: 3rem;
  }
  
  .main-headline {
    font-size: 2rem;
  }
  
  .countdown-display {
    flex-wrap: wrap;
    gap: var(--spacing-sm);
  }
  
  .time-block {
    min-width: 60px;
    padding: var(--spacing-md);
  }
  
  .time-number {
    font-size: 1.8rem;
  }
  
  .contact-title {
    font-size: 2rem;
  }
  
  .trust-indicators {
    flex-direction: column;
  }
}

/* Loading States */
.loading {
  opacity: 0.7;
  pointer-events: none;
}

.loading .submit-btn {
  background: var(--text-gray);
}

.loading .submit-btn::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  width: 20px;
  height: 20px;
  margin: -10px 0 0 -10px;
  border: 2px solid transparent;
  border-top: 2px solid var(--white);
  border-radius: 50%;
  animation: spin 1s linear infinite;
}

@keyframes spin {
  0% { transform: rotate(0deg); }
  100% { transform: rotate(360deg); }
}
