* { margin: 0; padding: 0; box-sizing: border-box; }
body {
    font-family: 'Manrope', -apple-system, BlinkMacSystemFont, sans-serif;
    -webkit-font-smoothing: antialiased;
    background: #050505; color: #bdbdbd;
    min-height: 100vh; display: flex; flex-direction: column;
}
.legal { max-width: 760px; margin: 0 auto; padding: 64px 32px 80px; flex: 1; }
.legal h1 { font-size: 38px; font-weight: 700; color: #f5f5f5; letter-spacing: -0.8px; margin-bottom: 8px; }
.legal .lead { font-size: 16px; color: #888; line-height: 1.7; margin-bottom: 40px; max-width: 580px; }
.legal h2 { font-size: 16px; font-weight: 600; color: #ccc; margin-top: 32px; margin-bottom: 8px; letter-spacing: 0.2px; }
.legal p { font-size: 15px; line-height: 1.75; color: #999; margin-bottom: 12px; }
.legal a { color: #00d4aa; text-decoration: none; font-weight: 600; }
.legal a:hover { text-decoration: underline; }

.contact-card {
    margin: 24px 0;
    padding: 28px; border: 1px solid #1a1a1a; border-radius: 10px;
    background: #0a0a0a;
}
.contact-row {
    display: flex; align-items: center; gap: 18px;
    padding: 12px 0;
}
.contact-row + .contact-row { border-top: 1px solid #161616; }
.contact-icon {
    width: 36px; height: 36px; flex-shrink: 0;
    border-radius: 6px; background: rgba(0, 212, 170, 0.08);
    color: #00d4aa;
    display: flex; align-items: center; justify-content: center;
}
.contact-icon svg { width: 18px; height: 18px; }
.contact-meta { flex: 1; min-width: 0; }
.contact-meta .label { font-size: 11px; color: #888; text-transform: uppercase; letter-spacing: 0.6px; margin-bottom: 2px; }
.contact-meta .value { font-size: 15px; color: #eee; font-weight: 500; word-break: break-all; }
