:root {
    --bg-color: #f0efe9;
    --text-color: #1a1a1a;
    --secondary-text-color: #555;
    --accent-color: #00b894;
    --font-serif: 'Playfair Display', serif;
    --font-sans: 'Work Sans', sans-serif;
    --spacing-unit: 1rem;
    --container-width: 1200px;
}

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

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

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-serif);
    font-weight: 400;
    margin-bottom: var(--spacing-unit);
}

a {
    color: inherit;
    text-decoration: none;
    transition: color 0.3s ease;
}

a:hover {
    color: var(--accent-color);
}

.container {
    max-width: var(--container-width);
    margin: 0 auto;
    padding: 0 2rem;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 1.5rem; /* Matches px-6 py-6 */
    font-size: 0.8rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    position: sticky;
    top: 0;
    background: var(--bg-color); /* To ensure content scrolls under */
    z-index: 100;
}

@media (min-width: 768px) {
    .site-header {
        padding: 1.5rem 2.5rem; /* Matches md:px-10 */
    }
}

.logo {
    font-size: 11px; /* text-[11px] */
    font-weight: 500; /* font-medium */
    letter-spacing: 0.5em; /* tracking-[0.5em] */
    text-transform: uppercase; /* uppercase */
    color: rgba(26, 26, 26, 0.9); /* text-foreground/90 */
    margin-right: -0.5em; /* Compensate for last letter spacing if needed, though typically not done in CSS unless precise */
}

/* Remove old header-status styles */
/* .header-status { display: none; } */
/* .status-dot { display: none; } */
/* .beta-btn { display: none; } */

/* Update navigation to align right if needed, but flex justify-between handles it */
.main-nav ul {
    list-style: none;
    display: flex;
    gap: 2rem;
}

/* Hero Section */
.hero {
    min-height: 80vh;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 4rem 2rem;
}

.hero-logo-small {
    width: 60px;
    height: 60px;
    margin-bottom: 2rem;
    /* Placeholder gradient if image not available */
    background: conic-gradient(from 180deg at 50% 50%, #FF9A9E 0deg, #FECFEF 180deg, #FF9A9E 360deg);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.6rem;
    color: white;
    font-weight: bold;
    text-transform: uppercase;
    text-align: center;
    line-height: 1;
}

.hero h1 {
    font-size: 5rem;
    font-style: italic;
    margin-bottom: 1rem;
    font-weight: 400;
}

.hero-subtitle {
    font-size: 0.9rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--secondary-text-color);
    margin-bottom: 3rem;
}

.cta-button {
    background-color: #111;
    color: #fff;
    padding: 1rem 2rem;
    text-transform: uppercase;
    font-size: 0.8rem;
    letter-spacing: 0.15em;
    border: none;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #333;
}

/* Section Common */
section {
    padding: 6rem 0;
}

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

.section-header h2 {
    font-size: 3rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.section-label {
    font-size: 0.7rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--secondary-text-color);
    display: block;
    margin-bottom: 2rem;
}

/* Grid Layouts */
.grid-2 {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: start;
}

.feature-item {
    margin-bottom: 3rem;
}

.feature-number {
    font-size: 0.8rem;
    color: #ccc;
    margin-right: 1rem;
    font-family: var(--font-sans);
}

.feature-title {
    font-size: 0.9rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: inline-block;
}

.feature-desc {
    color: var(--secondary-text-color);
    font-size: 0.95rem;
    margin-top: 0.5rem;
    max-width: 90%;
}

/* Comparison Section */
.comparison-card img {
    width: 100%;
    height: auto;
    filter: grayscale(100%);
    margin-top: 2rem;
    border-radius: 2px;
}

.comparison-card h3 {
    font-size: 2.5rem;
    font-style: italic;
    margin-bottom: 1rem;
    line-height: 1.1;
}

.comparison-card p {
    color: var(--secondary-text-color);
    font-size: 0.95rem;
    margin-top: 1rem;
}


/* Blog List */
.blog-list {
    max-width: 800px;
    margin: 0 auto;
    padding: 4rem 2rem;
}

.blog-post-item {
    margin-bottom: 4rem;
    border-bottom: 1px solid #ddd;
    padding-bottom: 2rem;
}

.blog-post-item:last-child {
    border-bottom: none;
}

.blog-post-title {
    font-size: 2.5rem;
    margin-bottom: 0.5rem;
}

.blog-post-meta {
    font-size: 0.8rem;
    color: var(--secondary-text-color);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 1rem;
}

.blog-post-summary {
    color: var(--secondary-text-color);
    margin-bottom: 1.5rem;
}

.read-more {
    font-size: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    border-bottom: 1px solid currentColor;
    padding-bottom: 2px;
}

/* Single Post */
.single-post {
    max-width: 800px;
    margin: 0 auto;
    padding: 6rem 2rem;
}

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

.post-title {
    font-size: 3.5rem;
    font-style: italic;
    margin-bottom: 1rem;
}

.post-content {
    font-size: 1.1rem;
    line-height: 1.8;
}

.post-content p {
    margin-bottom: 1.5rem;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 4rem 2rem;
    border-top: 1px solid rgba(0,0,0,0.05);
    margin-top: 4rem;
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: #999;
}

.footer-nav {
    margin: 2rem 0;
}

.footer-nav a {
    margin: 0 1rem;
}

@media (max-width: 768px) {
    .hero h1 {
        font-size: 3rem;
    }
    
    .grid-2 {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .site-header {
        flex-direction: column;
        gap: 1rem;
    }
}
