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

:root {
    --text-primary: #000000;
    --text-secondary: #525252;
    --text-muted: #737373;
    --accent-primary: #6b21a8;
    --gradient-primary: linear-gradient(135deg, #6b21a8 0%, #581c87 50%, #4c1d95 100%);
    --border-color: #e8e8e8;
    --shadow-md: 0 8px 24px rgba(107, 33, 168, 0.15);
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #ffffff;
    color: var(--text-primary);
    line-height: 1.6;
}

/* Container */
.container {
    max-width: 600px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Header Section */
.header-section {
    padding: 40px 0 0 0;
    text-align: center;
}

.logo {
    font-size: 28px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s;
}

.logo:hover {
    opacity: 0.8;
}

/* Hero Section */
.hero-section {
    padding: 60px 0 48px 0;
    text-align: center;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(107, 33, 168, 0.05) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 0;
    pointer-events: none;
}

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

h1 {
    font-size: 48px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.1;
    margin-bottom: 12px;
    letter-spacing: -1px;
}

.tagline {
    font-size: 24px;
    color: var(--text-secondary);
    font-weight: 500;
    margin-bottom: 20px;
}

.subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    margin-bottom: 12px;
    line-height: 1.5;
}

.subscribe-highlight {
    color: var(--accent-primary);
    font-weight: 700;
}

/* Form */
.signup-form {
    display: flex;
    gap: 8px;
    margin-bottom: 24px;
    align-items: stretch;
    background: white;
    border: 2px solid var(--border-color);
    border-radius: 16px;
    padding: 8px;
    box-shadow: 0 8px 24px rgba(107, 33, 168, 0.15);
    transition: all 0.3s ease;
}

.signup-form:focus-within {
    border-color: var(--accent-primary);
    box-shadow: 0 0 0 4px rgba(107, 33, 168, 0.1), 0 8px 24px rgba(107, 33, 168, 0.15);
}

.email-input {
    flex: 1;
    padding: 16px 20px;
    border: none;
    background: transparent;
    color: var(--text-primary);
    font-size: 16px;
    outline: none;
    font-family: inherit;
}

.email-input::placeholder {
    color: var(--text-muted);
}

.signup-btn {
    background: var(--gradient-primary);
    color: white;
    padding: 16px 28px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    box-shadow: 0 4px 12px rgba(107, 33, 168, 0.12);
    white-space: nowrap;
}

.signup-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(107, 33, 168, 0.15);
}

.trust-signals {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 0;
}

/* Stats Section */
.stats-section {
    padding: 48px 0;
    background: #fafafa;
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}

.stats {
    display: flex;
    justify-content: center;
    gap: 48px;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 32px;
    font-weight: 700;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 4px;
    display: block;
}

.stat-label {
    font-size: 13px;
    color: var(--text-secondary);
    font-weight: 500;
}

/* What You Get Section */
.benefits-section {
    padding: 80px 0;
    background: #ffffff;
}

.benefits-section h2 {
    font-size: 28px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 40px;
    text-align: center;
}

.schedule-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
}

.schedule-card {
    background: linear-gradient(145deg, rgba(250,250,250,0.8) 0%, rgba(255,255,255,0.5) 100%);
    border: 1px solid rgba(107, 33, 168, 0.1);
    border-radius: 16px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.3s;
}

.schedule-card:hover {
    transform: translateY(-4px);
    border-color: rgba(107, 33, 168, 0.2);
    box-shadow: 0 8px 24px rgba(107, 33, 168, 0.12);
}

.schedule-day {
    font-size: 40px;
    margin-bottom: 16px;
    display: block;
}

.schedule-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.schedule-card p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.benefit-list {
    margin-top: 40px;
    text-align: left;
}

.benefit-item {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
    align-items: flex-start;
}

.benefit-icon {
    font-size: 24px;
    flex-shrink: 0;
}

.benefit-content {
    flex: 1;
}

.benefit-content h3 {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.benefit-content p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

/* Footer Section */
.footer-section {
    padding: 48px 0;
    background: #fafafa;
    border-top: 1px solid var(--border-color);
    text-align: center;
}

.footer-link {
    font-size: 14px;
    color: var(--text-muted);
}

.footer-link a {
    color: var(--accent-primary);
    text-decoration: none;
}

.footer-link a:hover {
    text-decoration: underline;
}

/* Mobile */
@media (max-width: 640px) {
    h1 {
        font-size: 36px;
    }

    .tagline {
        font-size: 20px;
    }

    .subtitle {
        font-size: 18px;
    }

    .logo {
        font-size: 24px;
    }

    .signup-form {
        flex-direction: column;
        gap: 0;
        padding: 16px;
    }

    .email-input {
        width: 100%;
        margin-bottom: 16px;
    }

    .signup-btn {
        width: 100%;
    }

    .stats {
        gap: 32px;
    }

    .stat-number {
        font-size: 28px;
    }

    .schedule-grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }

    .container {
        padding: 0 20px;
    }

    .hero-section {
        padding: 40px 0 40px 0;
    }

    .benefits-section {
        padding: 60px 0;
    }
}
