/* ============================================================
   Aura — Стиль сайта (сиреневый + чёрный)
   ============================================================ */

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

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    background: #0D0D15;
    color: #E9D5FF;
    line-height: 1.6;
    min-height: 100vh;
}

/* ─── Header ─── */
header {
    background: linear-gradient(135deg, #0D0D15 0%, #1E0F30 100%);
    border-bottom: 1px solid #2A1548;
    padding: 16px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.logo {
    font-size: 24px;
    font-weight: 800;
    color: #C084FC;
    text-decoration: none;
    letter-spacing: 1px;
}

.logo span { color: #A855F7; }

nav { display: flex; gap: 8px; flex-wrap: wrap; }

nav a {
    color: #C084FC;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 600;
    transition: all 0.2s;
}
nav a:hover { background: #2A1548; color: #E9D5FF; }

/* ─── Hero ─── */
.hero {
    text-align: center;
    padding: 80px 24px 60px;
    background: radial-gradient(ellipse at top, #1E0F30 0%, #0D0D15 70%);
}
.hero h1 {
    font-size: 48px;
    font-weight: 900;
    background: linear-gradient(135deg, #C084FC, #A855F7);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 16px;
}
.hero p {
    font-size: 18px;
    color: #A0A0B8;
    max-width: 600px;
    margin: 0 auto 32px;
}
.hero .btn {
    display: inline-block;
    padding: 14px 36px;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.2s;
    margin: 6px;
}
.btn-primary { background: #7C3AED; color: #FFF; }
.btn-primary:hover { background: #6D28D9; transform: translateY(-2px); }
.btn-secondary { background: #2A1548; color: #C084FC; }
.btn-secondary:hover { background: #3A1A5A; transform: translateY(-2px); }

/* ─── Features ─── */
.features {
    padding: 60px 24px;
    max-width: 1100px;
    margin: 0 auto;
}
.features h2 {
    text-align: center;
    font-size: 32px;
    color: #C084FC;
    margin-bottom: 40px;
}
.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 20px;
}
.feature-card {
    background: #1A1028;
    border: 1px solid #2A1548;
    border-radius: 16px;
    padding: 24px;
    transition: border-color 0.2s;
}
.feature-card:hover { border-color: #7C3AED; }
.feature-card .icon { font-size: 32px; margin-bottom: 12px; }
.feature-card h3 { color: #C084FC; font-size: 18px; margin-bottom: 8px; }
.feature-card p { color: #A0A0B8; font-size: 14px; }

/* ─── Page content ─── */
.page {
    max-width: 800px;
    margin: 0 auto;
    padding: 40px 24px;
}
.page h1 {
    font-size: 32px;
    color: #C084FC;
    margin-bottom: 24px;
}
.page h2 {
    font-size: 22px;
    color: #A855F7;
    margin: 32px 0 16px;
}
.page p { color: #D4C4E8; margin-bottom: 16px; }
.page ul { color: #D4C4E8; padding-left: 24px; margin-bottom: 16px; }
.page ul li { margin-bottom: 8px; }

/* ─── Download card ─── */
.download-card {
    background: #1A1028;
    border: 1px solid #2A1548;
    border-radius: 16px;
    padding: 32px;
    margin: 24px 0;
    text-align: center;
}
.download-card h3 { color: #C084FC; font-size: 20px; margin-bottom: 8px; }
.download-card p { color: #A0A0B8; font-size: 14px; margin-bottom: 16px; }
.download-card .btn { margin-top: 8px; }

/* ─── Forum ─── */
.forum-post {
    background: #1A1028;
    border: 1px solid #2A1548;
    border-radius: 12px;
    padding: 20px;
    margin-bottom: 16px;
}
.forum-post .author {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 13px;
}
.forum-post .name { color: #C084FC; font-weight: 700; }
.forum-post .phone-model { color: #7C3AED; font-size: 12px; }
.forum-post .date { color: #606080; }
.forum-post .text { color: #D4C4E8; font-size: 14px; }
.forum-post .text p { margin-bottom: 4px; }

.forum-form {
    background: #1A1028;
    border: 1px solid #2A1548;
    border-radius: 12px;
    padding: 24px;
    margin-bottom: 32px;
}
.forum-form label {
    display: block;
    color: #C084FC;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 6px;
}
.forum-form input,
.forum-form textarea,
.forum-form select {
    width: 100%;
    padding: 10px 14px;
    background: #0D0D15;
    border: 1px solid #2A1548;
    border-radius: 8px;
    color: #E9D5FF;
    font-size: 14px;
    margin-bottom: 16px;
    font-family: inherit;
}
.forum-form input:focus,
.forum-form textarea:focus { outline: none; border-color: #7C3AED; }
.forum-form textarea { min-height: 100px; resize: vertical; }

/* ─── Footer ─── */
footer {
    text-align: center;
    padding: 32px 24px;
    color: #404060;
    font-size: 13px;
    border-top: 1px solid #1A1028;
}

/* ─── Responsive ─── */
@media (max-width: 600px) {
    .hero h1 { font-size: 32px; }
    .hero p { font-size: 16px; }
    header { flex-direction: column; text-align: center; }
    .page { padding: 24px 16px; }
}
