/* Import Google Fonts */
@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;700;800&family=Inter:wght@300;400;500;600&family=Poppins:wght@400;600;700&display=swap');

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

body {
    font-family: 'Inter', sans-serif;
    background-color: #000000;
    color: #ffffff;
    overflow-x: hidden;
}

/* Utility Classes */
.min-h-screen {
    min-height: 100vh;
}

.bg-black {
    background-color: #000000;
}

.relative {
    position: relative;
}

.absolute {
    position: absolute;
}

.inset-0 {
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
}

.overflow-hidden {
    overflow: hidden;
}

.flex {
    display: flex;
}

.items-center {
    align-items: center;
}

.justify-center {
    justify-content: center;
}

.text-center {
    text-align: center;
}

.px-4 {
    padding-left: 1rem;
    padding-right: 1rem;
}

.py-20 {
    padding-top: 5rem;
    padding-bottom: 5rem;
}

.py-12 {
    padding-top: 3rem;
    padding-bottom: 3rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-6 {
    margin-bottom: 1.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

.mb-16 {
    margin-bottom: 4rem;
}

.mt-4 {
    margin-top: 1rem;
}

.mx-auto {
    margin-left: auto;
    margin-right: auto;
}

.max-w-4xl {
    max-width: 56rem;
}

.max-w-6xl {
    max-width: 72rem;
}

.max-w-md {
    max-width: 28rem;
}

.z-10 {
    z-index: 10;
}

.gap-4 {
    gap: 1rem;
}

.gap-8 {
    gap: 2rem;
}

.grid {
    display: grid;
}

.grid-cols-1 {
    grid-template-columns: repeat(1, minmax(0, 1fr));
}

.p-8 {
    padding: 2rem;
}

.px-6 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

.py-4 {
    padding-top: 1rem;
    padding-bottom: 1rem;
}

.px-8 {
    padding-left: 2rem;
    padding-right: 2rem;
}

.rounded-lg {
    border-radius: 0.5rem;
}

.rounded-xl {
    border-radius: 0.75rem;
}

.border {
    border-width: 1px;
}

.border-t {
    border-top-width: 1px;
}

.leading-tight {
    line-height: 1.25;
}

.leading-relaxed {
    line-height: 1.625;
}

.font-light {
    font-weight: 300;
}

.font-semibold {
    font-weight: 600;
}

.font-bold {
    font-weight: 700;
}

.text-sm {
    font-size: 0.875rem;
}

.text-lg {
    font-size: 1.125rem;
}

.text-xl {
    font-size: 1.25rem;
}

.text-2xl {
    font-size: 1.5rem;
}

.text-3xl {
    font-size: 1.875rem;
}

.text-4xl {
    font-size: 2.25rem;
}

.text-5xl {
    font-size: 3rem;
}

.text-6xl {
    font-size: 3.75rem;
}

.text-7xl {
    font-size: 4.5rem;
}

.h-5 {
    height: 1.25rem;
}

.w-5 {
    width: 1.25rem;
}

.h-12 {
    height: 3rem;
}

.w-12 {
    width: 3rem;
}

.flex-1 {
    flex: 1 1 0%;
}

.flex-col {
    flex-direction: column;
}

.hidden {
    display: none;
}

.transform {
    transform: translate(var(--tw-translate-x), var(--tw-translate-y)) rotate(var(--tw-rotate)) skewX(var(--tw-skew-x)) skewY(var(--tw-skew-y)) scaleX(var(--tw-scale-x)) scaleY(var(--tw-scale-y));
}

.transition-all {
    transition-property: all;
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

.duration-300 {
    transition-duration: 300ms;
}

.duration-500 {
    transition-duration: 500ms;
}

.ease-in-out {
    transition-timing-function: cubic-bezier(0.4, 0, 0.2, 1);
}

/* Font Families */
.font-montserrat {
    font-family: 'Montserrat', sans-serif;
}

.font-inter {
    font-family: 'Inter', sans-serif;
}

.font-poppins {
    font-family: 'Poppins', sans-serif;
}

/* Color Variables */
:root {
    --gold-primary: #D4AF37;
    --gold-shine: #FFD700;
    --gold-accent: #B8860B;
    --gold-reflection: #FFF8DC;
}

/* Text Colors */
.text-white {
    color: #ffffff;
}

.text-black {
    color: #000000;
}

.text-gray-300 {
    color: #d1d5db;
}

.text-gray-400 {
    color: #9ca3af;
}

.text-green-400 {
    color: #4ade80;
}

.text-red-400 {
    color: #f87171;
}

.text-gold-shine {
    color: var(--gold-shine);
}

.text-gold-reflection {
    color: var(--gold-reflection);
}

/* Background Colors */
.bg-gradient-overlay {
    background: linear-gradient(to bottom, rgba(0, 0, 0, 0.8), rgba(0, 0, 0, 0.6));
}

.bg-black\/40 {
    background-color: rgba(0, 0, 0, 0.4);
}

.bg-black\/60 {
    background-color: rgba(0, 0, 0, 0.6);
}

.bg-black\/90 {
    background-color: rgba(0, 0, 0, 0.9);
}

.bg-white\/10 {
    background-color: rgba(255, 255, 255, 0.1);
}

/* Border Colors */
.border-gold-accent\/30 {
    border-color: rgba(184, 134, 11, 0.3);
}

.border-gold-accent\/40 {
    border-color: rgba(184, 134, 11, 0.4);
}

.border-gold-accent\/20 {
    border-color: rgba(184, 134, 11, 0.2);
}

.border-gold-shine\/60 {
    border-color: rgba(255, 215, 0, 0.6);
}

/* Gold Gradient Text */
.gold-gradient-text {
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 30%, #FFF8DC 50%, #FFD700 70%, #B8860B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: goldShimmer 3s ease-in-out infinite;
}

/* Gold Shimmer Animation */
@keyframes goldShimmer {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.growth-pattern-bg {
  background-image:
    /* Brighter, right-slanted upward golden lines */
    repeating-linear-gradient(
      105deg,
      rgba(255, 215, 0, 0.15),
      rgba(255, 215, 0, 0.15) 2px,
      transparent 2px,
      transparent 50px
    ),
    /* Soft top-center glow */
    radial-gradient(circle at 50% 15%, rgba(255, 215, 0, 0.15), transparent 70%),
    /* Base dark gradient */
    linear-gradient(to bottom, #000000, #0a0a0a, #111111);

  background-size: 100% 200%, 100% 100%, 100% 100%;
  background-repeat: repeat, no-repeat, no-repeat;
  background-position: 0% 100%, center, center;
  animation: backgroundRise 25s linear infinite;
  color: white;
}

/* Animate lines to rise upward */
@keyframes backgroundRise {
  0% {
    background-position: 0% 100%, center, center;
  }
  100% {
    background-position: 0% 0%, center, center;
  }
}




.growth-pattern-bg-alt {
background:
    /* Golden beams rising diagonally (growth) */
    repeating-linear-gradient(
      60deg,
      rgba(255, 215, 0, 0.05),
      rgba(255, 215, 0, 0.05) 2px,
      transparent 2px,
      transparent 60px
    ),
    
    /* Radial gold glow behind hero */
    radial-gradient(circle at 50% 30%, rgba(255, 215, 0, 0.12), transparent 60%),
    
    /* Rich black-gold gradient base */
    linear-gradient(to bottom, #000000 0%, #0d0d0d 50%, #1a1a1a 75%, #D4AF37 100%);
  
  background-blend-mode: lighten;
  background-size: cover;
  background-repeat: no-repeat;
  background-attachment: fixed;
  color: white;
}


/* Growth Flow Animations */
@keyframes growthFlow {
    0%, 100% {
        background-position: 
            0% 85%, 20% 90%, 40% 80%, 60% 95%, 80% 85%, 0% 90%, 20% 80%, 40% 95%, 60% 85%,
            15% 65%, 35% 70%, 55% 60%, 75% 75%, 95% 65%,
            25% 45%, 45% 50%, 65% 40%, 85% 45%,
            20% 20%, 50% 25%, 80% 15%,
            0% 0%, 100% 100%,
            0% 0%,
            0% 0%,
            0% 0%;
    }
    25% {
        background-position: 
            25% 60%, 45% 65%, 65% 55%, 85% 70%, 5% 60%, 25% 65%, 45% 55%, 65% 70%, 85% 60%,
            40% 40%, 60% 45%, 80% 35%, 0% 50%, 20% 40%,
            50% 20%, 70% 25%, 90% 15%, 10% 20%,
            45% -5%, 75% 0%, 5% -10%,
            25% 25%, 75% 75%,
            25% 25%,
            25% 25%,
            25% 25%;
    }
    50% {
        background-position: 
            50% 35%, 70% 40%, 90% 30%, 10% 45%, 30% 35%, 50% 40%, 70% 30%, 90% 45%, 10% 35%,
            65% 15%, 85% 20%, 5% 10%, 25% 25%, 45% 15%,
            75% -5%, 95% 0%, 15% -10%, 35% -5%,
            70% -30%, 0% -25%, 30% -35%,
            50% 50%, 50% 50%,
            50% 50%,
            50% 50%,
            50% 50%;
    }
    75% {
        background-position: 
            75% 10%, 95% 15%, 15% 5%, 35% 20%, 55% 10%, 75% 15%, 95% 5%, 15% 20%, 35% 10%,
            90% -10%, 10% -5%, 30% -15%, 50% 0%, 70% -10%,
            100% -30%, 20% -25%, 40% -35%, 60% -30%,
            95% -55%, 25% -50%, 55% -60%,
            75% 75%, 25% 25%,
            75% 75%,
            75% 75%,
            75% 75%;
    }
}

@keyframes growthFlowAlt {
    0%, 100% {
        background-position: 
            15% 80%, 35% 95%, 55% 75%, 75% 90%, 95% 80%, 15% 95%, 35% 75%, 55% 90%, 75% 80%,
            10% 60%, 30% 75%, 50% 55%, 70% 70%, 90% 60%,
            20% 40%, 40% 55%, 60% 35%, 80% 50%,
            25% 15%, 55% 20%, 75% 10%,
            0% 0%, 100% 100%,
            0% 0%,
            0% 0%,
            0% 0%;
    }
    33% {
        background-position: 
            48% 47%, 68% 62%, 88% 42%, 8% 57%, 28% 47%, 48% 62%, 68% 42%, 88% 57%, 8% 47%,
            43% 27%, 63% 42%, 83% 22%, 3% 37%, 23% 27%,
            53% 7%, 73% 22%, 93% 2%, 13% 17%,
            58% -18%, 88% -13%, 8% -23%,
            33% 33%, 67% 67%,
            33% 33%,
            33% 33%,
            33% 33%;
    }
    66% {
        background-position: 
            81% 14%, 1% 29%, 21% 9%, 41% 24%, 61% 14%, 81% 29%, 1% 9%, 21% 24%, 41% 14%,
            76% -6%, 96% 9%, 16% -11%, 36% 4%, 56% -6%,
            86% -26%, 6% -11%, 26% -31%, 46% -16%,
            91% -51%, 21% -46%, 41% -56%,
            66% 66%, 34% 34%,
            66% 66%,
            66% 66%,
            66% 66%;
    }
}

/* Logo Styles */
.logo {
    height: 8rem;
    width: auto;
    mix-blend-mode: screen;
    filter: brightness(0) invert(1);
}

/* Project Title */
.project-title {
    font-size: 2.25rem;
    line-height: 1.25;
}

/* Tagline */
.tagline {
    font-size: 1.25rem;
    line-height: 1.625;
}

/* Countdown Styles */
.countdown-section {
    margin-bottom: 3rem;
}

.countdown-intro {
    font-size: 1.125rem;
    color: #9ca3af;
    margin-bottom: 1rem;
}

.countdown-container {
    display: flex;
    justify-content: center;
    gap: 1rem;
}

.countdown-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.countdown-number {
    font-size: 1.875rem;
    font-weight: 700;
    background: linear-gradient(135deg, #D4AF37 0%, #FFD700 50%, #FFF8DC 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-shadow: 0 0 20px rgba(255, 215, 0, 0.3);
}

.countdown-label {
    font-size: 0.875rem;
    color: #9ca3af;
    font-family: 'Inter', sans-serif;
    margin-top: 0.5rem;
}

/* Email Form Styles */
.email-form {
    max-width: 28rem;
    margin: 0 auto;
}

.form-container {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    background-color: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(184, 134, 11, 0.3);
    border-radius: 0.5rem;
    backdrop-filter: blur(4px);
    color: #ffffff;
    font-size: 1rem;
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #9ca3af;
}

.email-input:focus {
    outline: none;
    border-color: var(--gold-shine);
    box-shadow: 0 0 0 3px rgba(255, 215, 0, 0.1);
}

.submit-btn {
    padding: 1rem 2rem;
    background: linear-gradient(to right, var(--gold-primary), var(--gold-shine));
    color: #000000;
    font-family: 'Inter', sans-serif;
    font-weight: 600;
    border: none;
    border-radius: 0.5rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    min-width: 140px;
    transition: all 0.3s ease;
}

.submit-btn:hover {
    background: linear-gradient(to right, var(--gold-shine), var(--gold-reflection));
    box-shadow: 0 0 30px rgba(255, 215, 0, 0.6);
    transform: translateY(-2px);
}

.submit-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
    transform: none;
}

.submit-message {
    text-align: center;
    margin-top: 1rem;
    font-size: 0.875rem;
}

.submit-message.success {
    color: #4ade80;
}

.submit-message.error {
    color: #f87171;
}

/* Section Styles */
.mission-section {
    position: relative;
    padding: 5rem 1rem;
}

.section-title {
    font-size: 1.875rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.section-description {
    font-size: 1.125rem;
    color: #d1d5db;
    max-width: 56rem;
    margin: 0 auto;
    line-height: 1.625;
}

/* Commitment Cards */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 2rem;
}

.commitment-card {
    background-color: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(4px);
    border: 1px solid rgba(184, 134, 11, 0.4);
    border-radius: 0.75rem;
    padding: 2rem;
    transition: all 0.3s ease-in-out;
    position: relative;
    overflow: hidden;
}

.commitment-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 215, 0, 0.1), transparent);
    transition: left 0.5s ease-in-out;
}

.commitment-card:hover::before {
    left: 100%;
}

.commitment-card:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
    border-color: rgba(255, 215, 0, 0.6);
    transform: scale(1.02);
}

.commitment-card .group:hover .text-gold-shine {
    color: var(--gold-reflection);
}

.commitment-card .group:hover .text-gray-300 {
    color: #e5e7eb;
}

.commitment-card .group:hover .gold-gradient-text {
    filter: brightness(1.1);
}

/* Animation Classes */
.animate-spin {
    animation: spin 1s linear infinite;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.hover\:scale-105:hover {
    transform: scale(1.05);
}

.hover\:scale-102:hover {
    transform: scale(1.02);
}

.hover\:shadow-gold-glow:hover {
    box-shadow: 0 0 20px rgba(255, 215, 0, 0.5);
}

.hover\:shadow-gold-glow-lg:hover {
    box-shadow: 0 0 40px rgba(255, 215, 0, 0.3);
}

/* Hero Content Animation */
.hero-content {
    opacity: 0;
    transform: translateY(30px);
    animation: fadeInUp 0.5s ease-out 0.1s forwards;
}

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

/* Responsive Design */
@media (min-width: 640px) {
    .form-container {
        flex-direction: row;
    }
    
    .countdown-container {
        gap: 2rem;
    }
}

@media (min-width: 768px) {
    .grid-cols-1 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
    
    .project-title {
        font-size: 3.75rem;
    }
    
    .tagline {
        font-size: 1.5rem;
    }
    
    .section-title {
        font-size: 2.25rem;
    }
    
    .section-description {
        font-size: 1.25rem;
    }
    
    .countdown-number {
        font-size: 2.25rem;
    }
    
    .countdown-label {
        font-size: 1rem;
    }
}

@media (min-width: 1024px) {
    .commitment-grid {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }
    
    .project-title {
        font-size: 4.5rem;
    }
    
    .tagline {
        font-size: 1.875rem;
    }
    
    .section-title {
        font-size: 3rem;
    }
    
    .countdown-number {
        font-size: 3rem;
    }
}

/* Smooth Scrolling */
html {
    scroll-behavior: smooth;
}

/* Custom Scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000000;
}

::-webkit-scrollbar-thumb {
    background: var(--gold-primary);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: var(--gold-shine);
}