:root {
    --primary-blue: #0060df;
    --hover-blue: #003eaa;
    --bg-dark: #0b0821;
    --bg-card: #1c1b2b;
    --text-white: #ffffff;
    --text-gray: #b1b1b1;
    --accent-orange: #ff9500;
    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-main);
    background-color: var(--bg-dark);
    color: var(--text-white);
    line-height: 1.6;
    overflow-x: hidden;
}

section {
    scroll-margin-top: 80px;
}

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

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

/* Navbar */
.navbar {
    padding: 1.5rem 0;
    position: sticky;
    top: 0;
    background-color: rgba(11, 8, 33, 0.9);
    backdrop-filter: blur(10px);
    z-index: 1000;
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 1.5rem;
    font-weight: 700;
}

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

nav a {
    color: var(--text-white);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.3s;
}

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

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 4px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.3s;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background-color: var(--primary-blue);
    color: white;
}

.btn-primary:hover {
    background-color: var(--hover-blue);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
}

/* Hero Section */
.hero {
    padding: 6rem 0;
}

.hero h1 {
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.subtitle {
    font-size: 1.25rem;
    color: var(--text-gray);
    margin-bottom: 2.5rem;
}

.hero-btns {
    margin-bottom: 1rem;
}

.small-text {
    font-size: 0.85rem;
    color: var(--text-gray);
    margin-top: 1rem;
}

.hero-image img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

/* Features Section */
.features {
    padding: 6rem 0;
    background-color: rgba(255, 255, 255, 0.03);
}

.features h2 {
    font-size: 2.5rem;
    margin-bottom: 4rem;
}

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

.feature-card {
    background-color: var(--bg-card);
    padding: 2.5rem;
    border-radius: 12px;
    transition: transform 0.3s;
}

.feature-card:hover {
    transform: translateY(-10px);
}

.feature-card img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 1.5rem;
}

.feature-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.feature-card p {
    color: var(--text-gray);
}

/* CTA Section */
.cta-section {
    padding: 6rem 0;
}

.cta-image img {
    width: 100%;
}

.cta-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.mobile-downloads {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
}

/* Secondary Hero */
.secondary-hero {
    padding: 8rem 0;
}

.sparkle-img {
    width: 100px;
    margin-bottom: 2rem;
}

.meditating-img {
    display: block;
    width: 100%;
    max-width: 600px;
    margin: 4rem auto 0;
}

/* Articles Section */
.articles {
    padding: 6rem 0;
    background-color: var(--bg-dark);
}

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

.article-item {
    background-color: var(--bg-card);
    border-radius: 12px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
}

.article-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0,0,0,0.3);
}

.article-img img {
    width: 100%;
    height: 200px;
    object-fit: cover;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

.article-body {
    padding: 1.5rem;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.category {
    display: inline-block;
    color: var(--accent-orange);
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    letter-spacing: 0.5px;
}

.article-body h3 {
    font-size: 1.25rem;
    margin-bottom: 1rem;
    line-height: 1.4;
}

.article-body p {
    color: var(--text-gray);
    font-size: 0.95rem;
    margin-bottom: 1.5rem;
    line-height: 1.5;
}

.read-more {
    margin-top: auto;
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.3s;
}

.read-more:hover {
    color: var(--text-white);
}

/* Footer */
.footer {
    padding: 4rem 0 2rem;
    border-top: 1px solid rgba(255,255,255,0.1);
}

.footer-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 4rem;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 700;
    position: relative;
}

.footer-mascot {
    height: 60px;
    margin-left: 20px;
    opacity: 0.8;
}

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

.link-group h4 {
    margin-bottom: 1.5rem;
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-gray);
}

.link-group a {
    display: block;
    color: var(--text-white);
    text-decoration: none;
    margin-bottom: 0.8rem;
    font-size: 0.95rem;
}

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

.footer-bottom {
    text-align: center;
    color: var(--text-gray);
    font-size: 0.9rem;
}

/* Article Page Styles */
.article-page {
    background-color: #f9f9fb;
    color: #20123a;
}

.article-header {
    background-color: var(--bg-dark);
    color: white;
    padding: 8rem 0 4rem;
    text-align: center;
}

.article-header h1 {
    font-size: 3.5rem;
    max-width: 900px;
    margin: 0 auto 2rem;
    line-height: 1.2;
}

.article-meta {
    font-size: 1.1rem;
    color: var(--text-gray);
}

.article-content-wrapper {
    max-width: 800px;
    margin: -4rem auto 6rem;
    background: white;
    padding: 4rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.1);
    position: relative;
    z-index: 10;
}

.article-hero-img {
    width: 100%;
    border-radius: 8px;
    margin-bottom: 3rem;
}

.article-body-text h2 {
    margin: 3rem 0 1.5rem;
    font-size: 2rem;
    color: var(--bg-dark);
}

.article-body-text p {
    margin-bottom: 1.5rem;
    font-size: 1.15rem;
    line-height: 1.8;
}

.article-body-text ul, .article-body-text ol {
    margin-bottom: 2rem;
    padding-left: 2rem;
}

.article-body-text li {
    margin-bottom: 1rem;
    font-size: 1.1rem;
}

.case-study {
    background-color: #f0f4ff;
    border-left: 4px solid var(--primary-blue);
    padding: 2rem;
    margin: 3rem 0;
    border-radius: 0 8px 8px 0;
}

.case-study h4 {
    color: var(--primary-blue);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.user-feedback {
    display: flex;
    gap: 2rem;
    align-items: center;
    margin: 4rem 0;
    padding: 2rem;
    border-top: 1px solid #eee;
    border-bottom: 1px solid #eee;
    font-style: italic;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #ddd;
    flex-shrink: 0;
}

.article-footer {
    text-align: center;
    padding: 4rem 0;
    background: white;
    border-top: 1px solid #eee;
}

.back-home {
    color: var(--primary-blue);
    text-decoration: none;
    font-weight: 700;
}

@media (max-width: 768px) {
    .article-content-wrapper {
        padding: 2rem;
        margin-top: -2rem;
    }
    
    .article-header h1 {
        font-size: 2rem;
        padding: 0 1rem;
    }
}
@media (max-width: 768px) {
    .grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .hero h1 {
        font-size: 2.5rem;
    }
    
    .navbar nav {
        display: none;
    }
}
