/* ═══ HERO ═══ */
.hero {
    padding-top: 140px;
    padding-bottom: 80px;
    display: flex;
    align-items: center;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at 50% 0%, rgba(249,174,0,0.05) 0%, transparent 60%);
}
.hero .container { position: relative; z-index: 2; max-width: 760px; }
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 50px;
    background: rgba(249,174,0,0.08);
    border: 1px solid rgba(249,174,0,0.2);
    font-size: 13px;
    font-weight: 600;
    color: var(--accent-orange);
    margin-bottom: 28px;
    animation: fadeInUp 0.8s ease;
}
.hero-badge .pulse { width: 8px; height: 8px; background: var(--accent-orange); border-radius: 50%; animation: pulse 2s ease-in-out infinite; }
@keyframes pulse { 0%,100%{opacity:1;transform:scale(1)} 50%{opacity:0.5;transform:scale(1.3)} }
.hero h1 { font-size: clamp(36px, 5vw, 60px); font-weight: 900; line-height: 1.05; letter-spacing: -0.03em; margin-bottom: 20px; animation: fadeInUp 0.8s ease 0.1s both; }
.hero p { font-size: clamp(15px, 1.8vw, 18px); color: var(--text-secondary); line-height: 1.7; margin: 0 auto 32px; animation: fadeInUp 0.8s ease 0.2s both; }
@keyframes fadeInUp { from{opacity:0;transform:translateY(30px)} to{opacity:1;transform:translateY(0)} }

/* ═══ LEGAL CONTENT ═══ */
.legal-wrap { max-width: 860px; margin: 0 auto; }
.legal-card {
    background: #1e1e1e;
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 20px;
    position: relative;
    overflow: hidden;
    transition: border-color 0.2s;
}
.legal-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-orange), transparent 60%);
    opacity: 0;
    transition: opacity 0.2s;
}
.legal-card:hover { border-color: rgba(255,255,255,0.12); }
.legal-card:hover::before { opacity: 1; }
.legal-card h2 { font-size: 13px; font-weight: 800; text-transform: uppercase; letter-spacing: 1.5px; color: var(--accent-orange); margin-bottom: 16px; }
.legal-card h3 { font-size: 15px; font-weight: 700; color: var(--text-primary); margin: 20px 0 8px; }
.legal-card p { font-size: 14px; color: var(--text-secondary); line-height: 1.85; margin-bottom: 12px; }
.legal-card p:last-child { margin-bottom: 0; }
.legal-card ol, .legal-card ul { padding-left: 24px; margin: 12px 0; }
.legal-card li { font-size: 14px; color: var(--text-secondary); line-height: 1.8; margin-bottom: 8px; }
.legal-card li:last-child { margin-bottom: 0; }
.legal-card strong { color: var(--text-primary); font-weight: 600; }
.legal-date { text-align: center; font-size: 13px; color: var(--text-muted); margin-bottom: 48px; }
.def-term { color: var(--text-primary); font-weight: 600; }

/* ═══ ANIMATIONS ═══ */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.7s cubic-bezier(0.4,0,0.2,1); }
.reveal.visible { opacity: 1; transform: translateY(0); }

/* ═══ RESPONSIVE ═══ */
@media (max-width: 768px) {
    .hero { padding-top: 100px; padding-bottom: 56px; }
    .section { padding: 70px 0; }
}
@media (max-width: 600px) {
    .hero { padding-top: 80px; padding-bottom: 40px; }
    .legal-card { padding: 24px 20px; }
    .section { padding: 56px 0; }
}
