:root {

    --border-soft: rgba(255,255,255,0.08);
}




/* Layout */
.container {
    max-width: 1100px;
    margin: auto;
    padding: 80px 24px;
}

/* Header */
header {
    margin-bottom: 80px;
}

header h1 {
    font-size: 44px;
    font-weight: 700;
    letter-spacing: -0.02em;
    margin-bottom: 16px;
}

header p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 720px;
}

/* Section */
section {
    margin-bottom: 72px;
}

.section-title {
    font-size: 22px;
    font-weight: 600;
    margin-bottom: 24px;
    letter-spacing: 0.02em;
}

/* Panels */
.panel {
    background: var(--bg-panel);
    border: 1px solid var(--border-soft);
    border-radius: 16px;
    padding: 28px;
    margin-bottom: 24px;
}

/* Lists */
ul {
    list-style: none;
}

li {
    margin-bottom: 12px;
    color: var(--text-muted);
}

/* Highlights */
.highlight {
    color: var(--accent);
    font-weight: 600;
}

/* Downloads */
.downloads a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px 20px;
    margin-bottom: 12px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border-soft);
    border-radius: 12px;
    text-decoration: none;
    color: var(--text-main);
    transition: all 0.25s ease;
}

.downloads a:hover {
    background: rgba(0,230,189,0.08);
    border-color: var(--accent);
}

/* CTA */
.cta {
    display: inline-block;
    margin-top: 24px;
    padding: 14px 24px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    border-radius: 10px;
    text-decoration: none;
}

/* Footer */
footer {
    margin-top: 100px;
    padding-top: 32px;
    border-top: 1px solid var(--border-soft);
    font-size: 14px;
    color: var(--text-muted);
}
