:root {
    --font-main: 'Sora', sans-serif;
    
    --color-bg: #FAFAF9; /* Warm off-white */
    --color-surface: #FFFFFF;
    --color-text: #1A1A1A;
    --color-text-muted: #666666;
    --color-accent: #FF5500; /* SoundCloud Orange-ish, but used minimally */
    --color-accent-dark: #cc4400;
    --color-border: #E5E5E5;
    
    --spacing-unit: 8px;
    --content-width: 900px;
}

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

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

a {
    text-decoration: none;
    color: inherit;
}

/* Header */
.site-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 32px 5%;
    max-width: 1200px;
    margin: 0 auto;
}

.logo {
    font-weight: 700;
    font-size: 1.5rem;
    letter-spacing: -0.03em;
}

.btn-clean {
    font-weight: 600;
    font-size: 0.95rem;
    color: var(--color-text);
    padding: 8px 16px;
    border-radius: 6px;
    transition: background 0.2s ease;
}

.btn-clean:hover {
    background: rgba(0,0,0,0.05);
}

/* Hero */
.hero {
    text-align: center;
    padding: 120px 20px 80px;
    max-width: 800px;
    margin: 0 auto;
}

.hero-title {
    font-size: 4.5rem;
    line-height: 1.1;
    font-weight: 700;
    margin-bottom: 24px;
    letter-spacing: -0.04em;
    background: linear-gradient(180deg, #1A1A1A 0%, #444 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--color-text-muted);
    font-weight: 400;
    max-width: 500px;
    margin: 0 auto 40px;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    background-color: var(--color-text);
    color: white;
    padding: 16px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1.1rem;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0,0,0,0.15);
    background-color:black;
}

.meta-text {
    margin-top: 16px;
    font-size: 0.85rem;
    color: var(--color-text-muted);
}

/* Features */
.features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: var(--content-width);
    margin: 0 auto;
    padding: 60px 20px;
}

.feature-card h3 {
    font-size: 1.25rem;
    margin-bottom: 12px;
    font-weight: 600;
}

.feature-card p {
    color: var(--color-text-muted);
    font-size: 0.95rem;
}

.divider {
    border: none;
    height: 1px;
    background: var(--color-border);
    max-width: var(--content-width);
    margin: 40px auto;
}

/* Install Guide */
.install-guide {
    max-width: var(--content-width);
    margin: 80px auto;
    padding: 0 20px;
}

.guide-header {
    margin-bottom: 60px;
}

.guide-header h2 {
    font-size: 2.5rem;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.guide-header p {
    color: var(--color-text-muted);
    font-size: 1.1rem;
}

.steps-container {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.step-item {
    display: flex;
    gap: 32px;
    background: var(--color-surface);
    padding: 32px;
    border-radius: 12px;
    border: 1px solid var(--color-border);
    transition: border-color 0.2s ease;
}

.step-item:hover {
    border-color: #ccc;
}

.step-number {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-border);
    line-height: 1;
    min-width: 60px;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}

.step-content p {
    color: var(--color-text-muted);
}

.url-code {
    background: #F0F0F0;
    padding: 4px 8px;
    border-radius: 4px;
    font-family: 'Sora', monospace; /* Keep using Sora but monospace-ish context */
    font-size: 0.9em;
    color: #333;
}

/* Footer */
.site-footer {
    text-align: center;
    padding: 80px 20px 40px;
    color: var(--color-text-muted);
    font-size: 0.9rem;
}

/* Mobile Tweaks */
@media (max-width: 768px) {
    .site-header {
        padding: 24px;
    }
    
    .hero-title {
        font-size: 3rem;
    }
    
    .step-item {
        flex-direction: column;
        gap: 16px;
    }
    
    .step-number {
        font-size: 1.5rem;
    }
}
