.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 60px;
    padding-top: 100px;
}

.hero-content {
    flex: 1;
    max-width: 600px;
}

.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 450px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    border: 1px solid var(--border-medium);
    border-radius: 50px;
    font-size: 0.8rem;
    letter-spacing: 0.08em;
    color: var(--accent-dim);
    margin-bottom: 28px;
}

.badge-dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--moon-glow);
    box-shadow: 0 0 8px var(--moon-glow);
    animation: logo-pulse 2.5s ease-in-out infinite;
}

.hero-title {
    font-family: var(--font-heading);
    font-size: 3.8rem;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.01em;
    margin-bottom: 24px;
    color: var(--text-primary);
}

.hero-title-accent {
    display: block;
    color: var(--accent-dim);
    font-weight: 600;
}

.hero-subtitle {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 480px;
}

.hero-actions {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

.hero-orbit {
    position: relative;
    width: 340px;
    height: 340px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.orbit-ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.06);
    animation: orbit-spin 20s linear infinite;
}

.orbit-ring:nth-child(1) {
    width: 100%;
    height: 100%;
    animation-duration: 20s;
}

.orbit-ring:nth-child(2) {
    width: 70%;
    height: 70%;
    animation-duration: 14s;
    animation-direction: reverse;
}

.orbit-ring:nth-child(3) {
    width: 40%;
    height: 40%;
    animation-duration: 9s;
}

@keyframes orbit-spin {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

.orbit-particle {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--moon-glow);
    box-shadow: 0 0 14px var(--moon-glow);
}

.particle-1 {
    top: 0;
    left: 50%;
    animation: particle-float-1 6s ease-in-out infinite;
}

.particle-2 {
    bottom: 15%;
    right: 0;
    animation: particle-float-2 7s ease-in-out infinite;
}

.particle-3 {
    bottom: 0;
    left: 25%;
    animation: particle-float-3 5.5s ease-in-out infinite;
}

@keyframes particle-float-1 {
    0%, 100% { transform: translate(0, 0); opacity: 0.8; }
    50% { transform: translate(40px, 30px); opacity: 0.3; }
}

@keyframes particle-float-2 {
    0%, 100% { transform: translate(0, 0); opacity: 0.6; }
    50% { transform: translate(-30px, -40px); opacity: 0.2; }
}

@keyframes particle-float-3 {
    0%, 100% { transform: translate(0, 0); opacity: 0.7; }
    50% { transform: translate(-20px, -25px); opacity: 0.25; }
}
