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

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: #111827;
    background: linear-gradient(135deg, #f0f9ff 0%, #e0f2fe 50%, #f0f9ff 100%);
    min-height: 100vh;
}

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

/* Hero Section */
.hero-section {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(113, 153, 206, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(238, 129, 52, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}

.logo-icon {
    width: 64px;
    height: 64px;
    color: #7199CE;
    animation: float 3s ease-in-out infinite;
}

.logo-text {
    font-size: 3rem;
    font-weight: 700;
    color: #111827;
    margin: 0;
}

.coming-soon-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: #F3DE82;
    color: #111827;
    padding: 0.5rem 1rem;
    border-radius: 2rem;
    font-weight: 600;
    font-size: 0.875rem;
    margin-bottom: 2rem;
    animation: pulse 2s infinite;
}

.badge-icon {
    width: 20px;
    height: 20px;
}

.hero-title {
    font-size: 3.5rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: #111827;
}

.hero-title-accent {
    color: #7199CE;
    display: block;
}

.hero-description {
    font-size: 1.25rem;
    color: #4B5563;
    margin-bottom: 3rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.launch-date {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    background: white;
    padding: 1.5rem 2rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
    margin-bottom: 3rem;
    max-width: 400px;
    margin-left: auto;
    margin-right: auto;
}

.launch-date-icon {
    width: 48px;
    height: 48px;
    background: #7199CE;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    flex-shrink: 0;
}

.launch-date-content {
    text-align: left;
}

.launch-date-label {
    font-size: 0.875rem;
    color: #6B7280;
    font-weight: 500;
    margin-bottom: 0.25rem;
}

.launch-date-value {
    font-size: 1.25rem;
    font-weight: 700;
    color: #111827;
}

.email-signup-card {
    background: white;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    margin-bottom: 3rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.signup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.signup-description {
    color: #4B5563;
    font-size: 0.875rem;
}

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

.email-signup-form .form-group {
    margin-bottom: 0;
}

.signup-footer {
    text-align: center;
    margin-top: 1.5rem;
}

.signup-footer-text {
    color: #4B5563;
    font-size: 0.875rem;
}

.signup-count {
    font-weight: 700;
    color: #7199CE;
}

.features-preview {
    margin-top: 4rem;
}

.features-title {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    text-align: center;
    margin-bottom: 2rem;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.5rem;
    max-width: 600px;
    margin: 0 auto;
}

.feature-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    background: white;
    padding: 1.5rem;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.feature-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1);
}

.feature-icon {
    width: 48px;
    height: 48px;
    background: #F3DE82;
    border-radius: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #7199CE;
    flex-shrink: 0;
}

.feature-content h4 {
    font-size: 1.125rem;
    font-weight: 600;
    color: #111827;
    margin-bottom: 0.5rem;
}

.feature-content p {
    color: #4B5563;
    font-size: 0.875rem;
    line-height: 1.5;
}

/* Animations */
@keyframes float {
    0%, 100% {
        transform: translateY(0px);
    }
    50% {
        transform: translateY(-10px);
    }
}

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

/* Header Styles */
.header {
    border-bottom: 1px solid #e5e7eb;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(12px);
    position: sticky;
    top: 0;
    z-index: 50;
}

.header-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    color: #111827;
}

.logo-icon {
    width: 32px;
    height: 32px;
    color: #7199CE;
}

.logo-text {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
}

.nav {
    display: none;
    gap: 2rem;
}

.nav-link {
    color: #4B5563;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease;
}

.nav-link:hover {
    color: #7199CE;
}

/* Back Button */
.back-section {
    padding: 1.5rem 0;
}

.back-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    border: 1px solid #e5e7eb;
    border-radius: 0.5rem;
    background: white;
    color: #4B5563;
    text-decoration: none;
    font-weight: 500;
    transition: all 0.2s ease;
}

.back-button:hover {
    background: #f9fafb;
    border-color: #7199CE;
    color: #7199CE;
}

.back-icon {
    width: 16px;
    height: 16px;
}

