/* ===================================
   Akuno Landing Page Styles
   =================================== */

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

:root {
  /* Akuno Brand Colors */
  --akuno-dark-1: #0E2E24;    /* Darkest green */
  --akuno-dark-2: #0D3829;    /* Dark green */
  --akuno-yellow: #F5C644;    /* Buttons & accents */
  --akuno-green: #368864;     /* Primary green */
  
  /* UI Colors */
  --text-light: #e8f0ed;
  --text-muted: #9ba8a3;
  --border-subtle: rgba(56, 136, 100, 0.15);
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
  background: var(--akuno-dark-1);
  color: var(--text-light);
  line-height: 1.6;
  overflow-x: hidden;
}

.container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}

/* ===================================
   Animated Background
   =================================== */
.animated-bg {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -1;
  overflow: hidden;
  background: linear-gradient(135deg, var(--akuno-dark-1) 0%, var(--akuno-dark-2) 50%, var(--akuno-dark-1) 100%);
background: linear-gradient(135deg, #0A1D17 0%, #0B2C21 50%, #081C16 100%)
}

.gradient-orb {
  position: absolute;
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.15;
  animation: float 25s ease-in-out infinite;
}

.orb-1 {
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, var(--akuno-green) 0%, transparent 70%);
  top: -15%;
  left: -15%;
  animation-delay: 0s;
}

.orb-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, var(--akuno-yellow) 0%, transparent 70%);
  bottom: -15%;
  right: -15%;
  animation-delay: 8s;
}

.orb-3 {
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, var(--akuno-green) 0%, transparent 70%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation-delay: 16s;
}

@keyframes float {
  0%, 100% { transform: translate(0, 0) scale(1); }
  33% { transform: translate(40px, -40px) scale(1.1); }
  66% { transform: translate(-30px, 30px) scale(0.9); }
}

#particles {
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
}

/* ===================================
   Header
   =================================== */
.header {
  position: relative;
  padding: 24px 0;
  backdrop-filter: blur(10px);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 100;
}

.header .container {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.logo {
  display: flex;
  align-items: center;
  gap: 12px;
}

.logo-icon {
  height: 40px;
  width: auto;
}

.logo-text {
  height: 32px;
  width: auto;
}

.social-links {
  display: flex;
  gap: 12px;
}

.social-links a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(56, 136, 100, 0.1);
  color: var(--text-muted);
  transition: all 0.3s ease;
  border: 1px solid var(--border-subtle);
}

.social-links a:hover {
  background: rgba(245, 198, 68, 0.15);
  color: var(--akuno-yellow);
  border-color: var(--akuno-yellow);
  transform: translateY(-2px);
}

/* ===================================
   Main Content
   =================================== */
.main {
  position: relative;
  padding: 30px 0 100px;
}

/* Beta Badge */
.beta-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 10px 20px;
  background: rgba(56, 136, 100, 0.15);
  border: 1px solid rgba(56, 136, 100, 0.3);
  border-radius: 25px;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--akuno-green);
color: #9dd9bf;
  margin-bottom: 4px;
  animation: fadeInUp 0.6s ease;
}

.beta-dot {
  width: 8px;
  height: 8px;
  background: var(--akuno-green);
  border-radius: 50%;
  animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: 0.6; transform: scale(1.3); }
}

/* Hero Section */
.hero-section {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
  margin-bottom: 120px;
  min-height: 500px;
}

.hero-content {
  animation: fadeInUp 0.8s ease 0.2s backwards;
}

.hero-title {
  font-size: clamp(2.5rem, 6vw, 4.5rem);
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 24px;
  color: var(--text-light);
  letter-spacing: -0.02em;
}

.hero-subtitle {
  font-size: clamp(1.5rem, 3vw, 1.8rem);
  color: var(--akuno-yellow);
	color: #74AD95;
  font-weight: 600;
  line-height: 1.3;
}

/* Waitlist Card */
.waitlist-card {
  padding: 48px 40px;
  background: rgba(13, 56, 41, 0.5);
  backdrop-filter: blur(20px);
  border-radius: 24px;
  border: 1px solid var(--border-subtle);
  box-shadow: 0 20px 60px rgba(0, 0, 0, 0.4);
  animation: fadeInUp 1s ease 0.4s backwards;
}

.waitlist-title {
  font-size: 2rem;
  font-weight: 700;
  margin-bottom: 8px;
  color: var(--text-light);
}

.waitlist-desc {
  color: var(--text-muted);
  margin-bottom: 32px;
  font-size: 1.05rem;
}

.waitlist-form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.input-group {
  position: relative;
}

.input-icon {
  position: absolute;
  left: 18px;
  top: 50%;
  transform: translateY(-50%);
  color: var(--text-muted);
  pointer-events: none;
}

.input-field {
  width: 100%;
  padding: 18px 18px 18px 52px;
  background: rgba(14, 46, 36, 0.6);
  border: 1px solid var(--border-subtle);
  border-radius: 12px;
  color: var(--text-light);
  font-size: 1rem;
  transition: all 0.3s ease;
}

.input-field:focus {
  outline: none;
  background: rgba(14, 46, 36, 0.8);
  border-color: var(--akuno-green);
  box-shadow: 0 0 0 3px rgba(56, 136, 100, 0.15);
}

