/* Base Styles */
:root {
    --primary: #7C3AED;
    --primary-light: #9F67FF;
    --primary-dark: #5B21B6;
    --background: #0F172A;
    --background-light: #1E293B;
    --text: #F8FAFC;
    --text-secondary: #94A3B8;
    --border: #334155;
    --success: #10B981;
    --error: #EF4444;
    --gradient-start: #7C3AED;
    --gradient-end: #3B82F6;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background-color: var(--background);
    color: var(--text);
    line-height: 1.6;
    overflow-x: hidden;
    text-align: justify;
}

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

a {
    color: var(--text);
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--primary-light);
}

.highlight {
    color: var(--primary-light);
    position: relative;
}

/* Button Styles */
.btn {
    display: inline-block;
    padding: 0.8rem 1.8rem;
    border-radius: 8px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    border: none;
    font-size: 1rem;
}

.btn.primary {
    background: linear-gradient(135deg, var(--gradient-start), var(--gradient-end));
    color: white;
    box-shadow: 0 4px 14px rgba(124, 58, 237, 0.4);
}

.btn.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(124, 58, 237, 0.5);
}

.btn.secondary {
    background-color: transparent;
    border: 1px solid var(--primary);
    color: var(--primary-light);
}

.btn.secondary:hover {
    background-color: rgba(124, 58, 237, 0.1);
}

/* Header Styles */
header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    z-index: 100;
    background-color: rgba(15, 23, 42, 0.9);
    backdrop-filter: blur(10px);
}

.logo {
    display: flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.5rem;
    color: var(--text);
}

.logo svg {
    margin-right: 0.5rem;
}

nav ul {
    display: flex;
    list-style: none;
}

nav ul li {
    margin-left: 2rem;
}

nav ul li a {
    font-weight: 500;
    position: relative;
}

nav ul li a::after {
    content: '';
    position: absolute;
    width: 0;
    height: 2px;
    bottom: -4px;
    left: 0;
    background-color: var(--primary);
    transition: width 0.3s ease;
}

nav ul li a:hover::after {
    width: 100%;
}

/* Hero Section */
.hero {
    min-height: calc(100vh - 80px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at center, rgba(124, 58, 237, 0.1) 0%, transparent 70%);
    z-index: -1;
}

.hero h1 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    max-width: 800px;
}

.hero .subtitle {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin-bottom: 2.5rem;
    text-align: justify;
    hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    margin-top: 1rem;
}

/* About Section */
.about {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.section-content {
    max-width: 1000px;
    margin: 0 auto;
}

.about h2, .vision h2, .contact h2 {
    font-size: 2.5rem;
    margin-bottom: 3rem;
    text-align: center;
}

.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.feature {
    background-color: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2rem;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

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

.feature-icon {
    background-color: rgba(124, 58, 237, 0.1);
    width: 50px;
    height: 50px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.feature h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.feature p {
    color: var(--text-secondary);
    text-align: justify;
    hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

/* Vision Section */
.vision {
    padding: 6rem 0;
    background-color: var(--background);
}

.vision-text {
    text-align: justify;
    max-width: 800px;
    margin: 0 auto 4rem;
    font-size: 1.2rem;
    color: var(--text-secondary);
    hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

.vision-points {
    display: flex;
    flex-direction: column;
    gap: 2.5rem;
    margin-top: 3rem;
}

.vision-point {
    display: flex;
    gap: 2rem;
    align-items: flex-start;
}

.point-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--primary);
    opacity: 0.7;
    line-height: 1;
}

.point-content h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.point-content p {
    color: var(--text-secondary);
    text-align: justify;
    hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

/* Contact Section */
.contact {
    padding: 6rem 0;
    background-color: var(--background-light);
}

.contact-intro {
    text-align: justify;
    max-width: 700px;
    margin: 0 auto 3rem;
    color: var(--text-secondary);
    hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

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

.form-group {
    position: relative;
}

.form-group.full-width {
    grid-column: span 2;
}

.contact-form input,
.contact-form textarea {
    width: 100%;
    padding: 1rem;
    background-color: rgba(15, 23, 42, 0.8);
    border: 1px solid var(--border);
    border-radius: 8px;
    color: var(--text);
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.contact-form textarea {
    min-height: 150px;
    resize: vertical;
}

.contact-form input:focus,
.contact-form textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 2px rgba(124, 58, 237, 0.2);
}

.contact-form input::placeholder,
.contact-form textarea::placeholder {
    color: var(--text-secondary);
    opacity: 0.7;
}

.contact-form button {
    grid-column: span 2;
    justify-self: center;
    margin-top: 1rem;
    min-width: 200px;
}

/* Beta Info Section */
.beta-info {
    background-color: rgba(30, 41, 59, 0.8);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 3rem;
    text-align: justify;
    max-width: 600px;
    margin: 2rem auto;
    transition: transform 0.3s ease, box-shadow 0.3s ease, opacity 0.5s ease;
    opacity: 0;
    transform: translateY(20px);
    hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

.beta-info.visible {
    opacity: 1;
    transform: translateY(0);
}

.beta-info:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

.beta-icon {
    background-color: rgba(124, 58, 237, 0.1);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
}

.beta-info h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
    color: var(--text);
}

.beta-info p {
    color: var(--text-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    max-width: 500px;
    margin: 0 auto;
    text-align: justify;
    hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

/* Footer */
footer {
    background-color: var(--background);
    padding: 4rem 0 2rem;
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
    gap: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
}

.footer-logo svg {
    margin-right: 0.5rem;
}

.footer-links {
    display: flex;
    gap: 2rem;
}

.footer-social {
    display: flex;
    gap: 1rem;
}

.footer-social a svg path {
    transition: stroke 0.3s ease;
}

.footer-social a:hover svg path {
    stroke: var(--primary-light);
}

.copyright {
    text-align: justify;
    color: var(--text-secondary);
    font-size: 0.875rem;
    margin-top: 2rem;
    hyphens: auto;
    word-break: normal;
    overflow-wrap: break-word;
}

/* Responsive Styles */
@media (max-width: 768px) {
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .vision-point {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-form {
        grid-template-columns: 1fr;
    }
    
    .form-group.full-width {
        grid-column: span 1;
    }
    
    .contact-form button {
        grid-column: span 1;
    }
    
    .footer-content {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }
}

@media (max-width: 576px) {
    header {
        flex-direction: column;
        gap: 1rem;
    }
    
    nav ul li {
        margin-left: 1rem;
    }
    
    .hero h1 {
        font-size: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        width: 100%;
        max-width: 300px;
    }
    
    .btn {
        width: 100%;
        text-align: center;
    }
}