/* Signup Section */
.signup-section {
    padding: 5rem 0;
    background: linear-gradient(to bottom, #f9fafb, #f3f4f6);
    min-height: calc(100vh - 200px);
    display: flex;
    align-items: center;
}

.signup-card {
    max-width: 28rem;
    margin: 0 auto;
    background: white;
    border-radius: 1rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    padding: 2rem;
}

.signup-header {
    text-align: center;
    margin-bottom: 2rem;
}

.signup-icon {
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: #7199CE;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.rabbit-icon {
    width: 2rem;
    height: 2rem;
    color: white;
}

.signup-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.signup-description {
    color: #4B5563;
    font-size: 0.875rem;
}

/* Form Styles */
.signup-form {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.form-label {
    font-weight: 500;
    color: #111827;
    font-size: 0.875rem;
}

.form-input {
    padding: 0.75rem;
    border: 1px solid #d1d5db;
    border-radius: 0.5rem;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    background: white;
}

.form-input:focus {
    outline: none;
    border-color: #7199CE;
    box-shadow: 0 0 0 3px rgba(113, 153, 206, 0.1);
}

.form-input.error {
    border-color: #ef4444;
}

.password-input-container {
    position: relative;
}

.password-toggle {
    position: absolute;
    right: 0.75rem;
    top: 50%;
    transform: translateY(-50%);
    background: none;
    border: none;
    cursor: pointer;
    color: #6b7280;
    padding: 0.25rem;
    border-radius: 0.25rem;
    transition: color 0.2s ease;
}

.password-toggle:hover {
    color: #7199CE;
}

.eye-icon {
    width: 20px;
    height: 20px;
}

.error-message {
    color: #ef4444;
    font-size: 0.75rem;
    margin-top: 0.25rem;
    display: none;
}

.error-message.show {
    display: block;
}

/* Password Requirements */
.password-requirements {
    margin-top: 0.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.requirement {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.75rem;
    color: #6b7280;
}

.requirement.valid {
    color: #10b981;
}

.requirement-icon {
    width: 16px;
    height: 16px;
    opacity: 0.5;
}

.requirement.valid .requirement-icon {
    opacity: 1;
}

/* Checkbox Styles */
.checkbox-container {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    cursor: pointer;
    font-size: 0.875rem;
    line-height: 1.5;
}

.checkbox-container input[type="checkbox"] {
    display: none;
}

.checkmark {
    width: 1.25rem;
    height: 1.25rem;
    border: 2px solid #d1d5db;
    border-radius: 0.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.2s ease;
    flex-shrink: 0;
    margin-top: 0.125rem;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark {
    background: #7199CE;
    border-color: #7199CE;
}

.checkbox-container input[type="checkbox"]:checked + .checkmark::after {
    content: '';
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

.checkbox-text {
    color: #4B5563;
}

.link {
    color: #7199CE;
    text-decoration: none;
    font-weight: 500;
}

.link:hover {
    color: #5A7FB8;
    text-decoration: underline;
}

/* Button Styles */
.signup-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    background: #7199CE;
    color: white;
    border: none;
    border-radius: 0.5rem;
    font-weight: 600;
    font-size: 0.875rem;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 100%;
}

.signup-button:hover {
    background: #5A7FB8;
    transform: translateY(-1px);
}

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

.signup-button:disabled {
    background: #9ca3af;
    cursor: not-allowed;
    transform: none;
}

.button-icon {
    width: 20px;
    height: 20px;
}

/* Divider */
.signup-divider {
    position: relative;
    text-align: center;
    margin: 1.5rem 0;
}

.signup-divider::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 0;
    right: 0;
    height: 1px;
    background: #e5e7eb;
}

.signup-divider span {
    background: white;
    padding: 0 1rem;
    color: #6b7280;
    font-size: 0.875rem;
}

/* Signup Footer */
.signup-footer {
    text-align: center;
}

.signup-footer-text {
    color: #4B5563;
    font-size: 0.875rem;
}

.signup-link {
    color: #7199CE;
    text-decoration: none;
    font-weight: 500;
}

.signup-link:hover {
    color: #5A7FB8;
    text-decoration: underline;
}

/* Social Media Section */
.social-section {
    background: white;
    padding: 3rem 0;
    border-top: 1px solid #e5e7eb;
}

.social-content {
    text-align: center;
    max-width: 600px;
    margin: 0 auto;
}

.social-title {
    font-size: 1.5rem;
    font-weight: 700;
    color: #111827;
    margin-bottom: 0.5rem;
}

.social-description {
    color: #4B5563;
    font-size: 0.875rem;
    margin-bottom: 2rem;
}

.social-links {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    border-radius: 0.5rem;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.875rem;
    transition: all 0.2s ease;
    min-width: 160px;
    justify-content: center;
}

.social-link.facebook {
    background: #1877f2;
    color: white;
}

.social-link.facebook:hover {
    background: #166fe5;
    transform: translateY(-1px);
}

.social-link.instagram {
    background: linear-gradient(45deg, #f09433 0%, #e6683c 25%, #dc2743 50%, #cc2366 75%, #bc1888 100%);
    color: white;
}

.social-link.instagram:hover {
    transform: translateY(-1px);
    filter: brightness(1.1);
}

.social-icon {
    width: 24px;
    height: 24px;
    flex-shrink: 0;
}

/* Responsive Design */
@media (min-width: 768px) {
    .nav {
        display: flex;
    }
    
    .signup-card {
        padding: 2.5rem;
    }
    
    .social-links {
        gap: 1.5rem;
    }
    
    .social-link {
        min-width: 180px;
    }
}

@media (min-width: 1024px) {
    .container {
        padding: 0 2rem;
    }
    
    .signup-section {
        padding: 6rem 0;
    }
}

/* Loading States */
.loading {
    opacity: 0.6;
    pointer-events: none;
}

/* Success States */
.success {
    border-color: #10b981 !important;
    background-color: #f0fdf4;
}

/* Animation */
@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.signup-card {
    animation: fadeIn 0.5s ease-out;
}

/* Focus States */
.form-input:focus,
.signup-button:focus,
.back-button:focus {
    outline: 2px solid #7199CE;
    outline-offset: 2px;
}

/* High Contrast Mode Support */
@media (prefers-contrast: high) {
    .form-input {
        border-width: 2px;
    }
    
    .signup-button {
        border: 2px solid #7199CE;
    }
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    * {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}
