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

body {
    font-family: neulis-neue, sans-serif;
    font-weight: 400;
    line-height: 1.6;
    color: #1F2937;
    background-color: #ffffff;
}

h1, h2, h3, h4, h5, h6 {
    font-family: neulis-neue, sans-serif;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
}

.display-font {
    font-family: neulis-neue, sans-serif;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.heading-font {
    font-family: neulis-neue, sans-serif;
    font-weight: 600;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

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

@media (min-width: 640px) {
    .container {
        padding: 0 1.5rem;
    }
}

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

/* Buttons */
.btn {
    font-family: neulis-neue, sans-serif;
    font-weight: 600;
    font-size: 1.125rem;
    padding: 0.75rem 2rem;
    border-radius: 9999px;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
}

.btn-primary {
    background-color: #ffffff;
    color: #6D3F99;
}

.btn-primary:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
    box-shadow: 0 10px 25px rgba(109, 63, 153, 0.3);
}

.btn-secondary {
    background-color: transparent;
    color: #ffffff;
    border: 2px solid #ffffff;
}

.btn-secondary:hover {
    background-color: rgba(255, 255, 255, 0.2);
}

.btn-subscribe {
    background-color: #F59E0B;
    color: #6D3F99;
}

.btn-subscribe:hover {
    background-color: #FBBF24;
    transform: scale(1.05);
}

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

.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
}

.hero-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.gradient-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(109, 63, 153, 0.7) 0%, rgba(37, 99, 235, 0.7) 100%);
}

.hero-logo {
    position: absolute;
    top: 2rem;
    left: 2rem;
    z-index: 20;
}

.hero-logo img {
    height: 5rem;
    width: auto;
}

.hero-content {
    position: relative;
    z-index: 10;
}

.hero-text {
    max-width: 42rem;
}

.hero-text h1 {
    font-size: 3rem;
    color: #ffffff;
    margin-bottom: 1.5rem;
}

.hero-text p {
    font-size: 1.25rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

@media (min-width: 768px) {
    .hero-text h1 {
        font-size: 3.75rem;
    }
}

/* Problem Section */
.problem-section {
    padding: 5rem 0;
    background-color: #f9fafb;
}

.two-column {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
    align-items: center;
}

@media (min-width: 768px) {
    .two-column {
        grid-template-columns: 1fr 1fr;
    }
}

.problem-section h2 {
    font-size: 2.25rem;
    color: #1F2937;
    margin-bottom: 1.5rem;
}

.problem-section p {
    font-size: 1.125rem;
    color: #4B5563;
    margin-bottom: 1rem;
}

.rounded-img {
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

/* Solution Section */
.solution-section {
    padding: 5rem 0;
    background-color: #ffffff;
    border-top: 4px solid #E9D5FF;
}

.section-header {
    text-align: center;
    margin-bottom: 4rem;
}

.section-header h2 {
    font-size: 2.25rem;
    color: #1F2937;
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.25rem;
    color: #4B5563;
    max-width: 42rem;
    margin: 0 auto;
}

.features-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    margin-bottom: 4rem;
}

@media (min-width: 768px) {
    .features-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.feature-card {
    background: linear-gradient(135deg, #6D3F99 0%, #2563EB 100%);
    padding: 1px;
    border-radius: 1rem;
}

.feature-card-inner {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    height: 100%;
}

.feature-icon {
    margin-bottom: 1rem;
}

.feature-icon.blue {
    color: #2563EB;
}

.feature-icon.purple {
    color: #6D3F99;
}

.feature-icon.amber {
    color: #F59E0B;
}

.feature-card h3 {
    font-size: 1.25rem;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.feature-card p {
    color: #4B5563;
}

.product-showcase {
    display: flex;
    justify-content: center;
}

.product-showcase img {
    max-width: 48rem;
    width: 100%;
}

/* How It Works Section */
.how-it-works-section {
    padding: 5rem 0;
    background-color: #f9fafb;
    border-top: 4px solid #DBEAFE;
}

.section-title {
    font-size: 2.25rem;
    color: #1F2937;
    text-align: center;
    margin-bottom: 3rem;
}

.steps-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.step h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.step p {
    color: #4B5563;
}

.game-info-card {
    background-color: #ffffff;
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    border: 2px solid #E9D5FF;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.info-item {
    display: flex;
    align-items: start;
    gap: 1rem;
}

.info-badge {
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: #ffffff;
    flex-shrink: 0;
}

.info-badge.purple {
    background-color: #6D3F99;
}

.info-badge.blue {
    background-color: #2563EB;
}

.info-badge.amber {
    background-color: #F59E0B;
}

.info-item h4 {
    font-weight: 600;
    color: #1F2937;
    margin-bottom: 0.25rem;
}

.info-item p {
    font-size: 0.875rem;
    color: #4B5563;
}

/* Founders Section */
.founders-section {
    padding: 5rem 0;
    background-color: #ffffff;
    border-top: 4px solid #FEF3C7;
}

.founders-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 3rem;
}

@media (min-width: 768px) {
    .founders-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

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

.founder-img {
    width: 100%;
    max-width: 24rem;
    margin: 0 auto 1rem;
    border-radius: 1rem;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
}

.founder-card h3 {
    font-size: 1.5rem;
    color: #1F2937;
    margin-bottom: 0.5rem;
}

.founder-card p {
    color: #4B5563;
}

/* Subscribe Section */
.subscribe-section {
    padding: 5rem 0;
    background-color: #6e398d;
}

.subscribe-content {
    max-width: 48rem;
    margin: 0 auto;
}

.subscribe-content h2 {
    font-size: 2.25rem;
    color: #ffffff;
    text-align: center;
    margin-bottom: 1rem;
}

.subscribe-subtitle {
    text-align: center;
    color: rgba(255, 255, 255, 0.9);
    font-size: 1.125rem;
    margin-bottom: 3rem;
}

.subscribe-form {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

@media (min-width: 768px) {
    .subscribe-form {
        flex-direction: row;
    }
}

.subscribe-form input {
    flex: 1;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    border: none;
    font-size: 1.125rem;
    font-family: neulis-neue, sans-serif;
}

.subscribe-form input::placeholder {
    color: #9CA3AF;
}

.subscribe-form button {
    flex-shrink: 0;
}

.subscribe-note {
    text-align: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.875rem;
    margin-top: 1.5rem;
}

/* CTA Section */
.cta-section {
    padding: 5rem 0;
    background-color: #394092;
}

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

.cta-content h2 {
    font-size: 1.875rem;
    color: #ffffff;
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    padding: 2rem 0;
    background-color: #111827;
    text-align: center;
}

.footer p {
    color: #9CA3AF;
}

/* Animations */
.fade-in {
    animation: fadeIn 0.8s ease-in-out;
}

.fade-delay-1 {
    animation-delay: 0.2s;
    opacity: 0;
    animation-fill-mode: forwards;
}

.fade-delay-2 {
    animation-delay: 0.4s;
    opacity: 0;
    animation-fill-mode: forwards;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.slide-in-left {
    animation: slideInLeft 0.8s ease-out;
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.slide-in-right {
    animation: slideInRight 0.8s ease-out;
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(40px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}
