@import url('https://fonts.googleapis.com/css2?family=DM+Sans:wght@500;700&family=Source+Sans+3:wght@400;500&display=swap');

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

body {
    font-family: 'Source Sans 3', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    line-height: 1.6;
    color: #333;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
}

.container {
    text-align: center;
    padding: 2rem;
    max-width: 800px;
    width: 100%;
}

.content {
    background: white;
    border-radius: 20px;
    padding: 2rem 2rem 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    text-align: center;
}

.page-link {
    font-family: 'DM Sans', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: #667eea;
    text-decoration: none;
    transition: color 0.3s ease;
    display: block;
    margin-bottom: 1.5rem;
    text-align: left;
}

.page-link:hover {
    color: #764ba2;
}

h1 {
    margin-bottom: 1rem;
}

.tagline {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.5rem;
    font-weight: 500;
    color: #555;
    margin-bottom: 1rem;
}

.description {
    font-size: 1.1rem;
    color: #777;
    margin-bottom: 1.5rem;
}

.logo-section {
    margin: 0;
}

.brand-logo {
    height: 300px;  /* Change this value to adjust logo size */
    width: auto;
}

.launch-note {
    font-size: 1rem;
    font-weight: 500;
    color: #dc2626;
    margin-bottom: 2rem;
}

.signup-form {
    max-width: 500px;
    margin: 0 auto;
}

.privacy-note {
    font-size: 0.85rem;
    color: #999;
    margin-top: 0.75rem;
}

footer {
    margin-top: 2rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e5e5e5;
}

.social-links {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 1rem;
}

.social-links a {
    color: #667eea;
    transition: color 0.3s ease, transform 0.2s ease;
    display: inline-block;
}

.social-links a:hover {
    color: #764ba2;
    transform: translateY(-2px);
}

.copyright {
    font-size: 0.9rem;
    color: #666;
}

.article-content {
    text-align: left;
    max-width: 700px;
    margin: 0 auto;
}

.article-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin-bottom: 2rem;
}

.article-inline-image {
    width: 100%;
    height: auto;
    border-radius: 12px;
    margin: 1.5rem 0;
}

.article-title {
    font-family: 'DM Sans', sans-serif;
    font-size: 2.5rem;
    color: #333;
    margin-bottom: 1.5rem;
    text-align: center;
}

.article-body {
    font-size: 1.1rem;
    line-height: 1.8;
    color: #555;
}

.article-body p {
    margin-bottom: 1.5rem;
}

.article-body h2 {
    font-family: 'DM Sans', sans-serif;
    font-size: 1.6rem;
    color: #333;
    margin-top: 2.5rem;
    margin-bottom: 1rem;
}

.article-body ul {
    margin-bottom: 1.5rem;
    margin-left: 1.5rem;
}

.article-body li {
    margin-bottom: 0.5rem;
}

.article-cta {
    margin-top: 2rem;
    padding: 1.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border-radius: 10px;
    color: #667eea;
    text-align: center;
}

@media (max-width: 600px) {
    h1 { font-size: 2rem; }
    .tagline { font-size: 1.2rem; }
    .content { padding: 2rem 1.5rem; }
    .article-title { font-size: 1.8rem; }
}