.input-field::placeholder {
  color: var(--text-muted);
}

/* Buttons */
.btn-primary, .btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 16px 32px;
  font-size: 1rem;
  font-weight: 600;
  border-radius: 12px;
  border: none;
  cursor: pointer;
  transition: all 0.3s ease;
  text-decoration: none;
}

.btn-primary {
  background: var(--akuno-yellow);
  color: var(--akuno-dark-1);
  box-shadow: 0 4px 20px rgba(245, 198, 68, 0.25);
}

.btn-primary:hover {
  background: #ffd15a;
  transform: translateY(-2px);
  box-shadow: 0 8px 30px rgba(245, 198, 68, 0.35);
}

.btn-primary:active {
  transform: translateY(0);
}

.btn-secondary {
  background: rgba(56, 136, 100, 0.15);
  color: var(--text-light);
  border: 1px solid var(--border-subtle);
}

.btn-secondary:hover {
  background: rgba(56, 136, 100, 0.25);
  border-color: var(--akuno-green);
  transform: translateY(-2px);
}

.btn-large {
  padding: 20px 40px;
  font-size: 1.1rem;
}

.btn-arrow {
  transition: transform 0.3s ease;
}

.btn-primary:hover .btn-arrow {
  transform: translateX(4px);
}

/* Success Message */
.success-message {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 18px;
  background: rgba(56, 136, 100, 0.15);
  border: 1px solid var(--akuno-green);
  border-radius: 12px;
  color: var(--akuno-green);
  animation: slideIn 0.5s ease;
}

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

/* Timeline */
.timeline-section {
  margin: 120px 0;
  animation: fadeInUp 1.2s ease 0.6s backwards;
}

.section-title {
  font-size: clamp(2.5rem, 5vw, 3.5rem);
  font-weight: 700;
  text-align: center;
  margin-bottom: 80px;
  color: var(--text-light);
}

.timeline {
  max-width: 800px;
  margin: 0 auto;
  position: relative;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 24px;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border-subtle);
}

.timeline-item {
  position: relative;
  padding-left: 70px;
  margin-bottom: 50px;
  opacity: 0.4;
  transition: opacity 0.3s ease;
}

.timeline-item.active {
  opacity: 1;
}

.timeline-marker {
  position: absolute;
  left: 14px;
  top: 0;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: rgba(56, 136, 100, 0.2);
  border: 4px solid var(--akuno-dark-1);
  transition: all 0.3s ease;
}

.timeline-item.active .timeline-marker {
  background: var(--akuno-yellow);
  box-shadow: 0 0 25px rgba(245, 198, 68, 0.6);
}

.timeline-content h3 {
  font-size: 1.75rem;
  margin-bottom: 6px;
  color: var(--text-light);
  font-weight: 600;
}

.timeline-date {
  color: var(--akuno-yellow);
  font-size: 0.95rem;
  font-weight: 600;
  margin-bottom: 10px;
}

.timeline-content p {
  color: var(--text-muted);
  font-size: 1.05rem;
  line-height: 1.6;
}

/* CTA Section */
.cta-section {
  text-align: center;
  padding: 100px 0;
  animation: fadeInUp 1.4s ease 0.8s backwards;
}

.cta-title {
  font-size: clamp(2rem, 5vw, 3rem);
  font-weight: 700;
  margin-bottom: 20px;
  color: var(--text-light);
}

.cta-subtitle {
  color: var(--text-muted);
  font-size: 1.2rem;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.cta-buttons {
  display: flex;
  gap: 20px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Footer */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0;
  margin-top: 80px;
}

.footer-content {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-content p {
  color: var(--text-muted);
  font-size: 0.95rem;
}

.footer-links {
  display: flex;
  gap: 28px;
}

.footer-links a {
  color: var(--text-muted);
  text-decoration: none;
  font-size: 0.95rem;
  transition: color 0.3s ease;
}

.footer-links a:hover {
  color: var(--akuno-yellow);
}

/* Animations */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(40px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* Mobile Responsive */
@media (max-width: 1024px) {
  .hero-section {
    grid-template-columns: 1fr;
    gap: 60px;
    text-align: center;
  }

  .waitlist-card {
    max-width: 500px;
    margin: 0 auto;
  }

/* Center beta badge on mobile */
.beta-badge {
  display: flex;
  margin-left: auto;
  margin-right: auto;
margin-bottom:20px;
text-align: center;
}
}

@media (max-width: 768px) {
  .header .container {
    flex-direction: column;
    gap: 24px;
  }

  .social-links {
    order: 2;
  }

  .waitlist-card {
    padding: 36px 24px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: stretch;
    max-width: 400px;
    margin: 0 auto;
  }

  .footer-content {
    flex-direction: column;
    text-align: center;
  }

  .timeline::before {
    left: 10px;
  }

  .timeline-item {
    padding-left: 50px;
  }

  .timeline-marker {
    left: 0;
  }
}

@media (max-width: 480px) {
  .hero-title {
    font-size: 2.25rem;
  }

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

  .section-title {
    font-size: 2rem;
  }
}
