:root {
    /* Холодная палитра: глубокий фон, чистый текст, строгий акцент */
    --bg-app: #0f172a;       /* Slate 900 */
    --bg-card: #1e293b;      /* Slate 800 */
    --bg-header: rgba(15, 23, 42, 0.85);
    
    --text-main: #f8fafc;    /* Slate 50 */
    --text-muted: #94a3b8;   /* Slate 400 */
    
    --border: #334155;       /* Slate 700 */
    --accent: #38bdf8;       /* Sky 400 */
    --accent-hover: #0ea5e9; /* Sky 500 */
    
    --radius: 12px;
}

html, body {
    margin: 0;
    padding: 0;
    height: 100%;
    font-family: -apple-system, BlinkMacSystemFont, "Inter", "Segoe UI", Roboto, sans-serif;
    background-color: var(--bg-app);
    color: var(--text-main);
    line-height: 1.5;
}

/* Лейаут */
.comm-wrap {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.comm-container {
    width: 100%;
    max-width: 1000px; /* Узкий контейнер для минимализма */
    margin: 0 auto;
    padding: 0 24px;
}

/* Хедер */
.comm-header {
    position: sticky;
    top: 0;
    z-index: 100;
    backdrop-filter: blur(12px);
    background: var(--bg-header);
    border-bottom: 1px solid var(--border);
    padding: 16px 0;
}

.comm-header-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.comm-logo {
    font-size: 18px;
    font-weight: 700;
    color: var(--text-main);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 8px;
}

.comm-logo span {
    color: var(--accent);
}

.comm-nav {
    display: flex;
    gap: 24px;
}

.comm-nav a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s;
}

.comm-nav a:hover, .comm-nav a.active {
    color: var(--text-main);
}

/* Кнопки */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 20px;
    border-radius: 6px; /* Строгий радиус */
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.2s;
    cursor: pointer;
    border: 1px solid transparent;
}

.btn-primary {
    background-color: var(--accent);
    color: #0f172a;
}

.btn-primary:hover {
    background-color: var(--accent-hover);
}

.btn-outline {
    background: transparent;
    border-color: var(--border);
    color: var(--text-main);
}

.btn-outline:hover {
    border-color: var(--text-muted);
}

/* Сетка главной */
.hero-block {
    padding: 80px 0 60px;
}

.hero-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.1;
    margin: 0 0 16px;
    letter-spacing: -0.02em;
}

.hero-text {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 0 32px;
}

.grid-2 {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 60px;
    margin-bottom: 60px;
}

.section-title {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--text-muted);
    margin: 0 0 20px;
    font-weight: 600;
}

/* Карточки/Списки */
.info-row {
    display: flex;
    justify-content: space-between;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.info-row:last-child {
    border-bottom: none;
}

.info-label {
    color: var(--text-muted);
}

.info-val {
    color: var(--text-main);
    font-weight: 500;
}

.news-item {
    margin-bottom: 24px;
}

.news-date {
    font-size: 12px;
    color: var(--accent);
    margin-bottom: 4px;
}

.news-title {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 6px;
}

.news-desc {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.5;
}

/* Футер */
.comm-footer {
    margin-top: auto;
    border-top: 1px solid var(--border);
    padding: 30px 0;
    color: var(--text-muted);
    font-size: 13px;
}

.footer-row {
    display: flex;
    justify-content: space-between;
}

.footer-links a {
    color: var(--text-muted);
    text-decoration: none;
    margin-left: 20px;
}

.footer-links a:hover {
    color: var(--text-main);
}
