/* Reset and base styles */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* Navbar container */
.navbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 20px;
  background-color: #6AB187;
  color: white;
  position: sticky;
  top: 0;
  z-index: 1000;
}

/* Logo */
.navbar .logo {
  font-size: 1.5em;
  font-weight: normal;


}

/* Menu links */
.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  font-weight: normal;
}

.nav-links a {
  color: white;
  padding: 8px 12px;
  border-radius: 4px;
  text-decoration: none
  font-weight: normal;
}

.nav-links a:hover {
  background-color: rgba(255,255,255,0.2);
}

/* Responsive menu for mobile */
.menu-toggle {
  display: none;
  font-size: 1.5em;
  cursor: pointer;
}

/* Mobile responsiveness */
@media (max-width: 768px) {
  .nav-links { display: none; flex-direction: column; gap: 0; width: 100%; background-color: inherit;}
  .nav-links a { padding: 10px 20px;text-decoration: none }
  .nav-links.show { display: flex; }
  .menu-toggle { display: block; }
  .navbar { flex-wrap: wrap; }
}


body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', 'Ubuntu', 'Cantarell', sans-serif;
    line-height: 1.5;
    color: #23282D;
    background-color: #CED2CC;
}

/* Layout containers */
.main-container {
    position: relative;
    min-height: 100vh;
    overflow-x: hidden;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    z-index: 10;
}

.container {
    width: 100%;
    max-width: 64rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Hero Section */
.hero-section {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    min-height: 100vh;
    padding: 3rem 1rem;
    background-image: url('../assets/bg.png');
    background-size: cover;
    background-position: center;
}

.logo {
    width: 100px;
    height: auto;
	position: relative;
    z-index: 20;
}


.hero-overlay {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    background-color: rgba(230, 234, 228, 0.9);
}

.hero-content {
    position: relative;
    z-index: 10;
    max-width: 48rem;
}

.hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #d32d41;
    margin-bottom: 0.5rem;
}


.hero-subtitle {
    font-size: 1.125rem;
    font-weight: 400;
    color: #23282D;
    margin-bottom: 10rem;
}

.hero-subtitle {
    font-size: 2rem;
    font-weight: 300;
    font-style: italic;
    color: #23282D;
    letter-spacing: 0.5px;
    margin-bottom: 1.5rem;
    line-height: 1.4;
    text-align: center;
	margin-bottom: 6rem;
}

.hero-description {
    max-width: 42rem;
    margin: 0 auto 2rem;
    font-size: 1rem;
    color: #23282D;
    text-shadow: 0px 0px 6px rgba(0, 0, 0, 0.1);
}

/* Waitlist Form */
.waitlist-form {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 28rem;
    margin: 0 auto;
    gap: 1rem;
}

.email-input {
    width: 100%;
    padding: 0.75rem 1rem;
    font-size: 1rem;
    color: #000;
    background-color: #E6EAE4;
    border: 1px solid #9CA3AF;
    border-radius: 0.375rem;
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}

.email-input::placeholder {
    color: #6B7280;
}

.email-input:focus {
    outline: none;
    border-color: #6AB187;
    box-shadow: 0 0 0 2px #56B49E;
}

.submit-button {
    width: 100%;
    padding: 0.625rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #fff;
    background-color: #23282D;
    border: none;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.submit-button:hover {
    background-color: #1F2937;
}

/* Features Section */
.features-intro-title {
    font-size: 1.6rem;
    text-align: center;
    color: #23282D;
    margin-bottom: 3rem;
}

.features-section {
    width: 100%;
    padding: 4rem 0;
    background-color: #E6EAE4;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.feature-card {
    position: relative;
    padding: 1.5rem;
    background-color: #fff;
    border: 1px solid transparent;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -2px rgba(0, 0, 0, 0.1);
    overflow: hidden;
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    border-color: #DAD9D6;
}

.card-background {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    opacity: 0.2;
}

.card-background svg {
    width: 100%;
    height: 100%;
}

.card-title {
    position: relative;
    font-size: 1.25rem;
    font-weight: 700;
    color: #6AB187;
    margin-bottom: 0.5rem;
}

.card-description {
    position: relative;
    font-size: 1rem;
    color: #4B5563;
}

/* Platforms Section */
.platforms-section {
    width: 100%;
    padding: 4rem 0;
}

.platforms-title {
    font-size: 1.6rem;
    font-weight: 700;
    text-align: center;
    color: #23282D;
    margin-bottom: 3rem;
}

.platforms-grid {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 3rem;
    margin-bottom: 4rem;
    flex-wrap: wrap;
}

.platform-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    transition: transform 0.3s ease;
}

.platform-item:hover {
    transform: scale(1.05);
}

.platform-icon {
    width: 5rem;
    height: 5rem;
    background: linear-gradient(to bottom right, #F1F5F9, #E2E8F0);
    border-radius: 1rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -4px rgba(0, 0, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.platform-item:hover .platform-icon {
    transform: scale(1.1);
    box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.platform-icon i {
    font-size: 2.5rem;
    transition: color 0.3s ease;
}

.platform-item:nth-child(1) .platform-icon i {
    color: #2563EB;
}

.platform-item:nth-child(1):hover .platform-icon i {
    color: #1D4ED8;
}

.platform-item:nth-child(2) .platform-icon i {
    color: #1E293B;
}

.platform-item:nth-child(2):hover .platform-icon i {
    color: #0F172A;
}

.platform-item:nth-child(3) .platform-icon i {
    color: #EA580C;
}

.platform-item:nth-child(3):hover .platform-icon i {
    color: #C2410C;
}

.platform-name {
    font-weight: 500;
    color: #334155;
}

/* Demo Section */
.demo-section {
    text-align: center;
}

.demo-button {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.75rem 1.5rem;
    font-size: 0.875rem;
    font-weight: 500;
    color: #374151;
    text-decoration: none;
    border: 1px solid #E5E7EB;
    border-radius: 0.375rem;
    transition: all 0.3s ease;
}

.demo-button:hover {
    background-color: #F9FAFB;
    border-color: #D1D5DB;
}

.demo-button i {
    color: #DC2626;
}

/* Footer */

.contact-section {
    background-color: #CED2CC;
    padding: 2rem 1rem;
    text-align: center;
}

.contact-title {
    font-size: 1.6rem;
    margin-bottom: 1rem;
    color: #23282D;
}

.contact-options p {
    margin: 0.5rem 0;
    font-size: 1.0rem;
    color: #23282D;
}

.contact-options i {
    margin-right: 8px;
    font-size: 1.0rem;
}


.footer {
    width: 100%;
    padding: 1.5rem 0;
    border-top: 1px solid #E3E3E3;
}


.footer-text {
    font-size: 0.875rem;
    text-align: center;
    color: #1F2937;
}

/* Responsive Design */
@media (min-width: 640px) {
    .hero-title {
        font-size: 3.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.85rem;
    }
    
    .hero-description {
        font-size: 1.125rem;
    }
    
    .hero-section {
        padding: 5rem 1rem 3rem;
    }
    
    .waitlist-form {
        flex-direction: row;
        gap: 1rem;
    }
    
    .email-input {
        font-size: 1.125rem;
    }
    
    .submit-button {
        width: auto;
    }
    
    .features-section {
        padding: 5rem 0;
    }
    
    .platforms-title {
        font-size: 1.6rem;
    }
    
    .footer {
        padding: 2rem 0;
    }
}

@media (min-width: 768px) {
    .hero-title {
        font-size: 4.5rem;
    }
    
    .hero-subtitle {
        font-size: 1.125rem;
    }
    
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
