/* Mockif Landing Page CSS */

:root {
    --primary: #F26B21;
    --primary-dark: #E05A10;
    --secondary: #6ECFF6;
    --secondary-dark: #45B0E3;
    --dark: #1E2A32;
    --gray: #6B7280;
    --gray-light: #F3F4F6;
    --white: #FFFFFF;
}

/* General Styles */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Inter', sans-serif;
}

body {
    color: var(--dark);
    line-height: 1.6;
    background-color: var(--white);
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 10px;
}

.top-banner {
    background-color: #ff6b00; /* Bright energetic orange */
    color: #ffffff; /* White text */
    text-align: center;
    padding: 6px 12px; /* Reduced from 12px 20px */
    font-size: 15px; /* Slightly smaller font */
    font-weight: bold;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
    position: relative;
    z-index: 1000;
}


/* Header */

header {
    background-color: var(--white);
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100;
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 0;
}

.logo {
    height: 110px;
}

.early-access-tag {
    font-size: 14px;
    font-weight: 600;
    background-color: var(--primary);
    color: var(--white);
    padding: 4px 10px;
    border-radius: 20px;
    margin-left: 8px;
}

/* Buttons */

.btn {
    padding: 12px 24px;
    border-radius: 6px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    display: inline-block;
    text-align: center;
}

.btn-primary {
    background-color: var(--primary);
    color: var(--white);
    border: none;
}

.btn-primary:hover {
    background-color: var(--primary-dark);
}

.btn-large {
    font-size: 18px;
    padding: 16px 32px;
}

/* Hero Section */


.hero {
    min-height: calc(100vh - 150px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 0 20px;
    background: linear-gradient(135deg, #89ceee, #feb47b, #86a8e7, #91eae4);
    background-size: 400% 400%;
    animation: gradientAnimation 15s ease infinite;
    text-align: center;
    position: relative;
}

@keyframes gradientAnimation {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero > * {
    margin-bottom: 16px;
}


.hero h1 {
    font-size: 48px;
    font-weight: 800;
    margin-bottom: 16px;
}

.hero p {
    font-size: 22px;
    color: var(--grey);
    max-width: 700px;
    margin: 0 auto;

    line-height: 1.8;
}

.hero-cta {
    margin-top: 48px;
}

.hero-badge {
    display: inline-block;
    background-color: rgba(242, 107, 33, 0.1);
    color: var(--primary);
    font-weight: 600;
    padding: 8px 16px;
    border-radius: 30px;
    margin-bottom: 24px;
}
.scroll-down-arrow {
    position: absolute;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 32px;
    color: var(--primary);
    animation: bounce 2s infinite;
    cursor: pointer;
}

@keyframes bounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    40% {
        transform: translateX(-50%) translateY(-10px);
    }
    60% {
        transform: translateX(-50%) translateY(-5px);
    }
}

/* Sections */

.features, .signup, .faq, .who-for, .how-it-works {
    padding: 40px 0;
}

.features h2, .signup h2, .faq h2, .how-it-works h2, .who-for h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 48px;
    text-align: center;
}

.features-grid, .how-it-works-grid, .who-for-grid, .steps {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 32px;
}

.feature-card, .how-card, .who-card, .step {
    background-color: var(--gray-light);
    border-radius: 8px;
    padding: 32px;
    text-align: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    position: relative;
}

.feature-card:hover, .how-card:hover, .who-card:hover, .step:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.1);
}

/* AI Section Features List */
.text-center {
    text-align: center;
}

.ai-features-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.ai-feature-item {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: var(--gray-light);
    padding: 20px;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.ai-feature-item:hover {
    background: var(--secondary-light, #e0f5fc);
    transform: translateY(-5px);
}

.ai-icon {
    width: 48px;
    height: 48px;
    flex-shrink: 0;
}

/* Steps Arrows */

.step-number {
    background-color: var(--primary);
    color: var(--white);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    font-weight: 600;
}

.step:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 50%;
    right: -25px;
    width: 20px;
    height: 20px;
    border-top: 3px solid var(--primary);
    border-right: 3px solid var(--primary);
    transform: translateY(-50%) rotate(45deg);
    animation: arrowPulse 1.5s infinite alternate;
}

@keyframes arrowPulse {
    from {
        opacity: 0.5;
        transform: translateY(-50%) rotate(45deg) scale(1);
    }
    to {
        opacity: 1;
        transform: translateY(-50%) rotate(45deg) scale(1.2);
    }
}


/* Form */

.signup-form {
    max-width: 500px;
    margin: 0 auto;
    background-color: var(--gray-light);
    padding: 50px;
    border-radius: 6px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
}

.form-group {
    display: flex;
    flex-direction: column;
    text-align: left;
    margin-bottom: 20px;
}

.form-group input, .form-group select, .form-group textarea {
    padding: 12px 16px;
    border: 1px solid #D1D5DB;
    border-radius: 6px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 100px;
}

.checkbox-group {
    display: flex;
    align-items: flex-start;
    margin-bottom: 20px;
}

.checkbox-group input {
    margin-right: 10px;
    margin-top: 4px;
}

/* Footer */

footer {
    background-color: var(--dark);
    color: var(--white);
    padding: 20px 0;
    text-align: center;
}

.footer-logo {
    height: 60px;
    margin-bottom: 0px;
    filter: drop-shadow(0 0 5px var(--secondary));
}

.domain {
    display: block;
    font-size: 16px;
    margin-top: 8px;
    color: var(--gray-light);
}
.btn-primary:disabled {
    background-color: #cccccc;
    color: #e66317;
    cursor: not-allowed;
    box-shadow: none;
    opacity: 0.7;
}

#founding-member {
    scroll-margin-top: 110px; /* Adjust based on your header height */

  }

  @keyframes glow {
    0% {
      box-shadow: 0 0 8px rgba(242, 107, 33, 0.5);
    }
    50% {
      box-shadow: 0 0 20px rgba(242, 107, 33, 0.8);
    }
    100% {
      box-shadow: 0 0 8px rgba(242, 107, 33, 0.5);
    }
  }
  
  .founding-member a.btn-primary {
    border: 2px solid rgba(242, 107, 33, 0.6);
    animation: glow 2.5s ease-in-out infinite;
    transition: all 0.3s ease;
    transform: translateY(0);
  }
  
  /* Hover Effect - Lift up slightly */
  .founding-member a.btn-primary:hover {
    background-color: #e05a10; /* Slightly darker orange */
    transform: translateY(-4px);
  }
  /* Default disabled style */
  #submit-button {
    background-color: var(--primary); /* Orange when enabled */
    color: #ffffff;
    border: none; /* Remove any border */
    outline: none; /* Remove black outline */
    cursor: pointer;
    opacity: 1;
    transition: all 0.3s ease;
  }
  
  #submit-button:disabled {
    background-color: #cccccc;
    cursor: not-allowed;
    opacity: 0.6;
  }
  
  #submit-button:focus {
    outline: none;
    box-shadow: 0 0 0 3px rgba(242, 107, 33, 0.4); /* Optional soft focus */
  }
  
  
  /* Responsive */

@media (max-width: 992px) {
    .ai-container {
        flex-direction: column;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 36px;
    }
    .hero p {
        font-size: 18px;
    }
    .step:not(:last-child)::after {
        display: none;
    }
}
