.ethics-page {
    position: relative;
    z-index: 10;
}

.ethics-header {
    text-align: center;
    margin-bottom: 64px;
}

.ethics-badge {
    display: inline-block;
    padding: 8px 16px;
    background: var(--ember-subtle);
    border: 1px solid var(--border-color);
    font-size: 0.625rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--ember);
    margin-bottom: 24px;
    border-radius: 4px;
}

.ethics-header h1 {
    font-size: 2.5rem;
    margin-bottom: 16px;
}

.ethics-header p {
    font-size: 1rem;
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.ethics-section {
    margin-bottom: 64px;
}

.ethics-section h2 {
    font-size: 1.5rem;
    margin-bottom: 24px;
}

.ethics-section p {
    font-size: 0.9375rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Problem List */
.problem-list {
    list-style: none;
    margin: 24px 0;
}

.problem-list li {
    padding: 12px 0;
    padding-left: 24px;
    position: relative;
    font-size: 0.9375rem;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border-color);
}

.problem-list li:last-child {
    border-bottom: none;
}

.problem-list li::before {
    content: '\00d7';
    position: absolute;
    left: 0;
    color: var(--error);
    font-weight: 700;
}

.problem-list strong {
    color: var(--text-primary);
}

/* Commitment Grid */
.commitment-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 32px;
}

@media (max-width: 640px) {
    .commitment-grid {
        grid-template-columns: 1fr;
    }
}

.commitment-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 24px;
}

.commitment-icon {
    font-size: 1.5rem;
    margin-bottom: 12px;
}

.commitment-card h3 {
    font-size: 1rem;
    margin-bottom: 8px;
}

.commitment-card p {
    font-size: 0.8125rem;
    margin-bottom: 0;
}

/* Expect List */
.expect-list {
    margin-top: 24px;
}

.expect-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.expect-item:last-child {
    border-bottom: none;
}

.expect-check {
    width: 24px;
    height: 24px;
    background: rgba(34, 197, 94, 0.1);
    color: var(--success);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.expect-x {
    width: 24px;
    height: 24px;
    background: rgba(239, 68, 68, 0.1);
    color: var(--error);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.75rem;
    font-weight: 700;
    flex-shrink: 0;
}

.expect-item p {
    font-size: 0.9375rem;
    margin-bottom: 0;
}

.expect-item.no p {
    color: var(--text-muted);
}

/* Report Steps */
.report-steps {
    list-style: none;
    counter-reset: step;
    margin: 24px 0;
}

.report-steps li {
    position: relative;
    padding: 16px 0 16px 48px;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.9375rem;
    color: var(--text-secondary);
    counter-increment: step;
}

.report-steps li:last-child {
    border-bottom: none;
}

.report-steps li::before {
    content: counter(step);
    position: absolute;
    left: 0;
    top: 16px;
    width: 32px;
    height: 32px;
    background: var(--ember);
    color: var(--text-inverse);
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
}

.report-steps strong {
    color: var(--text-primary);
}

/* CTA */
.ethics-cta {
    text-align: center;
    padding: 48px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 8px;
}

.ethics-cta h3 {
    font-size: 1.25rem;
    margin-bottom: 8px;
}
