.hero {
    text-align: center;
    padding: 4rem 2rem;
}

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    background: linear-gradient(135deg, #b3b9ff, #9f7aea, #5dade2);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 1rem;
    white-space: pre-line;
}

.hero-subtitle {
    font-size: 1.2rem;
    color: #c0c8e0;
    font-weight: bold;
    font-style: italic;
    margin-bottom: 2rem;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
}

.transparency {
    padding: 4rem 0;
    background: rgba(20, 25, 35, 0.3);
}

.section-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 600;
    margin-bottom: 2rem;
    color: #9f7aea;
}

.transparency-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.card {
    background: rgba(20, 25, 35, 0.6);
    backdrop-filter: blur(8px);
    border: 1px solid #2d3540;
    border-radius: 20px;
    padding: 1.5rem;
    transition: transform 0.2s, border-color 0.2s;
}

.card:hover {
    transform: translateY(-4px);
    border-color: #9f7aea;
}

.card-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
}

.card h3 {
    font-size: 1.1rem;
    margin-bottom: 0.5rem;
    color: white;
}

.card p {
    color: #a0a8c0;
    font-size: 0.85rem;
    line-height: 1.5;
}

.scenarios {
    padding: 4rem 0;
}

.scenarios-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.scenario-card {
    background: rgba(20, 25, 35, 0.4);
    border: 1px solid #2d3540;
    border-radius: 12px;
    padding: 1rem 1.2rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    transition: border-color 0.2s;
}

.scenario-card:hover {
    border-color: #9f7aea;
}

.scenario-icon {
    font-size: 1.5rem;
}

.scenario-card p {
    color: #c0c8e0;
    font-size: 0.85rem;
    margin: 0;
}

.compare {
    padding: 4rem 0;
    background: rgba(20, 25, 35, 0.3);
}

.compare-table-wrapper {
    overflow-x: auto;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    background: rgba(20, 25, 35, 0.6);
    border-radius: 16px;
    overflow: hidden;
}

.compare-table th,
.compare-table td {
    padding: 1rem 1.2rem;
    text-align: left;
    border-bottom: 1px solid #2d3540;
}

.compare-table th {
    background: rgba(159, 122, 234, 0.15);
    color: #9f7aea;
    font-weight: 600;
}

.compare-table td:first-child {
    font-weight: 500;
    color: white;
}

.compare-table td:not(:first-child) {
    color: #c0c8e0;
}

.manifesto {
    padding: 4rem 0;
}

.manifesto-content {
    max-width: 800px;
    margin: 0 auto;
    padding: 2rem;
    background: rgba(20, 25, 35, 0.4);
    border-left: 3px solid #9f7aea;
    border-radius: 16px;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    line-height: 1.8;
    color: #c0c8e0;
    white-space: pre-line;
}

.manifesto-signature {
    text-align: right;
    margin-top: 2rem;
    font-family: 'Georgia', 'Times New Roman', serif;
    font-style: italic;
    color: #c0c8e0;
    white-space: pre-line;
}

.cta {
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(159, 122, 234, 0.1), rgba(93, 173, 226, 0.05));
    border-radius: 20px;
    margin: 2rem;
}

.cta-title {
    font-size: 1.8rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    color: white;
}

@media (max-width: 900px) {
    .transparency-grid, .scenarios-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .hero-title {
        font-size: 2rem;
    }
    .transparency-grid, .scenarios-grid {
        grid-template-columns: 1fr;
    }
    .compare-table th, .compare-table td {
        padding: 0.6rem 0.8rem;
        font-size: 0.8rem;
    }
    .cta {
        margin: 1rem;
    }
}