:root {
    --color-primary: #FF9800;
    --color-accent: #FF5722;
    --color-bg: #FFF9F0;
    --color-surface: #FFFFFF;
    --color-text: #2C1810;
    --color-text-secondary: #8B6A4F;
    --color-success: #4CAF50;
    --color-error: #FF5722;
    --font-heading: 'Cherry Bomb One', cursive;
    --font-body: 'M PLUS Rounded 1c', sans-serif;
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.08);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.12);
    --shadow-lg: 0 8px 32px rgba(0, 0, 0, 0.16);
}

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

body {
    font-family: var(--font-body);
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

/* Navigation */
.nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 0.25rem;
}

.logo-img {
    width: 48px;
    height: 48px;
    animation: float 3s ease-in-out infinite;
}

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

.logo-text {
    font-family: var(--font-heading);
    font-size: 2rem;
    color: var(--color-text);
}

.logo-accent {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* Buttons */
.btn-primary,
.btn-secondary,
.btn-hero {
    font-family: var(--font-body);
    font-weight: 800;
    font-size: 1rem;
    padding: 0.875rem 2rem;
    border-radius: 999px;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    color: white;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 24px rgba(255, 152, 0, 0.4);
}

.btn-secondary {
    background: white;
    color: var(--color-text);
    box-shadow: var(--shadow-sm);
}

.btn-secondary:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.btn-hero {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    color: white;
    font-size: 1.125rem;
    padding: 1.125rem 3rem;
    box-shadow: 0 8px 24px rgba(255, 152, 0, 0.3);
}

.btn-hero:hover {
    transform: translateY(-4px) scale(1.02);
    box-shadow: 0 12px 32px rgba(255, 152, 0, 0.4);
}

/* Hero Section */
.hero {
    min-height: 100vh;
    padding: 0 3rem 4rem;
}

.hero-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 4rem;
    align-items: center;
    padding: 4rem 0;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 4.5rem;
    line-height: 1.1;
    background: linear-gradient(135deg, #5D4037 0%, #8D6E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1.5rem;
}

.gradient-text {
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-subtitle {
    font-size: 1.375rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    margin-bottom: 3rem;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    align-items: flex-end;
}

.stat {
    text-align: left;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    line-height: 1;
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-infinity {
    font-size: 8rem;
    line-height: 0.7;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.hero-mascot {
    width: 100%;
    max-width: 500px;
    height: auto;
    animation: float 4s ease-in-out infinite;
}

/* Features Section */
.features {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 3rem;
    text-align: center;
    margin-bottom: 4rem;
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

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

.feature-card {
    background: white;
    padding: 2.5rem;
    border-radius: 24px;
    box-shadow: var(--shadow-sm);
    transition: all 0.3s ease;
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
}

.feature-icon {
    font-size: 3rem;
    margin-bottom: 1.5rem;
}

.feature-title {
    font-family: var(--font-heading);
    font-size: 1.5rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #5D4037 0%, #8D6E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.feature-text {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* How It Works */
.how-it-works {
    padding: 6rem 3rem;
    background: white;
}

.steps {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.step {
    text-align: center;
    position: relative;
}

.step:not(:last-child)::after {
    content: '→';
    position: absolute;
    right: -2rem;
    top: 1.5rem;
    font-size: 2rem;
    color: var(--color-primary);
}

.step-number {
    width: 4rem;
    height: 4rem;
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    color: white;
    font-family: var(--font-heading);
    font-size: 2rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.3);
}

.step-title {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #5D4037 0%, #8D6E63 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.step-text {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.7;
}

/* Demo Section */
.demo-section {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    text-align: center;
}

.demo-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
    font-weight: 600;
}

.demo-container {
    max-width: 1600px;
    margin: 0 auto;
    background: white;
    border-radius: 24px;
    padding: 2rem;
    box-shadow: var(--shadow-lg);
}

/* CTA Section */
.cta {
    padding: 6rem 3rem;
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cta-title {
    font-family: var(--font-heading);
    font-size: 3.5rem;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #FF9800 0%, #FF5722 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.access-form {
    display: flex;
    gap: 1rem;
    max-width: 600px;
    margin-bottom: 1.5rem;
}

.email-input {
    flex: 1;
    padding: 1rem 1.5rem;
    border: 3px solid var(--color-text);
    border-radius: 999px;
    font-family: var(--font-body);
    font-size: 1rem;
    font-weight: 700;
    background: white;
    outline: none;
    transition: all 0.3s ease;
}

.email-input:focus {
    border-color: var(--color-primary);
    box-shadow: 0 4px 16px rgba(255, 152, 0, 0.2);
}

.status {
    font-size: 1rem;
    color: var(--color-text-secondary);
    font-weight: 700;
    min-height: 1.5rem;
}

.cta-mascot {
    width: 100%;
    max-width: 400px;
    height: auto;
    margin-left: auto;
}

/* Footer */
.footer {
    background: var(--color-surface);
    border-top: 2px solid #FFE4CC;
    padding: 3rem;
}

.footer-content {
    max-width: 1400px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    gap: 2rem;
}

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

.footer-logo-img {
    width: 36px;
    height: 36px;
}

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

.footer-links a {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-weight: 700;
    transition: color 0.3s ease;
}

.footer-links a:hover {
    color: var(--color-primary);
}

.footer-copy {
    text-align: right;
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

/* Responsive */
@media (max-width: 1024px) {
    .hero-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-title {
        font-size: 3.5rem;
    }

    .hero-subtitle {
        margin-left: auto;
        margin-right: auto;
    }

    .hero-cta {
        justify-content: center;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-mascot {
        order: -1;
        max-width: 350px;
        margin: 0 auto;
    }

    .steps {
        grid-template-columns: 1fr;
    }

    .step:not(:last-child)::after {
        content: '↓';
        right: auto;
        left: 50%;
        top: auto;
        bottom: -2.5rem;
        transform: translateX(-50%);
    }

    .cta {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .access-form {
        margin-left: auto;
        margin-right: auto;
    }

    .cta-mascot {
        margin: 0 auto;
    }

    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .footer-copy {
        text-align: center;
    }
}

@media (max-width: 768px) {
    .nav {
        padding: 1rem 1.5rem;
    }

    .hero {
        padding: 0 1.5rem 2rem;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle {
        font-size: 1.125rem;
    }

    .hero-cta {
        flex-direction: column;
    }

    .features,
    .how-it-works,
    .demo-section,
    .cta {
        padding: 3rem 1.5rem;
    }

    .demo-container {
        padding: 1rem;
    }

    .section-title {
        font-size: 2rem;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .cta-title {
        font-size: 2.5rem;
    }

    .access-form {
        flex-direction: column;
    }

    .footer {
        padding: 2rem 1.5rem;
    }
}

